/* ============================================================
   NINJATOOLZ — PREMIUM HOMEPAGE STYLESHEET
   Clean · Elegant · Light · High-End
   ============================================================ */

/* --- Fonts are self-hosted globally via assets/css/local-fonts.css --- */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand Colors */
  --p:        #6D28D9;   /* Primary Violet */
  --p-mid:    #7C3AED;
  --p-light:  #8B5CF6;
  --p-xlight: #A78BFA;
  --p-50:     #F5F3FF;
  --p-100:    #EDE9FE;
  --p-200:    #DDD6FE;

  /* Accent */
  --a:        #0891B2;
  --a-light:  #06B6D4;
  --a-50:     #ECFEFF;

  /* Semantic */
  --green:    #059669;
  --orange:   #D97706;
  --red:      #DC2626;
  --pink:     #DB2777;

  /* Neutrals */
  --n-50:  #F9FAFB;
  --n-100: #F3F4F6;
  --n-200: #E5E7EB;
  --n-300: #D1D5DB;
  --n-400: #9CA3AF;
  --n-500: #6B7280;
  --n-600: #4B5563;
  --n-700: #374151;
  --n-800: #1F2937;
  --n-900: #111827;

  /* Spacing */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 48px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg:  0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.03);
  --shadow-xl:  0 20px 25px -5px rgba(0,0,0,0.06), 0 10px 10px -5px rgba(0,0,0,0.03);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.08);
  --shadow-purple: 0 16px 40px -8px rgba(109,40,217,0.25);
  --shadow-purple-sm: 0 8px 24px -4px rgba(109,40,217,0.18);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t: 0.3s var(--ease);
  --t-slow: 0.6s var(--ease);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

.nt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nt-section {
  padding: 88px 0;
}
@media (max-width: 768px) {
  .nt-section { padding: 60px 0; }
}

/* Section Labels */
.nt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--p-mid);
  background: var(--p-50);
  border: 1px solid var(--p-200);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.nt-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--n-900);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  .nt-section-title { font-size: 30px; letter-spacing: -0.5px; }
}

.nt-section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--n-500);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 56px;
}

.nt-center {
  text-align: center;
}
.nt-center .nt-eyebrow,
.nt-center .nt-section-title {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.nt-center .nt-eyebrow {
  display: inline-flex;
}

/* ============================================================
   GRADIENT TEXT UTILITY
   ============================================================ */
.nt-grad {
  background: linear-gradient(135deg, var(--p) 0%, var(--a) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.nt-grad-warm {
  background: linear-gradient(135deg, #6D28D9 0%, #DB2777 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}


/* ============================================================
   1. HERO — 3-PANEL SLIDER
   ============================================================ */
.nt-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #FAFAFF;
}

/* Slide track */
.nt-slide-track {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

/* Each individual slide */
.nt-slide {
  position: absolute;
  inset: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.75s var(--ease);
  z-index: 1;
}
.nt-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  position: relative;
}

/* Per-slide background */
.nt-slide-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.nt-slide-1 .nt-slide-bg {
  background: radial-gradient(ellipse 70% 90% at 80% 50%, rgba(139,92,246,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 60% 60% at 10% 20%, rgba(167,139,250,0.06) 0%, transparent 70%),
              #F9FAFB;
}
.nt-slide-2 .nt-slide-bg {
  background: radial-gradient(ellipse 70% 90% at 80% 50%, rgba(239,68,68,0.06) 0%, transparent 70%),
              radial-gradient(ellipse 60% 60% at 10% 20%, rgba(251,207,232,0.06) 0%, transparent 70%),
              #FDFCFC;
}
.nt-slide-3 .nt-slide-bg {
  background: radial-gradient(ellipse 70% 90% at 80% 50%, rgba(6,182,212,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 60% 60% at 10% 20%, rgba(56,189,248,0.05) 0%, transparent 70%),
              #FAFCFD;
}

/* Grid texture */
.nt-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109,40,217,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,40,217,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Inner layout */
.nt-slide-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 160px 0 100px;
}
@media (max-width: 1023px) {
  .nt-slide-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
    padding: 140px 0 60px;
  }
}

/* Slide content (left) */
.nt-slide-content { max-width: 580px; }
@media (max-width: 1023px) { .nt-slide-content { margin: 0 auto; } }

/* Hero badge */
.nt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--p-mid);
  background: white;
  border: 1px solid var(--p-200);
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.nt-slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
.nt-slide-1 .nt-slide-dot { background: var(--p); }
.nt-slide-2 .nt-slide-dot { background: var(--red); }
.nt-slide-3 .nt-slide-dot { background: var(--a); }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Headline */
.nt-slide h1,
.nt-slide .nt-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2.5px;
  color: var(--n-900);
  margin: 0 0 20px;
}
@media (max-width: 1200px) { .nt-slide h1, .nt-slide .nt-hero-title { font-size: 52px; letter-spacing: -2px; } }
@media (max-width: 768px)  { .nt-slide h1, .nt-slide .nt-hero-title { font-size: 38px; letter-spacing: -1px; } }

/* Per-slide gradient accents */
.nt-grad-slide1 {
  background: linear-gradient(135deg, #6D28D9 0%, #8B5CF6 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; display: inline-block;
}
.nt-grad-slide2 {
  background: linear-gradient(135deg, #DC2626 0%, #F97316 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; display: inline-block;
}
.nt-grad-slide3 {
  background: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; display: inline-block;
}

.nt-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: var(--n-500);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 480px;
}
@media (max-width: 1023px) {
  .nt-hero-sub { margin-left: auto; margin-right: auto; }
}

/* CTA */
.nt-hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 1023px) { .nt-hero-cta { justify-content: center; } }

/* Slide primary button */
.nt-btn-slide {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--r-md);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--t);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-purple);
}
.nt-btn-slide::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.6s ease;
}
.nt-btn-slide:hover::after { left: 150%; }
.nt-btn-slide:hover { transform: translateY(-2px); }

.nt-slide-1 .nt-btn-slide { background: linear-gradient(135deg, #6D28D9, #7C3AED); color: white; box-shadow: 0 12px 30px -6px rgba(109,40,217,0.35); }
.nt-slide-1 .nt-btn-slide:hover { box-shadow: 0 16px 40px -6px rgba(109,40,217,0.45); }
.nt-slide-2 .nt-btn-slide { background: linear-gradient(135deg, #DC2626, #EF4444); color: white; box-shadow: 0 12px 30px -6px rgba(220,38,38,0.3); }
.nt-slide-2 .nt-btn-slide:hover { box-shadow: 0 16px 40px -6px rgba(220,38,38,0.4); }
.nt-slide-3 .nt-btn-slide { background: linear-gradient(135deg, #0891B2, #06B6D4); color: white; box-shadow: 0 12px 30px -6px rgba(8,145,178,0.3); }
.nt-slide-3 .nt-btn-slide:hover { box-shadow: 0 16px 40px -6px rgba(8,145,178,0.4); }

.nt-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: transparent;
  color: var(--n-700);
  border-radius: var(--r-md);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--t);
  border: 1.5px solid var(--n-200);
}
.nt-btn-ghost:hover { border-color: var(--p-xlight); color: var(--p); background: var(--p-50); }

/* ============================================================
   HERO NAVIGATION (dots + arrows)
   ============================================================ */
.nt-slide-controls {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nt-slide-dot-btn {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(109,40,217,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s var(--ease);
}
.nt-slide-dot-btn.is-active {
  width: 28px;
  background: var(--p);
}

.nt-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  background: white;
  border: 1px solid var(--n-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
  box-shadow: var(--shadow-md);
  color: var(--n-700);
}
.nt-slide-arrow svg { width: 20px; height: 20px; }
.nt-slide-arrow:hover { background: var(--p); color: white; border-color: var(--p); box-shadow: var(--shadow-purple-sm); }
.nt-slide-prev { left: 24px; }
.nt-slide-next { right: 24px; }
@media (max-width: 768px) {
  .nt-slide-arrow { display: none; }
}

/* ============================================================
   ANIMATION 1: IMAGE STUDIO PREVIEW (Panel 1)
   ============================================================ */
.nt-anim-studio {
  position: relative;
  width: 380px;
  height: 360px;
  margin: 0 auto;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .nt-anim-studio {
    width: 300px;
    height: 300px;
  }
}

.nt-studio-back {
  position: absolute;
  inset: auto 24px 10px 24px;
  height: 236px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(245,243,255,0.85) 100%);
  border: 1px solid rgba(109,40,217,0.08);
  box-shadow: 0 24px 50px rgba(109,40,217,0.08);
}

.nt-studio-back-1 {
  transform: rotate(-6deg) translateY(14px);
  opacity: 0.52;
}

.nt-studio-back-2 {
  transform: rotate(-11deg) translateY(28px);
  opacity: 0.28;
}

.nt-studio-card {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(226,232,240,0.9);
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(109,40,217,0.12);
  overflow: hidden;
  animation: studio-float 5.5s ease-in-out infinite;
}

@keyframes studio-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.nt-studio-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(226,232,240,0.78);
  background: linear-gradient(180deg, rgba(248,250,252,0.95) 0%, rgba(255,255,255,0.92) 100%);
}

.nt-studio-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.nt-studio-label {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: 0.01em;
}

.nt-studio-stage {
  position: relative;
  padding: 20px;
  height: 206px;
}

.nt-studio-canvas {
  position: relative;
  width: calc(100% - 70px);
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,0.88) 0 11%, transparent 12%),
    linear-gradient(180deg, #C4B5FD 0%, #DDD6FE 28%, #F5F3FF 50%, #BAE6FD 72%, #7DD3FC 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
}

.nt-studio-canvas::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.18) 42%, transparent 68%);
  transform: translateX(-120%);
  animation: studio-shimmer 3.8s ease-in-out infinite;
}

@keyframes studio-shimmer {
  0%, 15% { transform: translateX(-120%); }
  60%, 100% { transform: translateX(135%); }
}

.nt-studio-sun {
  position: absolute;
  top: 26px;
  right: 40px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: radial-gradient(circle, #fff8d6 0%, #FFE9A8 55%, rgba(255,233,168,0.1) 76%, transparent 78%);
  filter: blur(0.2px);
}

.nt-studio-cloud {
  position: absolute;
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
}

.nt-studio-cloud-1 {
  width: 86px;
  top: 34px;
  left: 22px;
}

.nt-studio-cloud-2 {
  width: 56px;
  top: 58px;
  left: 70px;
}

.nt-studio-hill {
  position: absolute;
  left: -10%;
  width: 120%;
  border-radius: 50% 50% 0 0;
}

.nt-studio-hill-back {
  bottom: 70px;
  height: 92px;
  background: linear-gradient(180deg, rgba(124,58,237,0.34) 0%, rgba(109,40,217,0.55) 100%);
}

.nt-studio-hill-front {
  bottom: 42px;
  height: 88px;
  background: linear-gradient(180deg, rgba(79,70,229,0.84) 0%, rgba(109,40,217,0.96) 100%);
  clip-path: polygon(0 38%, 15% 28%, 30% 42%, 49% 22%, 68% 45%, 84% 34%, 100% 48%, 100% 100%, 0 100%);
}

.nt-studio-water {
  position: absolute;
  inset: auto 0 0 0;
  height: 74px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 18%),
    linear-gradient(180deg, #67E8F9 0%, #38BDF8 42%, #0EA5E9 100%);
}

.nt-studio-water::before,
.nt-studio-water::after {
  content: '';
  position: absolute;
  left: 7%;
  right: 7%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.7) 14%, rgba(255,255,255,0.1) 48%, rgba(255,255,255,0.7) 82%, transparent 100%);
  animation: studio-wave 4s linear infinite;
}

.nt-studio-water::before { top: 18px; }
.nt-studio-water::after  { top: 38px; animation-delay: -2s; }

@keyframes studio-wave {
  0% { transform: translateX(-8px); opacity: 0.55; }
  50% { transform: translateX(8px); opacity: 0.85; }
  100% { transform: translateX(-8px); opacity: 0.55; }
}

.nt-studio-crop-box {
  position: absolute;
  top: 42px;
  left: 44px;
  width: 118px;
  height: 88px;
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,0.92);
  box-shadow: 0 18px 34px rgba(15,23,42,0.12);
  background: rgba(255,255,255,0.08);
  animation: studio-crop 4s ease-in-out infinite;
}

.nt-studio-crop-box span {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
}

.nt-studio-crop-box span:nth-child(1) { top: -2px; left: -2px; border-right: none; border-bottom: none; border-top-left-radius: 8px; }
.nt-studio-crop-box span:nth-child(2) { top: -2px; right: -2px; border-left: none; border-bottom: none; border-top-right-radius: 8px; }
.nt-studio-crop-box span:nth-child(3) { bottom: -2px; left: -2px; border-right: none; border-top: none; border-bottom-left-radius: 8px; }
.nt-studio-crop-box span:nth-child(4) { bottom: -2px; right: -2px; border-left: none; border-top: none; border-bottom-right-radius: 8px; }

@keyframes studio-crop {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35% { transform: translate(22px, 10px) scale(1.05); }
  70% { transform: translate(8px, 18px) scale(0.96); }
}

.nt-studio-chip {
  position: absolute;
  top: 26px;
  right: 84px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: #6D28D9;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(109,40,217,0.14);
  animation: studio-chip 4.2s ease-in-out infinite;
}

.nt-studio-chip svg {
  width: 14px;
  height: 14px;
}

@keyframes studio-chip {
  0%, 100% { transform: translateY(0); opacity: 0.92; }
  50% { transform: translateY(-6px); opacity: 1; }
}

.nt-studio-side-tools {
  position: absolute;
  top: 16px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nt-studio-side-tool {
  min-width: 54px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(248,250,252,0.96);
  border: 1px solid rgba(226,232,240,0.9);
  color: #64748B;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15,23,42,0.05);
}

.nt-studio-side-tool.is-active {
  background: linear-gradient(135deg, #6D28D9 0%, #8B5CF6 100%);
  border-color: transparent;
  color: #fff;
}

.nt-studio-progress {
  padding: 0 20px;
}

.nt-studio-progress-bar {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8B5CF6 0%, #A78BFA 54%, #67E8F9 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
  transform-origin: left center;
  animation: studio-progress 3.4s ease-in-out infinite;
}

@keyframes studio-progress {
  0%, 100% { width: 54%; }
  50% { width: 88%; }
}

.nt-studio-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 18px;
}

.nt-studio-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nt-studio-stat strong {
  font-size: 24px;
  line-height: 1;
  color: #0F172A;
}

.nt-studio-stat span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94A3B8;
}

.nt-studio-stat-accent strong {
  color: #6D28D9;
}

.nt-studio-swap {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(109,40,217,0.08);
  color: #6D28D9;
}

.nt-studio-swap svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1023px) {
  .nt-studio-back {
    inset: auto 16px 12px 16px;
    height: 198px;
  }

  .nt-studio-stage {
    height: 168px;
    padding: 16px;
  }

  .nt-studio-canvas {
    width: calc(100% - 62px);
  }

  .nt-studio-crop-box {
    top: 36px;
    left: 34px;
    width: 94px;
    height: 70px;
  }

  .nt-studio-chip {
    right: 72px;
    top: 20px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .nt-studio-side-tool {
    min-width: 48px;
    padding: 7px 8px;
    font-size: 10px;
  }

  .nt-studio-stat strong {
    font-size: 20px;
  }
}

/* ============================================================
   ANIMATION 2: PDF CARD DECK SHUFFLE (Panel 2)
   ============================================================ */
.nt-anim-deck {
  position: relative;
  width: 380px; height: 360px;
  margin: 0 auto;
  flex-shrink: 0;
}
@media (max-width: 1023px) { .nt-anim-deck { width: 300px; height: 300px; } }

.nt-deck-card {
  position: absolute;
  width: 280px;
  background: white;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--n-200);
  box-shadow: var(--shadow-lg);
  transition: transform 0.6s var(--ease-spring), box-shadow 0.4s var(--ease);
}
.nt-deck-c3 {
  bottom: 0; left: 40px;
  transform: rotate(-6deg) translateY(10px);
  z-index: 1;
  opacity: 0.55;
  background: #FEF2F2;
}
.nt-deck-c2 {
  bottom: 12px; left: 20px;
  transform: rotate(-3deg) translateY(5px);
  z-index: 2;
  opacity: 0.75;
  background: #FFF5F5;
}
.nt-deck-c1 {
  bottom: 24px; left: 0;
  transform: rotate(0deg);
  z-index: 3;
  animation: deck-pump 4s ease-in-out infinite;
}

@keyframes deck-pump {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.nt-deck-icon {
  width: 48px; height: 48px;
  background: #FEE2E2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 16px;
}
.nt-deck-icon svg { width: 22px; height: 22px; }
.nt-deck-icon-active { background: linear-gradient(135deg, #DC2626, #EF4444); color: white; }

.nt-deck-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ECFDF5;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.nt-deck-lines { display: flex; flex-direction: column; gap: 8px; }
.nt-deck-lines span {
  display: block;
  height: 10px;
  width: 100%;
  background: var(--n-100);
  border-radius: 5px;
}

.nt-deck-progress {
  margin-top: 16px;
  height: 6px;
  background: var(--n-100);
  border-radius: 3px;
  overflow: hidden;
}
.nt-deck-bar {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #DC2626, #F97316);
  animation: deck-progress 3s ease-in-out infinite;
}
@keyframes deck-progress {
  0% { width: 10%; }
  60% { width: 100%; }
  100% { width: 100%; }
}

.nt-deck-merge-arrow {
  position: absolute;
  top: 20px; right: -10px;
  width: 48px; height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--n-100);
  animation: merge-pulse 2s ease-in-out infinite;
}
.nt-deck-merge-arrow svg { width: 22px; height: 22px; }
@keyframes merge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

/* ============================================================
   ANIMATION 3: TYPEWRITER TEXT EDITOR (Panel 3)
   ============================================================ */
.nt-anim-editor {
  width: 380px;
  min-height: 360px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.05);
  margin: 0 auto;
  flex-shrink: 0;
}
@media (max-width: 1023px) { .nt-anim-editor { width: 300px; min-height: 300px; } }

.nt-editor-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 16px;
  background: var(--n-50);
  border-bottom: 1px solid var(--n-100);
}
.nt-editor-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.nt-editor-body {
  padding: 20px;
  min-height: 190px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--n-700);
  line-height: 1.65;
  position: relative;
}
.nt-editor-text { display: inline; }
.nt-cursor {
  display: inline;
  color: var(--a);
  font-weight: 300;
  animation: cursor-blink 0.85s step-end infinite;
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.nt-editor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--n-100);
}
.nt-editor-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px;
  border-right: 1px solid var(--n-100);
  text-align: center;
  transition: background 0.3s;
}
.nt-editor-stat-item:last-child { border-right: none; }
.nt-editor-stat-val {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--a);
  line-height: 1;
  margin-bottom: 4px;
  transition: transform 0.2s var(--ease-spring);
}
.nt-editor-stat-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--n-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}



/* ============================================================
   STATS STRIP
   ============================================================ */




  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.nt-stats {
  padding: 0;
  border-top: 1px solid var(--n-100);
  border-bottom: 1px solid var(--n-100);
  background: white;
}
.nt-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .nt-stats-inner { grid-template-columns: repeat(2, 1fr); }
}
.nt-stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--n-100);
  transition: background var(--t);
}
.nt-stat:last-child { border-right: none; }
@media (max-width: 768px) {
  .nt-stat:nth-child(2) { border-right: none; }
  .nt-stat:nth-child(3),
  .nt-stat:nth-child(4) { border-top: 1px solid var(--n-100); }
}
.nt-stat:hover { background: var(--n-50); }

.nt-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.nt-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--n-500);
  font-weight: 500;
}

/* ============================================================
   2. FEATURED TOOLS SECTION
   ============================================================ */
.nt-featured {
  background: var(--n-50);
}

.nt-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 700px) {
  .nt-tools-grid { grid-template-columns: 1fr; }
}

.nt-tool-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding: 28px;
  background: white;
  border: 1px solid var(--n-100);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
  min-height: 172px;
  height: 100%;
}
.nt-tool-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--p-50) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
}
.nt-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--p-200);
}
.nt-tool-card:hover::before { opacity: 1; }

.nt-tool-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nt-tool-icon svg,
.nt-tool-icon i { width: 24px; height: 24px; }

/* Icon color variants */
.nt-tool-card:nth-child(1) .nt-tool-icon { background: #F5F3FF; color: var(--p); }
.nt-tool-card:nth-child(2) .nt-tool-icon { background: #FEF3C7; color: #D97706; }
.nt-tool-card:nth-child(3) .nt-tool-icon { background: #ECFDF5; color: var(--green); }
.nt-tool-card:nth-child(4) .nt-tool-icon { background: #FFF1F2; color: var(--red); }
.nt-tool-card:nth-child(5) .nt-tool-icon { background: #ECFEFF; color: var(--a); }
.nt-tool-card:nth-child(6) .nt-tool-icon { background: #FDF4FF; color: var(--pink); }

.nt-tool-info {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 10px;
}
.nt-tool-name {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--n-900);
  margin: 0;
  line-height: 1.35;
}
.nt-tool-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--n-500);
  margin: 0;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nt-tool-arrow {
  position: relative;
  width: 32px; height: 32px;
  background: var(--n-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--n-500);
  opacity: 1;
  transform: none;
  transition: background var(--t), color var(--t), transform var(--t);
  z-index: 1;
}
.nt-tool-arrow svg { width: 14px; height: 14px; }
.nt-tool-card:hover .nt-tool-arrow {
  transform: translate(2px, -2px);
  background: var(--p);
  color: white;
}

/* ============================================================
   3. CATEGORIES SECTION
   ============================================================ */
.nt-categories {
  background: white;
}

.nt-cat-grid {
  --nt-cat-columns: 2;
  display: grid;
  grid-template-columns: repeat(var(--nt-cat-columns), minmax(0, 1fr));
  gap: 22px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .nt-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .nt-cat-grid { grid-template-columns: 1fr; }
}

.nt-cat-block {
  border-radius: 24px;
  padding: 22px;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 12px 30px rgba(15,23,42,0.06);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.nt-cat-block::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  opacity: 0.95;
}
.nt-cat-block::after {
  content: '';
  position: absolute;
  top: -42px; right: -28px;
  width: 126px; height: 126px;
  border-radius: 50%;
  opacity: 0.09;
}

.nt-cat-image  { background:
  radial-gradient(circle at top right, rgba(196,181,253,0.34) 0, rgba(196,181,253,0) 38%),
  linear-gradient(180deg, #FFFFFF 0%, #FAF7FF 100%); }
.nt-cat-image::before { background: linear-gradient(90deg, #7C3AED 0%, #A855F7 100%); }
.nt-cat-image::after { background: var(--p); }
.nt-cat-image:hover { border-color: rgba(167,139,250,0.55); box-shadow: 0 18px 38px rgba(109,40,217,0.12); }

.nt-cat-docs   { background:
  radial-gradient(circle at top right, rgba(253,230,138,0.32) 0, rgba(253,230,138,0) 38%),
  linear-gradient(180deg, #FFFFFF 0%, #FFF9F1 100%); }
.nt-cat-docs::before { background: linear-gradient(90deg, #D97706 0%, #F59E0B 100%); }
.nt-cat-docs::after { background: var(--orange); }
.nt-cat-docs:hover { border-color: rgba(251,191,36,0.52); box-shadow: 0 18px 38px rgba(217,119,6,0.12); }

.nt-cat-text   { background:
  radial-gradient(circle at top right, rgba(125,211,252,0.3) 0, rgba(125,211,252,0) 38%),
  linear-gradient(180deg, #FFFFFF 0%, #F4FDFF 100%); }
.nt-cat-text::before { background: linear-gradient(90deg, #0891B2 0%, #06B6D4 100%); }
.nt-cat-text::after { background: var(--a-light); }
.nt-cat-text:hover { border-color: rgba(103,232,249,0.55); box-shadow: 0 18px 38px rgba(6,182,212,0.11); }

.nt-cat-neutral { background:
  radial-gradient(circle at top right, rgba(226,232,240,0.38) 0, rgba(226,232,240,0) 38%),
  linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%); }
.nt-cat-neutral::before { background: linear-gradient(90deg, #64748B 0%, #94A3B8 100%); }
.nt-cat-neutral::after { background: var(--n-400); }
.nt-cat-neutral:hover { border-color: rgba(203,213,225,0.82); box-shadow: 0 16px 34px rgba(15,23,42,0.08); }

.nt-cat-block:hover {
  transform: translateY(-4px);
}

.nt-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.nt-cat-icon {
  width: 50px; height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55), 0 8px 18px rgba(15,23,42,0.06);
}
.nt-cat-icon svg { width: 24px; height: 24px; }

.nt-cat-image .nt-cat-icon { background: rgba(109,40,217,0.12); color: var(--p); }
.nt-cat-docs .nt-cat-icon { background: rgba(217,119,6,0.12); color: var(--orange); }
.nt-cat-text  .nt-cat-icon { background: rgba(6,182,212,0.1); color: var(--a); }
.nt-cat-neutral .nt-cat-icon { background: rgba(148,163,184,0.14); color: var(--n-700); }

.nt-cat-name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--n-900);
  margin: 0 0 4px;
}
.nt-cat-count {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--n-600);
  font-weight: 700;
  letter-spacing: 0.01em;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(148,163,184,0.16);
}

.nt-cat-summary {
  margin: 0 0 16px;
  color: var(--n-700);
  font-size: 13px;
  line-height: 1.6;
}

.nt-cat-tools {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
  display: grid;
  gap: 8px;
}
.nt-cat-tools li {
  border-bottom: none;
}
.nt-cat-tools a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(148,163,184,0.12);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--n-700);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--t), transform var(--t), background var(--t), border-color var(--t);
}
.nt-cat-tools a:hover {
  color: var(--p);
  background: rgba(255,255,255,0.96);
  border-color: rgba(109,40,217,0.14);
}
.nt-cat-tools a svg {
  width: 14px; height: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--t), transform var(--t);
}
.nt-cat-tools a:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.nt-cat-viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--p);
  text-decoration: none;
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(148,163,184,0.16);
  transition: gap var(--t);
}
.nt-cat-viewall:hover { gap: 12px; }
.nt-cat-viewall svg { width: 16px; height: 16px; }

.nt-empty-card {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 240px;
  padding: 32px 24px;
  border: 1px dashed rgba(79, 70, 229, 0.18);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.96) 100%);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

.nt-empty-card-wide {
  min-height: 280px;
}

.nt-empty-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 18px;
  background: rgba(109, 40, 217, 0.1);
  color: var(--p);
}

.nt-empty-card-icon svg {
  width: 28px;
  height: 28px;
}

.nt-empty-card h3 {
  margin: 0 0 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--n-900);
}

.nt-empty-card p {
  max-width: 560px;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--n-600);
}

/* ============================================================
   4. HOW IT WORKS
   ============================================================ */
.nt-how {
  background: var(--n-50);
}

.nt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .nt-steps { grid-template-columns: 1fr; gap: 24px; }
}

/* Dashed connector line */
.nt-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--p-200) 0, var(--p-200) 8px, transparent 8px, transparent 16px);
}
@media (max-width: 768px) {
  .nt-steps::before { display: none; }
}

.nt-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nt-step-num-wrap {
  position: relative;
  width: 72px; height: 72px;
  margin-bottom: 20px;
}
.nt-step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.nt-step:nth-child(1) .nt-step-circle { background: var(--p-50); color: var(--p); }
.nt-step:nth-child(2) .nt-step-circle { background: #EFF6FF; color: #2563EB; }
.nt-step:nth-child(3) .nt-step-circle { background: #ECFDF5; color: var(--green); }

.nt-step-icon-badge {
  position: absolute;
  bottom: -4px; right: -4px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--n-100);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.nt-step-icon-badge svg { width: 14px; height: 14px; color: var(--n-500); }

.nt-step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--n-900);
  margin: 0 0 8px;
}
.nt-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--n-500);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* ============================================================
   5. WHY NINJATOOLZ (Features Grid)
   ============================================================ */
.nt-why {
  background: white;
}

.nt-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1023px) {
  .nt-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nt-features-grid { grid-template-columns: 1fr; }
}

.nt-feature {
  background: white;
  padding: 30px;
  border: 1px solid var(--n-100);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  min-height: 100%;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t), background var(--t);
}
.nt-feature:hover {
  transform: translateY(-4px);
  background: white;
  border-color: var(--p-200);
  box-shadow: var(--shadow-lg);
}

.nt-feature-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.nt-feature-icon svg { width: 22px; height: 22px; }

.nt-feature:nth-child(1) .nt-feature-icon { background: var(--p-50); color: var(--p); }
.nt-feature:nth-child(2) .nt-feature-icon { background: #ECFDF5; color: var(--green); }
.nt-feature:nth-child(3) .nt-feature-icon { background: #EFF6FF; color: #2563EB; }
.nt-feature:nth-child(4) .nt-feature-icon { background: #ECFEFF; color: var(--a); }
.nt-feature:nth-child(5) .nt-feature-icon { background: #FFF7ED; color: var(--orange); }
.nt-feature:nth-child(6) .nt-feature-icon { background: #FDF4FF; color: var(--pink); }

.nt-feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--n-900);
  margin: 0 0 8px;
}
.nt-feature-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--n-500);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   6. TRUST BAR
   ============================================================ */
.nt-trust-bar {
  background: linear-gradient(135deg, var(--p-50) 0%, #EFF6FF 100%);
  padding: 22px 0;
  border-top: 1px solid var(--p-200);
  border-bottom: 1px solid var(--p-200);
}
.nt-trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.nt-trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--n-600);
}
.nt-trust-pill svg { width: 16px; height: 16px; color: var(--green); }

/* ============================================================
   7. BLOG SECTION
   ============================================================ */
.nt-blog { background: var(--n-50); }

.nt-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) {
  .nt-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nt-blog-grid { grid-template-columns: 1fr; }
}

.nt-blog-card {
  background: white;
  border-radius: var(--r-xl);
  border: 1px solid var(--n-100);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--t);
}
.nt-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--p-200);
}
.nt-blog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--p-50), #EFF6FF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-xlight);
}
.nt-blog-thumb svg { width: 36px; height: 36px; opacity: 0.4; }
.nt-blog-body { padding: 24px; }
.nt-blog-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--n-900);
  margin: 0 0 8px;
  line-height: 1.4;
}
.nt-blog-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--n-500);
  line-height: 1.55;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;`r`n  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nt-blog-more {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--p);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: gap var(--t);
}
.nt-blog-more:hover { gap: 8px; }
.nt-blog-more svg { width: 14px; height: 14px; }

/* ============================================================
   8. CTA BANNER
   ============================================================ */
.nt-cta-banner {
  background:
    radial-gradient(circle at top center, rgba(251, 191, 36, 0.22) 0%, rgba(251, 191, 36, 0) 38%),
    linear-gradient(180deg, #FFF8EB 0%, #FFF1D8 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(251, 191, 36, 0.24);
  border-bottom: 1px solid rgba(245, 158, 11, 0.16);
}
.nt-cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.16) 0%, transparent 70%);
  border-radius: 50%;
}
.nt-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.nt-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.nt-cta-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #1F2937;
  margin: 0 0 16px;
  letter-spacing: -1.5px;
}
@media (max-width: 768px) {
  .nt-cta-inner h2 { font-size: 28px; }
}
.nt-cta-inner p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #6B7280;
  margin: 0 0 36px;
  line-height: 1.6;
}
.nt-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: rgba(255,255,255,0.92);
  color: #B45309;
  border-radius: var(--r-md);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--t);
  border: 1px solid rgba(251, 191, 36, 0.28);
  box-shadow: 0 14px 34px -16px rgba(217, 119, 6, 0.24);
}
.nt-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px -18px rgba(217, 119, 6, 0.28);
}
.nt-btn-white svg { color: #D97706; }

/* ============================================================
   FOOTER
   ============================================================ */
.nt-footer {
  background: var(--n-50) !important;
  border-top: 1px solid var(--n-200) !important;
  color: var(--n-600);
}
.nt-footer h2 { color: var(--n-900) !important; }
.nt-footer a  { color: var(--n-600) !important; }
.nt-footer a:hover { color: var(--p) !important; }
.nt-footer .border-t { border-color: var(--n-200) !important; }
.nt-footer p { color: var(--n-500); }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-on-scroll .nt-tool-card:nth-child(1),
.reveal-on-scroll .nt-cat-block:nth-child(1),
.reveal-on-scroll .nt-step:nth-child(1),
.reveal-on-scroll .nt-feature:nth-child(1) { transition-delay: 0s; }

.reveal-on-scroll .nt-tool-card:nth-child(2),
.reveal-on-scroll .nt-cat-block:nth-child(2),
.reveal-on-scroll .nt-step:nth-child(2),
.reveal-on-scroll .nt-feature:nth-child(2) { transition-delay: 0.08s; }

.reveal-on-scroll .nt-tool-card:nth-child(3),
.reveal-on-scroll .nt-cat-block:nth-child(3),
.reveal-on-scroll .nt-step:nth-child(3),
.reveal-on-scroll .nt-feature:nth-child(3) { transition-delay: 0.16s; }

.reveal-on-scroll .nt-tool-card:nth-child(4),
.reveal-on-scroll .nt-feature:nth-child(4) { transition-delay: 0.24s; }

.reveal-on-scroll .nt-tool-card:nth-child(5),
.reveal-on-scroll .nt-feature:nth-child(5) { transition-delay: 0.32s; }

.reveal-on-scroll .nt-tool-card:nth-child(6),
.reveal-on-scroll .nt-feature:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-on-scroll { opacity: 1; transform: none; }
}
