/* ==========================================================================
   Broc Redesign v4 — Consumer-grade visual identity
   Bold typography · Rich colour · Engaging visual hierarchy
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Design Tokens ── */
:root {
  /* Primary: Blue */
  --color-primary: #2563eb;
  --color-primary-light: #3b82f6;
  --color-primary-dark: #1e40af;
  --color-primary-vivid: #60a5fa;

  /* Complementary: Orange/Gold */
  --accent: #f97316;
  --accent-light: #fb923c;
  --accent-gold: #fbbf24;
  --accent-gold-light: #fcd34d;

  /* Purpose */
  --color-success: #10b981;
  --color-success-light: #34d399;

  /* Backgrounds — deep navy for drama */
  --bg-deep: #0f1419;
  --bg-elevated: #111827;
  --bg-card: rgba(255, 255, 255, 0.04);

  /* Text */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* UI */
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-hover: rgba(37, 99, 235, 0.35);

  /* Gradients */
  --gradient-warm: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-blue: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
  --gradient-hero: linear-gradient(135deg, #10b981 0%, #059669 50%, #60a5fa 100%);

  /* Shadows */
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow-orange: 0 2px 8px rgba(16, 185, 129, 0.2);
  --shadow-glow-blue: 0 2px 8px rgba(37, 99, 235, 0.12);
}

/* ── Light Theme ── */
[data-theme="light"] {
  --bg-deep: #f5f7fb;
  --bg-elevated: rgba(255, 255, 255, 0.85);
  --bg-card: rgba(255, 255, 255, 0.7);
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --card-border: rgba(37, 99, 235, 0.12);
  --card-border-hover: rgba(37, 99, 235, 0.35);
  --shadow-medium: 0 8px 30px -6px rgba(37, 99, 235, 0.1), 0 2px 8px rgba(0, 0, 0, 0.03);
  --shadow-strong: 0 20px 48px -10px rgba(37, 99, 235, 0.15), 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-glow-orange: 0 8px 28px -4px rgba(249, 115, 22, 0.3);
  --shadow-glow-blue: 0 8px 28px -4px rgba(37, 99, 235, 0.25);
}


/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
}

[data-theme="light"] body {
  background: #f8fafc;
}

/* ── Gradient Text Utilities ── */
.gradient-text-warm {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 40%, #fbbf24 80%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-blue {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-emerald {
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-indigo {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hide-mobile { }
@media (max-width: 640px) { .hide-mobile { display: none; } }




/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */

.nt-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(8, 13, 26, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

[data-theme="light"] .nt-header {
  background: rgba(250, 251, 252, 0.75);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.nt-header.sticky {
  background: rgba(15, 20, 25, 0.92);
  border-bottom: 1px solid var(--border-glow);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .nt-header.sticky {
  background: rgba(248, 250, 252, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}


.nt-header-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nt-header-logo-link:hover {
  opacity: 0.9;
}

.nt-header-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nt-header-logo.light-logo {
  display: none;
}

.nt-header-logo.dark-logo {
  display: block;
}

[data-theme="light"] .nt-header-logo.light-logo {
  display: block;
}

[data-theme="light"] .nt-header-logo.dark-logo {
  display: none;
}

/* Broc Glass Capsule Navigation */
.nt-floating-nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  padding: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.06);
}

.nt-nav-pill-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nt-nav-pill-item .nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nt-nav-pill-item .nav-dot.dot-gray { background: #64748b; }
.nt-nav-pill-item .nav-dot.dot-clara, .nt-nav-pill-item .nav-dot.dot-green { background: #10b981; }
.nt-nav-pill-item .nav-dot.dot-clive, .nt-nav-pill-item .nav-dot.dot-orange { background: #f97316; }
.nt-nav-pill-item .nav-dot.dot-grow, .nt-nav-pill-item .nav-dot.dot-blue { background: #2563eb; }
.nt-nav-pill-item .nav-dot.dot-gold { background: #d97706; }
.nt-nav-pill-item .nav-dot.dot-purple { background: #8b5cf6; }

.nt-nav-pill-item:hover {
  color: var(--text-primary);
  background: rgba(15, 23, 42, 0.04);
}

.nt-nav-pill-item:hover .nav-dot {
  transform: scale(1.3);
}

.nt-nav-pill-item.active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.nt-nav-pill-item.active .nav-dot.dot-gray { box-shadow: 0 0 8px rgba(100, 116, 139, 0.6); }
.nt-nav-pill-item.active .nav-dot.dot-clara, .nt-nav-pill-item.active .nav-dot.dot-green { box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
.nt-nav-pill-item.active .nav-dot.dot-clive, .nt-nav-pill-item.active .nav-dot.dot-orange { box-shadow: 0 0 8px rgba(249, 115, 22, 0.6); }
.nt-nav-pill-item.active .nav-dot.dot-grow, .nt-nav-pill-item.active .nav-dot.dot-blue { box-shadow: 0 0 8px rgba(37, 99, 235, 0.6); }
.nt-nav-pill-item.active .nav-dot.dot-gold { box-shadow: 0 0 8px rgba(217, 119, 6, 0.6); }
.nt-nav-pill-item.active .nav-dot.dot-purple { box-shadow: 0 0 8px rgba(139, 92, 246, 0.6); }

/* Mobile Hamburger Toggle Button */
.nt-mobile-menu-btn {
  display: none;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #0f172a;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.nt-mobile-menu-btn .close-icon {
  display: none;
}

.nt-mobile-menu-btn.active .hamburger-icon {
  display: none;
}

.nt-mobile-menu-btn.active .close-icon {
  display: block;
}

/* Mobile Glass Navigation Drawer */
.nt-mobile-nav-drawer {
  position: absolute;
  top: calc(100% + 8px);
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.nt-mobile-nav-drawer.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nt-mobile-drawer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 650;
  color: #0f172a;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nt-mobile-drawer-item .nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.nt-mobile-drawer-item:hover,
.nt-mobile-drawer-item:focus {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.nt-mobile-cta {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  border-radius: 12px;
  padding: 14px;
  font-weight: 750;
}

.nt-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}


/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.28);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.38);
  color: #ffffff;
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--card-border);
}
.btn-secondary:hover {
  border-color: var(--color-primary-light);
  background: rgba(37, 99, 235, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 10px 14px;
}
.btn-ghost:hover { color: var(--text-primary); }

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 12px;
}

.nt-theme-btn {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}
.nt-theme-btn:hover { border-color: var(--accent-gold); }
.nt-theme-btn .sun { display: none; }
.nt-theme-btn .moon { display: inline; }
[data-theme="light"] .nt-theme-btn .sun { display: inline; }
[data-theme="light"] .nt-theme-btn .moon { display: none; }


/* ══════════════════════════════════════════
   HERO — Big bold statement
   ══════════════════════════════════════════ */

.nt-hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 60px 24px;
}

/* Radial glows */
.nt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

[data-theme="light"] .nt-hero::before {
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
}

[data-theme="light"] .nt-hero::after {
  background: linear-gradient(to top, #f5f7fb 0%, transparent 100%);
}

/* Bottom fade */
.nt-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-deep), transparent);
  pointer-events: none;
  z-index: 1;
}

.nt-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.nt-hero-brand {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nt-hero-logo {
  height: 76px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}

.nt-hero-logo:hover {
}

.nt-hero-logo.light-logo {
  display: none;
}

.nt-hero-logo.dark-logo {
  display: block;
}

[data-theme="light"] .nt-hero-logo.light-logo {
  display: block;
}

/* Hero Refined Category Kicker */
.nt-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 24px;
}

[data-theme="light"] .nt-hero-kicker {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.18);
  color: #2563eb;
}

.nt-hero-kicker .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.nt-hero-headline {
  font-size: clamp(2.4rem, 5.8vw, 4.4rem);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -0.04em;
  max-width: 960px;
  margin: 0 auto 56px auto;
}

.nt-hero-headline .headline-lead {
  color: #0f172a;
  font-weight: 850;
}

.nt-hero-headline .headline-transition {
  color: #0f172a;
  font-weight: 850;
}

@property --g1 {
  syntax: '<color>';
  inherits: false;
  initial-value: #047857;
}
@property --g2 {
  syntax: '<color>';
  inherits: false;
  initial-value: #10b981;
}
@property --g3 {
  syntax: '<color>';
  inherits: false;
  initial-value: #06b6d4;
}

.nt-hero-headline .broc-peace-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  width: 390px;
  min-width: 390px;
  max-width: 390px;
  height: 68px;
  padding: 0 12px;
  border-radius: 18px;
  transform: translateY(-4px);
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  font-weight: 850;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  letter-spacing: -0.02em;
  vertical-align: middle;
  line-height: 1;
  margin-left: 10px;
  box-sizing: border-box;
  background: linear-gradient(120deg, var(--g1) 0%, var(--g2) 50%, var(--g3) 100%);
  transition: --g1 0.8s cubic-bezier(0.16, 1, 0.3, 1), --g2 0.8s cubic-bezier(0.16, 1, 0.3, 1), --g3 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s ease;
  overflow: hidden;
}

/* Theme 1: Financial Peace (Emerald Mint -> Seafoam Teal -> Cyan) */
.nt-hero-headline .broc-peace-badge.theme-peace {
  --g1: #047857;
  --g2: #10b981;
  --g3: #06b6d4;
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.28);
}

/* Theme 2: Clarity (Diamond Ice Blue -> Electric Indigo) */
.nt-hero-headline .broc-peace-badge.theme-clarity {
  --g1: #0284c7;
  --g2: #38bdf8;
  --g3: #6366f1;
  box-shadow: 0 8px 28px rgba(56, 189, 248, 0.3);
}

/* Theme 3: A Plan (Strategic Sapphire -> Teal -> Mint Growth) */
.nt-hero-headline .broc-peace-badge.theme-plan {
  --g1: #0284c7;
  --g2: #0d9488;
  --g3: #10b981;
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.3);
}

/* Theme 4: A Path (Sunrise Gold -> Forest Emerald Trail) */
.nt-hero-headline .broc-peace-badge.theme-path {
  --g1: #059669;
  --g2: #10b981;
  --g3: #f59e0b;
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.3);
}

/* Theme 2: Holidays (Resort Cyan -> Warm Amber Sunset) */
.nt-hero-headline .broc-peace-badge.theme-holidays {
  --g1: #0284c7;
  --g2: #06b6d4;
  --g3: #f59e0b;
  box-shadow: 0 8px 28px rgba(6, 182, 212, 0.28);
}

/* Theme 3: Breathing Room (Fresh Air Sky Blue -> Lavender Peace) */
.nt-hero-headline .broc-peace-badge.theme-breathing {
  --g1: #2563eb;
  --g2: #38bdf8;
  --g3: #818cf8;
  box-shadow: 0 8px 28px rgba(56, 189, 248, 0.28);
}

/* Theme 4: A Nice Treat (Warm Mocha -> Sunset Amber -> Pink Rose) */
.nt-hero-headline .broc-peace-badge.theme-treat {
  --g1: #d97706;
  --g2: #f59e0b;
  --g3: #ec4899;
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.3);
}

/* Theme 4: First Car (Dynamic Clive Coral -> Sunburst Amber) */
.nt-hero-headline .broc-peace-badge.theme-car {
  --g1: #ea580c;
  --g2: #f97316;
  --g3: #eab308;
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.3);
}

/* Theme 5: Dream Home (Cozy Royal Indigo -> Orchid Rose) */
.nt-hero-headline .broc-peace-badge.theme-home {
  --g1: #4f46e5;
  --g2: #7c3aed;
  --g3: #ec4899;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.28);
}

/* Icon Slot & Micro-Animation */
.badge-icon-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
  will-change: transform, opacity, filter;
  opacity: 1;
  transform: scale(1) rotate(0deg);
  filter: blur(0px);
}

.badge-icon-slot.icon-out {
  opacity: 0;
  transform: scale(0.6) rotate(-15deg);
  filter: blur(2px);
}

.badge-icon-slot.icon-in {
  opacity: 0;
  filter: blur(4px);
}

/* Icon Entrance 1: Lotus Blooming Unfold (peace.) */
.badge-icon-slot.icon-anim-lotus-bloom.icon-in {
  animation: iconLotusBloom 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes iconLotusBloom {
  0% { opacity: 0; transform: scale(0.3) rotate(-30deg); filter: blur(6px); }
  60% { opacity: 1; transform: scale(1.15) rotate(4deg); filter: blur(0px); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); filter: blur(0px); }
}

/* Icon Entrance 2: Crystal Prism Flare (clarity.) */
.badge-icon-slot.icon-anim-prism-flare.icon-in {
  animation: iconPrismFlare 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes iconPrismFlare {
  0% { opacity: 0; transform: scale(0.2) rotate(-45deg); filter: blur(8px); }
  60% { opacity: 1; transform: scale(1.18) rotate(5deg); filter: blur(0px); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); filter: blur(0px); }
}

/* Icon Entrance 3: Strategy Blueprint Unfold (a plan.) */
.badge-icon-slot.icon-anim-plan-unfold.icon-in {
  animation: iconPlanUnfold 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes iconPlanUnfold {
  0% { opacity: 0; transform: rotate(-12deg) scale(0.4); filter: blur(6px); }
  60% { opacity: 1; transform: rotate(3deg) scale(1.12); filter: blur(0px); }
  100% { opacity: 1; transform: rotate(0deg) scale(1); filter: blur(0px); }
}

/* Icon Entrance 3: Trail Path Unroll (a path.) */
.badge-icon-slot.icon-anim-path-unroll.icon-in {
  animation: iconPathUnroll 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes iconPathUnroll {
  0% { opacity: 0; transform: translateY(24px) scaleY(0.3); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0) scaleY(1); filter: blur(0px); }
}

/* Icon Entrance 2: Tropical Palm Sprout (holidays.) */
.badge-icon-slot.icon-anim-palm-sprout.icon-in {
  animation: iconPalmSprout 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes iconPalmSprout {
  0% { opacity: 0; transform: translateY(24px) scale(0.4); filter: blur(4px); }
  60% { opacity: 1; transform: translateY(-4px) scale(1.15); filter: blur(0px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0px); }
}

/* Icon Entrance 3: Spiral Breeze Spin (breathing room.) */
.badge-icon-slot.icon-anim-breeze-spin.icon-in {
  animation: iconBreezeSpin 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes iconBreezeSpin {
  0% { opacity: 0; transform: rotate(-180deg) scale(0.3); filter: blur(6px); }
  100% { opacity: 1; transform: rotate(0deg) scale(1); filter: blur(0px); }
}

/* Icon Entrance 4: Cozy Treat Mug Bounce (a nice treat.) */
.badge-icon-slot.icon-anim-treat-bounce.icon-in {
  animation: iconTreatBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes iconTreatBounce {
  0% { opacity: 0; transform: translateY(22px) scale(0.4); filter: blur(4px); }
  60% { opacity: 1; transform: translateY(-4px) scale(1.15); filter: blur(0px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0px); }
}

/* Icon Entrance 4: Sleek Highway Drive-In (your first car.) */
.badge-icon-slot.icon-anim-drive-in.icon-in {
  animation: iconDriveIn 0.58s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes iconDriveIn {
  0% { opacity: 0; transform: translateX(-28px) scaleY(0.92); filter: blur(4px); }
  60% { opacity: 1; transform: translateX(2px) scaleY(1.04); filter: blur(0px); }
  100% { opacity: 1; transform: translateX(0) scaleY(1); filter: blur(0px); }
}

/* Icon Entrance 5: Rise & Unfold (your dream home.) */
.badge-icon-slot.icon-anim-rise-unfold.icon-in {
  animation: iconRiseUnfold 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes iconRiseUnfold {
  0% { opacity: 0; transform: translateY(28px) scale(0.5); filter: blur(4px); }
  70% { opacity: 1; transform: translateY(-3px) scale(1.12); filter: blur(0px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0px); }
}

.badge-icon-slot svg {
  display: block;
  overflow: visible;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.25));
}

/* ── Multi-Element SVG Sub-Path Animations ── */

/* 1. Peace Blooming Lotus Sub-Path Animations */
.icon-peace-aura {
  transform-origin: 12px 12px;
  animation: auraRipple 3s ease-in-out infinite alternate;
}
@keyframes auraRipple {
  0% { transform: scale(0.85); opacity: 0.3; }
  100% { transform: scale(1.18); opacity: 0.85; filter: drop-shadow(0 0 6px rgba(255,255,255,0.8)); }
}

.icon-lotus-bloom {
  transform-origin: 12px 17px;
  animation: lotusBreath 2.8s ease-in-out infinite alternate;
}
@keyframes lotusBreath {
  0% { transform: scale(0.92) rotate(-3deg); }
  100% { transform: scale(1.08) rotate(3deg); }
}

/* 2. Clarity Crystal Prism Sub-Path Animations */
.icon-prism-crystal {
  transform-origin: 12px 12px;
  animation: prismRefract 3s ease-in-out infinite alternate;
}
@keyframes prismRefract {
  0% { transform: rotate(0deg) scale(0.95); }
  100% { transform: rotate(180deg) scale(1.08); filter: drop-shadow(0 0 10px rgba(255,255,255,0.9)); }
}

.icon-beam-light {
  animation: beamPulse 1.6s ease-in-out infinite alternate;
}
@keyframes beamPulse {
  0% { opacity: 0.3; stroke-dashoffset: 4; }
  100% { opacity: 1; stroke-dashoffset: 0; filter: drop-shadow(0 0 6px #ffffff); }
}

/* 3. A Plan Strategy Blueprint Sub-Path Animations */
.icon-plan-check-1 {
  animation: planCheckPop 1.4s ease-in-out infinite alternate;
}
@keyframes planCheckPop {
  0% { opacity: 0.4; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1.15); filter: drop-shadow(0 0 6px #ffffff); }
}

.icon-plan-spark {
  transform-origin: 18px 5px;
  animation: planSparkGlow 1.8s ease-in-out infinite alternate;
}
@keyframes planSparkGlow {
  0% { transform: scale(0.7); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 1; filter: drop-shadow(0 0 8px #ffffff); }
}

/* 4. A Path Fork-in-the-Road Sub-Path Animations */
.icon-highlighted-branch {
  animation: branchGlowPulse 1.8s ease-in-out infinite alternate;
}
@keyframes branchGlowPulse {
  0% { opacity: 0.7; filter: drop-shadow(0 0 2px #ffffff); }
  100% { opacity: 1; filter: drop-shadow(0 0 8px #ffffff); stroke-width: 3.2px; }
}

.icon-branch-pulse {
  animation: branchLightBeam 1.6s ease-in-out infinite alternate;
}
@keyframes branchLightBeam {
  0% { transform: scale(0.6); opacity: 0.3; }
  100% { transform: scale(1.5); opacity: 1; filter: drop-shadow(0 0 8px #ffffff); }
}

.icon-north-star {
  transform-origin: 18px 4px;
  animation: northStarPulse 1.8s ease-in-out infinite alternate;
}
@keyframes northStarPulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 1; filter: drop-shadow(0 0 10px #ffffff); }
}

/* 2. Holidays Palm Island Sub-Path Animations */
.icon-sun-rise {
  animation: sunRise 2.4s ease-in-out infinite alternate;
}
@keyframes sunRise {
  0% { transform: translateY(4px) scale(0.7); opacity: 0.5; }
  100% { transform: translateY(0) scale(1.15); opacity: 1; filter: drop-shadow(0 0 8px rgba(255,255,255,0.9)); }
}

.icon-palm-tree-group {
  transform-origin: 8px 20px;
  animation: palmTreeGrow 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes palmTreeGrow {
  0% { transform: scaleY(0.2) scaleX(0.4); opacity: 0; }
  70% { transform: scaleY(1.12) scaleX(1.05); opacity: 1; }
  100% { transform: scaleY(1) scaleX(1); opacity: 1; }
}

.icon-palm-fronds {
  transform-origin: 9px 10px;
  animation: frondsSway 2.2s ease-in-out infinite alternate;
}
@keyframes frondsSway {
  0% { transform: rotate(-8deg); }
  100% { transform: rotate(12deg); }
}

/* 6. Breathing Room Sub-Path Animations */
.icon-wind-stream-1 {
  animation: windWave1 2s ease-in-out infinite alternate;
}
@keyframes windWave1 {
  0% { transform: translateX(-2px); }
  100% { transform: translateX(3px); }
}
.icon-wind-stream-2 {
  animation: windWave2 2.2s ease-in-out infinite alternate 0.2s;
}
@keyframes windWave2 {
  0% { transform: translateX(2px); }
  100% { transform: translateX(-3px); }
}
.icon-leaf-tumble {
  transform-origin: 19px 18px;
  animation: leafTumble 3s ease-in-out infinite alternate;
}
@keyframes leafTumble {
  0% { transform: rotate(-15deg) translateY(-2px); }
  100% { transform: rotate(20deg) translateY(3px); }
}

/* 7. A Nice Treat Artisan Coffee Sub-Path Animations */
.icon-steam-1 {
  animation: steamRise1 2.2s ease-out infinite;
}
@keyframes steamRise1 {
  0% { opacity: 0.2; transform: translateY(2px) scaleX(0.8); }
  50% { opacity: 0.9; }
  100% { opacity: 0; transform: translateY(-6px) scaleX(1.3); }
}
.icon-steam-2 {
  animation: steamRise2 2.2s ease-out infinite 0.7s;
}
@keyframes steamRise2 {
  0% { opacity: 0.2; transform: translateY(2px) scaleX(0.8); }
  50% { opacity: 1; filter: drop-shadow(0 0 6px #ffffff); }
  100% { opacity: 0; transform: translateY(-7px) scaleX(1.4); }
}
.icon-steam-3 {
  animation: steamRise3 2.2s ease-out infinite 1.4s;
}
@keyframes steamRise3 {
  0% { opacity: 0.2; transform: translateY(2px) scaleX(0.8); }
  50% { opacity: 0.9; }
  100% { opacity: 0; transform: translateY(-6px) scaleX(1.3); }
}
.icon-treat-heart {
  transform-origin: 11px 13px;
  animation: heartGlowPulse 1.8s ease-in-out infinite alternate;
}
@keyframes heartGlowPulse {
  0% { transform: scale(0.88); opacity: 0.7; }
  100% { transform: scale(1.2); opacity: 1; filter: drop-shadow(0 0 8px #ffffff); }
}

/* 4. First Car Sub-Path Animations */
.icon-speed-lines {
  animation: speedLinesGlide 0.8s linear infinite;
}
@keyframes speedLinesGlide {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -8; }
}

.icon-wheel-left, .icon-wheel-right {
  transform-box: fill-box;
  transform-origin: center;
  animation: wheelSpin 0.9s linear infinite;
}
@keyframes wheelSpin {
  to { transform: rotate(360deg); }
}
.icon-headlight-beam {
  animation: headlightPulse 1.4s ease-in-out infinite alternate;
}
@keyframes headlightPulse {
  0% { opacity: 0.3; transform: scaleX(0.8); }
  100% { opacity: 1; transform: scaleX(1.3); filter: drop-shadow(0 0 8px #ffffff); }
}

/* 5. Dream Home Sub-Path Animations */
.icon-smoke-puff-1 {
  animation: smokePuff1 2.2s ease-out infinite;
}
@keyframes smokePuff1 {
  0% { opacity: 0; transform: translate(0, 4px) scale(0.5); }
  50% { opacity: 0.8; }
  100% { opacity: 0; transform: translate(3px, -6px) scale(1.4); }
}
.icon-smoke-puff-2 {
  animation: smokePuff2 2.2s ease-out infinite 0.7s;
}
@keyframes smokePuff2 {
  0% { opacity: 0; transform: translate(0, 4px) scale(0.5); }
  50% { opacity: 0.8; }
  100% { opacity: 0; transform: translate(-2px, -8px) scale(1.5); }
}
.icon-door-arch {
  animation: doorGlow 1.8s ease-in-out infinite alternate;
}
@keyframes doorGlow {
  0% { opacity: 0.4; }
  100% { opacity: 1; filter: drop-shadow(0 0 6px rgba(255,255,255,0.9)); }
}

@keyframes badgeGradientShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.nt-hero-headline .broc-peace-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.35), 0 4px 14px rgba(6, 182, 212, 0.25);
}

.morph-word {
  display: inline-block;
  white-space: nowrap;
  font-size: 1em;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease, font-size 0.3s ease;
  will-change: transform, opacity, filter;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

.morph-word.morph-out {
  opacity: 0;
  transform: translateY(-8px);
  filter: blur(3px);
}

/* Animation Style 1: Serene Blur Fade (peace.) */
.morph-word.anim-blur-fade {
  animation: animBlurFade 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes animBlurFade {
  0% { opacity: 0; filter: blur(8px); transform: scale(0.96); }
  100% { opacity: 1; filter: blur(0px); transform: scale(1); }
}

/* Animation Style 2: Flight Pan Right (holidays.) */
.morph-word.anim-pan-right {
  animation: animPanRight 0.52s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes animPanRight {
  0% { opacity: 0; transform: translateX(-24px); filter: blur(3px); }
  100% { opacity: 1; transform: translateX(0); filter: blur(0px); }
}

/* Animation Style 3: Breeze Float Up (breathing room.) */
.morph-word.anim-breeze-float {
  animation: animBreezeFloat 0.52s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes animBreezeFloat {
  0% { opacity: 0; transform: translateY(18px) scale(0.92); filter: blur(3px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0px); }
}

/* Animation Style 4: Dynamic Pop Spring (your first car.) */
.morph-word.anim-pop-spring {
  animation: animPopSpring 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes animPopSpring {
  0% { opacity: 0; transform: scale(0.68); filter: blur(3px); }
  70% { opacity: 1; transform: scale(1.06); filter: blur(0px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0px); }
}

/* Animation Style 5: Curtain Slide Down (your dream home.) */
.morph-word.anim-curtain-slide {
  animation: animCurtainSlide 0.52s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes animCurtainSlide {
  0% { opacity: 0; transform: translateY(-18px); filter: blur(3px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0px); }
}


@keyframes morphIn {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}










.nt-hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 56px auto;
}

/* Fully Rounded Micro Voice Pills */
.nt-hero-inline-agent-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 9px 2px 4px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  vertical-align: 0px;
  margin: 0 2px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  line-height: 1;
}

.nt-hero-inline-agent-pill.clara {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.nt-hero-inline-agent-pill.clara:hover {
  background: rgba(16, 185, 129, 0.22);
  border-color: #10b981;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

.nt-hero-inline-agent-pill.clive {
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #f97316;
}

.nt-hero-inline-agent-pill.clive:hover {
  background: rgba(249, 115, 22, 0.22);
  border-color: #f97316;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.25);
}

.nt-hero-inline-agent-pill .inline-av {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  object-fit: cover;
}

.nt-hero-inline-agent-pill .speaker-icon {
  margin-left: 1px;
  width: 10px;
  height: 10px;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nt-hero-inline-agent-pill:hover .speaker-icon {
  opacity: 1;
}

/* Audio Playing Equalizer Bars */
.nt-hero-inline-agent-pill .audio-wave-anim {
  display: none;
  align-items: flex-end;
  gap: 1.5px;
  height: 10px;
  margin-left: 1px;
}

.nt-hero-inline-agent-pill.playing .speaker-icon {
  display: none;
}

.nt-hero-inline-agent-pill.playing .audio-wave-anim {
  display: inline-flex;
}

.nt-hero-inline-agent-pill.playing {
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.35);
  border-color: currentColor;
}

.audio-wave-anim .bar {
  width: 2px;
  background: currentColor;
  border-radius: 1px;
  animation: eqBounce 0.5s ease-in-out infinite alternate;
}

.audio-wave-anim .bar1 { height: 40%; animation-delay: 0s; }
.audio-wave-anim .bar2 { height: 100%; animation-delay: 0.15s; }
.audio-wave-anim .bar3 { height: 60%; animation-delay: 0.3s; }

@keyframes eqBounce {
  0% { height: 25%; }
  100% { height: 100%; }
}

[data-theme="light"] .nt-hero-inline-agent-pill.clara {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  color: #059669;
}

/* Hero 1-Click Unified Email Form Container */
.nt-hero-email-form {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 16px auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 6px 6px 20px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

[data-theme="light"] .nt-hero-email-form {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nt-hero-email-form:focus-within {
  border-color: rgba(249, 115, 22, 0.6);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 30px rgba(249, 115, 22, 0.2);
}

[data-theme="light"] .nt-hero-email-form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 12px 36px rgba(249, 115, 22, 0.2);
}

.nt-hero-email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-family: inherit;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 10px 0;
}

.nt-hero-email-input::placeholder {
  color: var(--text-muted);
}

.nt-hero-submit-btn {
  white-space: nowrap;
  border-radius: 12px;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 0.94rem;
  height: auto;
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #0d9488 100%);
  border: none;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nt-hero-submit-btn:hover {
  background: linear-gradient(135deg, #047857 0%, #059669 50%, #10b981 100%);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
  transform: translateY(-1px);
}

.nt-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Smooth Scroll Button to Interactive Suite */
.nt-hero-scroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nt-hero-scroll-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .nt-hero-scroll-btn {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.15);
  color: var(--text-secondary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .nt-hero-scroll-btn:hover {
  background: #ffffff;
  border-color: var(--color-primary-light);
  color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}
.nt-hero-pillar-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-gold);
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

/* Connected Bank Pills */
.nt-hero-bank-pills {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nt-bank-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

/* Sankey Flow Diagram Visual */
.nt-sankey-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0 24px 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  position: relative;
}

.nt-sankey-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sankey-node-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sankey-node {
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.in-node {
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--color-primary-light);
  font-weight: 800;
  font-size: 1.15rem;
}

.out-fixed {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.22);
  color: var(--accent);
}

.out-var {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.22);
  color: var(--accent-gold);
}

.out-save {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #10b981;
}

.nt-sankey-flow-lines {
  flex: 1;
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: relative;
}

.sankey-flow-line {
  height: 3px;
  border-radius: 2px;
  width: 100%;
}

.line-fixed { background: linear-gradient(90deg, rgba(59, 130, 246, 0.6), rgba(249, 115, 22, 0.6)); }
.line-var { background: linear-gradient(90deg, rgba(59, 130, 246, 0.6), rgba(251, 191, 36, 0.6)); }
.line-save { background: linear-gradient(90deg, rgba(59, 130, 246, 0.6), rgba(16, 185, 129, 0.7)); }

/* 3-Pillar Understand Features */
.nt-pillar-understand-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.nt-pillar-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 14px 18px;
  border-radius: 14px;
}

.nt-feat-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.nt-feat-icon-avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nt-feat-icon-avatar:hover {
  transform: scale(1.1);
}
.nt-feat-icon-avatar.clara {
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.35);
}
.nt-feat-icon-avatar.clive {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.35);
}

.nt-pillar-feat-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nt-pillar-feat-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Goal Progress Box */
.nt-goal-progress-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 18px;
  border-radius: 14px;
  margin-top: 16px;
}

.nt-goal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.nt-badge-blue {
  background: rgba(37, 99, 235, 0.15);
  color: #3b82f6;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
}

.nt-goal-stat {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 600;
}

/* 3-Pillar Sub-Section Card Layout (UNDERSTAND • OPTIMISE • GROW) */
.nt-pillar-block {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nt-pillar-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.07);
}
.nt-pillar-header-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.nt-pillar-header-badge.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.nt-pillar-header-badge.gold {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.25);
}
.nt-pillar-header-badge.blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.nt-pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
@media (max-width: 860px) {
  .nt-pillar-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.nt-pillar-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.25;
}
.nt-pillar-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.nt-pillar-feat-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nt-pillar-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.nt-pillar-feat-item div {
  display: flex;
  flex-direction: column;
}
.nt-pillar-feat-item strong {
  font-size: 0.92rem;
  color: var(--text-primary);
}
.nt-pillar-feat-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* App Screenshot & Mockup Card */
.nt-app-screenshot-card {
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* 3D Layered Product Collage Stage */
.nt-layered-collage-stage {
  position: relative;
  width: 100%;
  min-height: 460px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.nt-collage-glow-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.28) 0%, rgba(59, 130, 246, 0.15) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

/* Individual Collage Floating Cards */
.nt-collage-card {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38), 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, z-index 0.2s ease, opacity 0.3s ease;
  cursor: pointer;
}

.nt-collage-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  filter: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Positioning & Well-Scattered Fan Layout (Understand Stage) */
.nt-layered-collage-stage {
  min-height: 580px;
  position: relative;
  width: 100%;
}

/* Center Focal Anchor Card (Sankey Cash Flow) */
.nt-collage-card.card-sankey {
  width: 64%;
  top: 25%;
  left: 18%;
  z-index: 4;
  transform: rotate(-1deg);
}

/* Top Left Card (Clara Insights) */
.nt-collage-card.card-insights {
  width: 48%;
  top: 0%;
  left: -2%;
  z-index: 3;
  transform: rotate(-5deg);
}

/* Top Right Card (Financial Summary) */
.nt-collage-card.card-summary {
  width: 46%;
  top: 2%;
  right: -2%;
  z-index: 2;
  transform: rotate(4deg);
}

/* Mid-Left Floating Card (Statement Ledger) */
.nt-collage-card.card-statement {
  width: 48%;
  top: 40%;
  left: -8%;
  z-index: 6;
  transform: rotate(-3deg);
}

/* Bottom Right Card (Spend Limits) */
.nt-collage-card.card-limit {
  width: 48%;
  bottom: 0%;
  right: -4%;
  z-index: 5;
  transform: rotate(-4deg);
}

/* Bottom Left Card (Receipt Vault) */
.nt-collage-card.card-receipts {
  width: 46%;
  bottom: -2%;
  left: 10%;
  z-index: 5;
  transform: rotate(3deg);
}

/* Optimise Product Collage Stage */
.nt-layered-collage-stage.stage-optimise {
  min-height: 540px;
}
.nt-collage-glow-orb.orb-gold {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.28) 0%, rgba(217, 119, 6, 0.15) 50%, transparent 70%);
}

.nt-collage-card.card-budgets {
  width: 66%;
  max-height: 330px;
  top: 16%;
  left: 17%;
  z-index: 2;
  transform: rotate(-1deg);
}
.nt-collage-card.card-budgets img {
  object-position: top center;
}

.nt-collage-card.card-goals {
  width: 52%;
  max-height: 290px;
  top: 0%;
  left: 0%;
  z-index: 4;
  transform: rotate(-4deg);
}
.nt-collage-card.card-goals img {
  object-position: top center;
}

.nt-collage-card.card-help-shop {
  width: 54%;
  max-height: 290px;
  bottom: 0%;
  right: 0%;
  z-index: 5;
  transform: rotate(3deg);
}
.nt-collage-card.card-help-shop img {
  object-position: top center;
}

.nt-collage-card.card-help-shop:hover,
.nt-collage-card.card-goals:hover,
.nt-collage-card.card-budgets:hover {
  box-shadow: 0 24px 50px rgba(245, 158, 11, 0.35), 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Hover Lift Effect */
.nt-collage-card:hover {
  z-index: 20 !important;
  transform: rotate(0deg) scale(1.06) translateY(-8px) !important;
  box-shadow: 0 24px 50px rgba(16, 185, 129, 0.35), 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 1 !important;
}

/* Simple, Bright Minimalist Pill Tags (No Emojis) */
.nt-card-glass-tag {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 10;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nt-card-glass-tag.green {
  border-color: rgba(16, 185, 129, 0.45);
  color: #6ee7b7;
}

.nt-card-glass-tag.gold {
  border-color: rgba(245, 158, 11, 0.45);
  color: #fde047;
}

.nt-card-glass-tag.tag-top-left {
  right: auto;
  left: 12px;
}


.nt-mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f8fafc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nt-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.nt-mockup-dot.red { background: #ef4444; }
.nt-mockup-dot.yellow { background: #f59e0b; }
.nt-mockup-dot.green { background: #10b981; }
.nt-mockup-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 6px;
}
.nt-mockup-body {
  padding: 16px;
}

/* Interactive Tender Bidding Showcase Box */
.nt-tender-showcase-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.nt-tender-bid-item {
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  transition: all 0.25s ease;
}
.nt-tender-bid-item.active {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}
.nt-bid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.nt-bid-provider {
  font-weight: 750;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.nt-bid-specs {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.nt-bid-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nt-bid-tag {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 3px 8px;
  border-radius: 6px;
}

/* Canva-Style Hero Search & Prompt Bar */
.nt-canva-search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 620px;
  margin: 0 auto 16px auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 6px 6px 20px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

[data-theme="light"] .nt-canva-search-form {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nt-canva-search-form:focus-within {
  border-color: rgba(249, 115, 22, 0.6);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 30px rgba(249, 115, 22, 0.2);
}

[data-theme="light"] .nt-canva-search-form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 12px 36px rgba(249, 115, 22, 0.2);
}

.nt-canva-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nt-canva-search-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
}

.nt-canva-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-family: inherit;
  letter-spacing: -0.01em;
}

.nt-canva-input::placeholder {
  color: var(--text-muted);
}

.nt-canva-submit-btn {
  white-space: nowrap;
  border-radius: 12px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.92rem;
}

/* Canva Quick Action Suggestion Chips */
.nt-canva-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 auto 20px auto;
  max-width: 650px;
}

.nt-canva-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

[data-theme="light"] .nt-canva-chip {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-secondary);
}

.nt-canva-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.18);
}

[data-theme="light"] .nt-canva-chip:hover {
  background: rgba(37, 99, 235, 0.06);
  color: var(--text-primary);
}

.nt-canva-chip.active {
  background: rgba(37, 99, 235, 0.16);
  border-color: rgba(37, 99, 235, 0.5);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

[data-theme="light"] .nt-canva-chip.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

/* Inline Trust Note Below Chips */
.nt-hero-trust-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.nt-hero-trust-inline .dot {
  opacity: 0.4;
}

/* Canva Dynamic Tab Content Views */
.nt-canva-tab-content {
  display: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nt-canva-tab-content.active {
  display: block !important;
  opacity: 1;
}

/* Light Theme Card Overrides */
[data-theme="light"] .nt-hero-calc-card {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.16);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.1), 0 4px 16px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .nt-sankey-preview,
[data-theme="light"] .nt-tender-bid-item,
[data-theme="light"] .nt-goal-progress-box {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .sankey-node-label,
[data-theme="light"] .nt-goal-stat {
  color: #64748b;
}

[data-theme="light"] .nt-calc-heading,
[data-theme="light"] .nt-bid-provider,
[data-theme="light"] .nt-goal-header strong {
  color: #0f172a;
}

/* Interactive Savings Calculator Card */
.nt-hero-calc-container {
  margin-top: 48px;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.nt-hero-calc-card {
  background: var(--bg-elevated);
  border: 1px solid var(--card-border-hover);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: var(--shadow-strong), 0 0 40px rgba(37, 99, 235, 0.08);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.nt-calc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.nt-calc-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.nt-calc-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.nt-calc-counter-wrap {
  text-align: right;
}

.nt-calc-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.nt-calc-counter {
  font-size: 2rem;
  font-weight: 900;
  color: #10b981;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.nt-calc-per-yr {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Calculator Toggles */
.nt-calc-toggles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.nt-calc-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.nt-calc-toggle input[type="checkbox"] {
  display: none;
}

.nt-calc-toggle.active {
  border-color: rgba(37, 99, 235, 0.3);
  background: rgba(37, 99, 235, 0.05);
}

.nt-toggle-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nt-toggle-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nt-toggle-text strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nt-toggle-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nt-toggle-switch {
  width: 40px;
  height: 22px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  position: relative;
  transition: background 0.2s ease;
}

.nt-toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.nt-calc-toggle.active .nt-toggle-switch {
  background: #10b981;
}

.nt-calc-toggle.active .nt-toggle-switch::after {
  transform: translateX(18px);
}

/* Slider Wrap */
.nt-calc-slider-wrap {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.nt-slider-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 10px;
}

#nt-slider-label-val {
  color: var(--accent-gold);
}

.nt-calc-range-input {
  width: 100%;
  accent-color: #10b981;
  cursor: pointer;
}

/* Agents Audio Bar Inside Calc */
.nt-calc-agents-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
  flex-wrap: wrap;
}


/* Floating AI team avatars */
.nt-hero-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nt-hero-avatar-bubble {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  cursor: pointer;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nt-hero-avatar-bubble:hover,
.nt-hero-avatar-bubble:focus {
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-glow-blue);
  background: rgba(37, 99, 235, 0.08);
}

.nt-hero-avatar-bubble[data-agent="clara"]:hover,
.nt-hero-avatar-bubble[data-agent="clara"]:focus {
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.08);
}

/* Mini Thought Bubble Popover */
.nt-hero-popover {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.95);
  width: max-content;
  max-width: min(280px, calc(100vw - 40px));
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: var(--shadow-strong);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.45;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
  text-align: center;
}

.nt-hero-popover::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: var(--bg-elevated) transparent transparent transparent;
}

.nt-hero-avatar-bubble:hover .nt-hero-popover,
.nt-hero-avatar-bubble:focus .nt-hero-popover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.nt-hero-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-deep);
}

.nt-hero-av-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nt-hero-av-label span {
  font-weight: 400;
  color: var(--text-muted);
}

.nt-hero-listen-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 2px;
}

.nt-hero-audio-icon {
  font-size: 0.85rem;
  opacity: 0.7;
}

.nt-hero-audio-wave {
  display: none;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}

.nt-hero-avatar-bubble.playing .nt-hero-audio-icon { display: none; }
.nt-hero-avatar-bubble.playing .nt-hero-audio-wave { display: flex; }

.nt-hero-audio-wave span {
  width: 3px;
  height: 100%;
  background: var(--accent-gold);
  border-radius: 99px;
  animation: ntWaveBar 0.8s ease-in-out infinite alternate;
}

.nt-hero-audio-wave span:nth-child(1) { animation-delay: 0s; }
.nt-hero-audio-wave span:nth-child(2) { animation-delay: 0.25s; }
.nt-hero-audio-wave span:nth-child(3) { animation-delay: 0.5s; }

@keyframes ntWaveBar {
  0%   { height: 3px; }
  100% { height: 14px; }
}


/* ══════════════════════════════════════════
   SOCIAL PROOF STRIP
   ══════════════════════════════════════════ */

.nt-proof-strip {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: var(--bg-card);
}

.nt-proof-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nt-partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.nt-partner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0.85;
}

.nt-partner-item:hover {
  opacity: 1;
}

.nt-partner-name {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.nt-proof-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.nt-proof-badge:hover { opacity: 1; color: var(--text-primary); }
.nt-proof-badge img { height: 22px; opacity: 0.85; }

.nt-partner-name-text {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nt-partner-name-text:hover {
  opacity: 1;
  color: var(--text-primary);
}

/* Hero Trust Pills */
.nt-hero-trust-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.nt-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
}

[data-theme="light"] .nt-trust-pill {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}

/* Bento Grid */
.nt-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.nt-bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nt-bento-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.nt-bento-card.bento-wide {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .nt-bento-grid { grid-template-columns: minmax(0, 1fr); }
  .nt-bento-card.bento-wide { grid-column: span 1; }
}

.nt-bento-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 6px;
}

.nt-bento-tag.gold { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.nt-bento-tag.green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.nt-bento-tag.blue { background: rgba(37, 99, 235, 0.15); color: #3b82f6; }

.nt-bento-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.nt-bento-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.nt-bento-tender-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  width: 100%;
}

.nt-tender-bid-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  flex-wrap: wrap;
  gap: 8px;
}

.nt-bid-provider { font-weight: 600; color: var(--text-primary); }
.nt-bid-specs { color: var(--text-muted); font-size: 0.8rem; }
.nt-bid-price { font-weight: 700; color: var(--text-primary); }

.nt-badge-green {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  font-size: 0.72rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.nt-bento-visual-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 16px;
  width: 100%;
}

.nt-bento-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #3b82f6);
  border-radius: 4px;
}

.nt-bento-stat {
  font-size: 0.85rem;
  font-weight: 600;
  color: #10b981;
  margin-top: 8px;
}

.nt-bento-security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3b82f6;
  background: rgba(37, 99, 235, 0.1);
  padding: 8px 14px;
  border-radius: 8px;
  margin-top: 12px;
  max-width: 100%;
}

.nt-bento-team-pills {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.nt-bento-team-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
}

.nt-bento-team-pill img { width: 32px; height: 32px; border-radius: 50%; }
.nt-bento-team-pill span { color: var(--text-muted); font-size: 0.78rem; }

/* Technology Architecture Nodes */
.nt-arch-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nt-arch-node {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.nt-arch-node.featured {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.1);
}

.nt-arch-node-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: #3b82f6;
  border-radius: 12px;
}

.nt-arch-node h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.nt-arch-node p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.nt-arch-arrow {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 300;
}

@media (max-width: 768px) {
  .nt-arch-arrow { display: none; }
}

/* Founders Grid & Impactful Centered Avatars */
.nt-founders-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

@media (max-width: 900px) {
  .nt-founders-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
}

.nt-founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 32px 24px 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.nt-founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: rgba(37, 99, 235, 0.25);
}

.nt-founder-avatar-wrap {
  position: relative;
  width: 104px;
  height: 104px;
  margin: 0 auto 18px auto;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.4), rgba(37, 99, 235, 0.3));
  box-shadow: 0 8px 22px -4px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.nt-founder-card:hover .nt-founder-avatar-wrap {
  transform: scale(1.05);
}

.nt-founder-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0.12) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0.12) 100%);
}

.nt-founder-avatar-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32px;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 100%);
  pointer-events: none;
}

.nt-founder-card h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 4px;
  margin-bottom: 4px;
}

.nt-founder-role {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #d97706;
  background: rgba(217, 119, 6, 0.08);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  border: 1px solid rgba(217, 119, 6, 0.18);
}

.nt-founder-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

/* Footer Compliance Disclaimer */
.nt-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.nt-affiliate-disclaimer {
  width: 100%;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: left;
}


/* ══════════════════════════════════════════
   CONTENT COLUMN
   ══════════════════════════════════════════ */

.content-col {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.content-col-wide { max-width: 1080px; }


/* ══════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════ */

.nt-section {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  overflow: hidden;
  will-change: transform;
  transform: scale(var(--section-depth-scale, 1));
  transition: transform 0.1s ease-out;
}

/* Parallax Ambient Floating Orbs Behind Sections */
.nt-section::before {
  content: '';
  position: absolute;
  top: -15%;
  left: 50%;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, rgba(16, 185, 129, 0.03) 45%, rgba(255, 255, 255, 0) 70%);
  transform: translate(-50%, var(--parallax-bg-offset, 0px));
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  filter: blur(50px);
  transition: transform 0.1s ease-out;
}

.nt-section#your-team::before {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, rgba(16, 185, 129, 0.04) 45%, rgba(255, 255, 255, 0) 70%);
}

.nt-section#how-it-works::before {
  background: radial-gradient(circle, rgba(217, 119, 6, 0.05) 0%, rgba(37, 99, 235, 0.04) 45%, rgba(255, 255, 255, 0) 70%);
}

.nt-section#technology::before {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, rgba(16, 185, 129, 0.03) 45%, rgba(255, 255, 255, 0) 70%);
}

.nt-section .content-col {
  position: relative;
  z-index: 1;
  transform: translateY(var(--parallax-offset, 0px));
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.nt-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.nt-section-label.blue { color: var(--color-primary-vivid); }
.nt-section-label.gold { color: var(--accent-gold); }
.nt-section-label.green { color: var(--color-success-light); }

.nt-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.nt-section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
}


/* ══════════════════════════════════════════
   VIDEO
   ══════════════════════════════════════════ */

.nt-video-wrap {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 40px auto 0 auto;
  padding: 3px;
  background: var(--gradient-warm);
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nt-video-wrap:hover {
  box-shadow: var(--shadow-glow-orange), 0 0 40px rgba(249, 115, 22, 0.25);
}

.nt-video-wrap video {
  width: 100%;
  display: block;
  border-radius: 17px;
  background: #000;
  filter: brightness(0.45);
  transition: filter 0.4s ease;
}

.nt-video-wrap video.playing { filter: brightness(1); }

.nt-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 3;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.nt-video-wrap.playing .nt-video-play { opacity: 0; }


/* ══════════════════════════════════════════
   HOW IT WORKS — Steps
   ══════════════════════════════════════════ */

.nt-steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 64px;
}

.nt-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.nt-step:nth-child(even) { direction: rtl; }
.nt-step:nth-child(even) > * { direction: ltr; }

.nt-step-number {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.55;
}

.nt-step-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.nt-step-desc {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.nt-step-visual {
  background: var(--bg-elevated);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nt-step-visual:hover {
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-glow-blue);
}


/* ── Speech Bubbles ── */
.nt-bubble {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.1);
  margin-bottom: 14px;
  transition: background 0.2s ease;
}

.nt-bubble.clara {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.1);
}

.nt-bubble:last-child { margin-bottom: 0; }

.nt-bubble:hover {
  background: rgba(37, 99, 235, 0.1);
}
.nt-bubble.clara:hover {
  background: rgba(16, 185, 129, 0.1);
}

.nt-bubble-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.nt-bubble-body { flex: 1; }

.nt-bubble-name {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}
.nt-bubble-name.clive { color: var(--color-primary-vivid); }
.nt-bubble-name.clara { color: var(--color-success-light); }

.nt-bubble-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.nt-bubble-text strong {
  color: var(--text-primary);
  font-weight: 700;
}


/* ══════════════════════════════════════════
   YOU'RE IN CONTROL — Three mode cards
   ══════════════════════════════════════════ */

.nt-control-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .nt-control-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.nt-control-card {
  background: var(--bg-elevated);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nt-control-card:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--card-border-hover);
}

/* Featured middle card — subtle warm glow */
.nt-control-card.featured {
  border-color: rgba(249, 115, 22, 0.25);
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.04) 0%,
    rgba(251, 191, 36, 0.04) 100%
  ), var(--bg-elevated);
}

.nt-control-card.featured:hover {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: var(--shadow-glow-orange);
}

.nt-control-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.nt-control-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.nt-control-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.nt-control-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nt-control-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.nt-control-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}


/* ══════════════════════════════════════════
   TEAM CARDS
   ══════════════════════════════════════════ */

.nt-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .nt-team-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.nt-team-card {
  background: var(--bg-elevated);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 44px 32px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.nt-team-card[data-agent] {
  cursor: pointer;
  user-select: none;
}

.nt-team-card.clive-border:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: var(--shadow-glow-blue);
}

.nt-team-card.clara-border:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.2);
}

.nt-team-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.nt-team-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0;
  border: 3px solid var(--bg-deep);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: block;
}

.nt-team-card:hover .nt-team-avatar {
  transform: scale(1.05);
}

.nt-team-card.playing .nt-team-avatar {
  transform: scale(1.08);
}

.nt-team-card.clive-border.playing .nt-team-avatar {
  border-color: #3b82f6 !important;
}

.nt-team-card.clara-border.playing .nt-team-avatar {
  border-color: #10b981 !important;
}

/* Audio Badge on Avatar */
.nt-team-audio-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
  color: var(--text-secondary);
}

.nt-team-card:hover .nt-team-audio-badge {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.nt-team-card.clara-border:hover .nt-team-audio-badge {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
}

.nt-team-audio-badge .speaker-icon {
  width: 13px;
  height: 13px;
  transition: opacity 0.2s ease;
}

.nt-team-card.playing .nt-team-audio-badge .speaker-icon {
  display: none;
}

.nt-team-audio-badge .audio-wave-anim {
  display: none;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.nt-team-card.playing .nt-team-audio-badge .audio-wave-anim {
  display: flex;
}

.nt-team-card.playing .nt-team-audio-badge {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.4);
}

.nt-team-card.clara-border.playing .nt-team-audio-badge {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
}

.nt-team-card.playing.clive-border {
  border-color: rgba(37, 99, 235, 0.6) !important;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.25) !important;
}

.nt-team-card.playing.clara-border {
  border-color: rgba(16, 185, 129, 0.6) !important;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.25) !important;
}

.nt-team-name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.nt-team-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.nt-audio-top-right-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: 999px;
  transition: all 0.25s ease;
  pointer-events: none;
}

.nt-team-card:hover .nt-audio-top-right-tag {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.25);
}

.nt-team-card.clara-border:hover .nt-audio-top-right-tag {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.25);
}

.nt-team-card.playing .nt-audio-top-right-tag {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.nt-team-card.clara-border.playing .nt-audio-top-right-tag {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.nt-team-role {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.nt-team-role.clive { color: var(--color-primary-vivid); }
.nt-team-role.clara { color: var(--color-success-light); }

.nt-team-bio {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ══════════════════════════════════════════
   TESTIMONIALS & COMMUNITY SECTION
   ══════════════════════════════════════════ */

.nt-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .nt-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.nt-testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.nt-testimonial-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.nt-testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.nt-testimonial-quote {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-style: italic;
}

.nt-testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nt-testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nt-testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-vivid), #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.nt-testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nt-testimonial-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nt-testimonial-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}


/* ══════════════════════════════════════════
   BLOG TICKER SECTION
   ══════════════════════════════════════════ */

.nt-blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.nt-blog-controls-bar {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  position: relative;
  z-index: 10;
}

.nt-blog-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nt-blog-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--card-border-hover);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nt-blog-dot:hover {
  background: var(--color-primary-vivid);
  transform: scale(1.2);
}

.nt-blog-dot.active {
  width: 28px;
  border-radius: 12px;
  background: var(--color-primary-vivid);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
}

.nt-blog-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--card-border-hover);
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  user-select: none;
}

.nt-blog-nav-btn:hover {
  border-color: var(--color-primary-vivid);
  background: var(--bg-surface);
  color: var(--color-primary-vivid);
  transform: scale(1.06);
}

.nt-blog-nav-btn:active {
  transform: scale(0.96);
}

.nt-blog-viewport {
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  width: 100%;
  padding: 10px 0 20px 0;
  cursor: grab;
}

.nt-blog-viewport:active {
  cursor: grabbing;
}

.nt-blog-viewport::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.nt-blog-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.nt-blog-card {
  width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--bg-elevated);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.nt-blog-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-glow-blue);
}

.nt-blog-card-img-wrap {
  width: 100%;
  height: 130px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(15, 23, 42, 0.04);
  position: relative;
}

.nt-blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, filter 0.4s ease;
  filter: brightness(0.94) contrast(1.04);
}

.nt-blog-card:hover .nt-blog-card-img {
  transform: scale(1.05);
  opacity: 0.98;
  filter: brightness(1) contrast(1);
}

.nt-blog-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.nt-blog-badge.gold {
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-gold);
}
.nt-blog-badge.blue {
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-primary-vivid);
}
.nt-blog-badge.green {
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-success-light);
}

.nt-blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.nt-blog-snippet {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 20px;
}

.nt-blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  border-top: 1px solid var(--card-border);
  padding-top: 14px;
}

.nt-blog-link-arrow {
  color: var(--color-primary-vivid);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.nt-blog-card:hover .nt-blog-link-arrow {
  transform: translateX(4px);
}

/* Static blog grid (replaces marquee) */
.nt-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 900px) {
  .nt-blog-grid {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════ */

.nt-final-cta {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px 60px 24px;
}

.nt-final-cta-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.nt-final-cta-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 36px auto;
}

.nt-final-cta-buttons,
.nt-hero-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */

.nt-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--card-border);
  padding: 28px 24px;
}

.nt-footer-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.nt-footer-ndrc {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}
.nt-footer-ndrc:hover { color: var(--text-secondary); }
.nt-footer-ndrc img { height: 24px; opacity: 0.65; }

.nt-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nt-footer-links a,
.nt-footer-links button,
.nt-footer-legal-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  color: var(--text-muted, #64748b) !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: color 0.2s ease;
}
.nt-footer-links a:hover,
.nt-footer-links button:hover,
.nt-footer-legal-btn:hover {
  color: var(--text-primary, #0f172a) !important;
  text-decoration: none !important;
}

.nt-footer-copy {
  width: 100%;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--card-border);
}


/* ══════════════════════════════════════════
   LIGHT THEME SPECIFIC POLISH
   ══════════════════════════════════════════ */

[data-theme="light"] .nt-header {
  background: rgba(245, 247, 251, 0.85);
  backdrop-filter: blur(24px);
  border-bottom-color: rgba(37, 99, 235, 0.1);
}

[data-theme="light"] .nt-hero-avatar-bubble {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(37, 99, 235, 0.14);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.08);
}

[data-theme="light"] .nt-hero-popover {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .nt-hero-popover::after {
  border-color: #ffffff transparent transparent transparent;
}

[data-theme="light"] .nt-proof-strip {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  border-color: rgba(37, 99, 235, 0.1);
}

[data-theme="light"] .nt-step-visual,
[data-theme="light"] .nt-team-card,
[data-theme="light"] .nt-control-card,
[data-theme="light"] .nt-blog-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-color: rgba(37, 99, 235, 0.12);
  box-shadow: 0 10px 30px -5px rgba(37, 99, 235, 0.07), 0 2px 8px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .nt-control-card.featured {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.06) 0%, rgba(251, 191, 36, 0.08) 100%), rgba(255, 255, 255, 0.9);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 12px 36px -6px rgba(249, 115, 22, 0.15);
}

[data-theme="light"] .nt-bubble {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.12);
}

[data-theme="light"] .nt-bubble.clara {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.12);
}

[data-theme="light"] .nt-bubble-name.clive { color: #2563eb; }
[data-theme="light"] .nt-bubble-name.clara { color: #059669; }
[data-theme="light"] .nt-team-role.clive { color: #2563eb; }
[data-theme="light"] .nt-team-role.clara { color: #059669; }
[data-theme="light"] .nt-section-label.blue { color: #2563eb; }
[data-theme="light"] .nt-section-label.gold { color: #d97706; }
[data-theme="light"] .nt-section-label.green { color: #059669; }

/* ══════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════ */

.nt-section,
.nt-proof-strip,
.nt-hero,
.nt-header {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 1080px) {
  .nt-header {
    padding: 12px 20px;
    justify-content: space-between;
  }
  .nt-floating-nav-pill,
  .nt-header-nav {
    display: none !important;
  }
  .nt-mobile-menu-btn {
    display: flex !important;
  }

  .nt-hero-headline .broc-peace-badge {
    display: inline-flex !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 95% !important;
    height: 52px !important;
    padding: 0 20px !important;
    font-size: clamp(1.3rem, 3.2vw, 1.8rem) !important;
    margin: 8px auto 0 auto !important;
    border-radius: 16px !important;
    transform: none !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.28) !important;
  }
}

@media (max-width: 768px) {
  .nt-header {
    padding: 12px 16px;
  }
  .nt-floating-nav-pill,
  .nt-header-nav {
    display: none !important;
  }
  .nt-mobile-menu-btn {
    display: flex !important;
  }

  /* Mobile Hero: Headline Commands ~50% Screen Height + Generous Downward Spacing */
  .nt-hero {
    padding: 140px 20px 90px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .nt-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .nt-hero-headline {
    font-size: clamp(3.2rem, 11vw, 4.4rem) !important;
    line-height: 1.18 !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46vh !important;
    margin-bottom: 56px !important;
  }

  .nt-hero-headline .headline-lead {
    display: block;
    margin-bottom: 12px;
  }

  .nt-hero-headline .headline-transition {
    display: block;
    margin-bottom: 20px;
  }

  .nt-hero-headline .broc-peace-badge {
    display: inline-flex !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 98% !important;
    height: 90px !important;
    padding: 0 34px !important;
    font-size: clamp(2.1rem, 7.5vw, 3rem) !important;
    margin: 22px auto 0 auto !important;
    border-radius: 24px !important;
    border: 2px solid rgba(255, 255, 255, 0.55) !important;
    transform: none !important;
    box-shadow: 0 18px 45px rgba(16, 185, 129, 0.45), 0 0 24px rgba(16, 185, 129, 0.2) !important;
  }

  .nt-hero-subtitle {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-top: 48px;
    margin-bottom: 52px;
    padding: 0 12px;
    max-width: 96%;
  }

  .nt-hero-inline-agent-pill {
    padding: 4px 12px;
    font-size: 0.88rem;
    margin: 4px 3px;
    display: inline-flex;
    vertical-align: middle;
    border-radius: 20px;
  }

  /* Redesigned Sleek Glass Capsule Email Signup Form for Mobile */
  .nt-hero-email-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 36px auto;
    background: #ffffff;
    border: 1.5px solid rgba(16, 185, 129, 0.38);
    border-radius: 999px;
    padding: 5px 5px 5px 20px;
    box-shadow: 0 14px 36px rgba(16, 185, 129, 0.18), 0 2px 8px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .nt-hero-email-form:focus-within {
    border-color: #10b981;
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.28);
  }

  .nt-hero-email-input {
    flex: 1;
    width: 100%;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 0;
    font-size: 0.92rem;
    color: #0f172a;
    text-align: left;
    box-sizing: border-box;
  }

  .nt-hero-email-input::placeholder {
    color: #94a3b8;
  }

  .nt-hero-submit-btn {
    flex-shrink: 0;
    width: auto;
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 0.92rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
    cursor: pointer;
    box-sizing: border-box;
    white-space: nowrap;
  }

  .nt-hero-trust-inline {
    font-size: 0.82rem;
    font-weight: 600;
    gap: 10px;
    margin-top: 28px;
    margin-bottom: 48px;
  }

  .nt-hero-scroll-btn {
    margin-top: 40px;
    margin-bottom: 30px;
    padding: 13px 28px;
    border-radius: 30px;
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    font-size: 0.9rem;
    font-weight: 700;
  }

  /* Pillar Blocks & Features Mobile Styling */
  .nt-pillar-block { padding: 22px 16px; border-radius: 20px; margin-bottom: 28px; width: 100%; box-sizing: border-box; }
  .nt-pillar-grid { grid-template-columns: 1fr; gap: 20px; }
  .nt-pillar-title { font-size: 1.38rem; }
  .nt-pillar-desc { font-size: 0.92rem; line-height: 1.55; }
  .nt-pillar-feat-item { gap: 12px; align-items: flex-start; }
  .nt-pillar-feat-item > div { flex: 1; min-width: 0; }
  .nt-feat-icon-svg, .nt-feat-icon-avatar { flex-shrink: 0; }

  /* 3D Collage Stage Mobile Adaptation */
  .nt-layered-collage-stage {
    min-height: 480px;
    perspective: none;
    padding: 10px 0;
    overflow: hidden;
    width: 100%;
  }
  .nt-layered-collage-stage.stage-optimise {
    min-height: 440px;
  }

  /* Understand Mobile Collage Cards (Wider scaling on mobile) */
  .nt-collage-card.card-sankey { width: 92%; top: 16%; left: 4%; }
  .nt-collage-card.card-insights { width: 78%; top: 0%; left: 0%; }
  .nt-collage-card.card-summary { width: 74%; top: 2%; right: 0%; }
  .nt-collage-card.card-statement { width: 80%; top: 32%; left: -2%; z-index: 6; }
  .nt-collage-card.card-limit { width: 78%; bottom: 0%; right: 0%; }
  .nt-collage-card.card-receipts { width: 74%; bottom: 2%; left: 0%; }

  /* Optimise Mobile Collage Cards */
  .nt-collage-card.card-budgets { width: 92%; max-height: 290px; top: 14%; left: 4%; }
  .nt-collage-card.card-goals { width: 78%; max-height: 250px; top: 0%; left: 0%; }
  .nt-collage-card.card-help-shop { width: 80%; max-height: 250px; bottom: 0%; right: 0%; }

  /* Glass Tags Mobile Sizing */
  .nt-card-glass-tag {
    font-size: 0.62rem;
    padding: 4px 10px;
    top: 6px;
    right: 8px;
  }
  .nt-card-glass-tag.tag-top-left {
    left: 8px;
    right: auto;
  }

  /* Proof & Control Grid */
  .nt-proof-strip { flex-direction: column; gap: 12px; text-align: center; padding: 20px 16px; }
  .nt-step { grid-template-columns: 1fr; gap: 20px; text-align: left; }
  .nt-step:nth-child(even) { direction: ltr; }
  .nt-control-grid { grid-template-columns: 1fr; gap: 16px; width: 100%; box-sizing: border-box; }
  .nt-control-card { padding: 22px 18px; width: 100%; box-sizing: border-box; }

  /* Team & Founders Grid */
  .nt-team-grid { grid-template-columns: 1fr; gap: 16px; width: 100%; box-sizing: border-box; }
  .nt-team-card { padding: 22px 18px; width: 100%; box-sizing: border-box; }
  .nt-founders-grid { grid-template-columns: 1fr; gap: 16px; width: 100%; box-sizing: border-box; }
  .nt-founder-card { padding: 20px 16px; width: 100%; box-sizing: border-box; }

  /* Architecture Mobile Flow */
  .nt-arch-flow { flex-direction: column; gap: 16px; width: 100%; box-sizing: border-box; }
  .nt-arch-node { padding: 20px 16px; width: 100%; box-sizing: border-box; }
  .nt-arch-arrow { transform: rotate(90deg); margin: 4px 0; }

  /* Mobile Hero: Headline Commands ~50% Vertical Space (48vh) */
  .nt-hero {
    padding: 84px 16px 20px 16px !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-sizing: border-box !important;
  }
  .nt-hero-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
    width: 100% !important;
  }
  /* Mobile Hero: Universal Fluid Scaling Across ALL Mobile Viewports (100dvh) */
  .nt-hero {
    padding: clamp(60px, 8vh, 76px) 16px clamp(10px, 2vh, 16px) 16px !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    height: 100dvh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    box-sizing: border-box !important;
  }
  .nt-hero-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 1 !important;
    width: 100% !important;
    height: 100% !important;
  }
  .nt-hero-headline {
    height: 48dvh !important;
    min-height: 48dvh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: clamp(2.4rem, 9.2vw, 3.8rem) !important;
    line-height: 1.12 !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
    margin: 0 0 0 0 !important;
  }
  .nt-hero-headline .headline-lead { display: block !important; margin-bottom: clamp(2px, 0.8vh, 6px) !important; }
  .nt-hero-headline .headline-transition { display: block !important; margin-bottom: clamp(4px, 1vh, 8px) !important; }
  .nt-hero-headline .broc-peace-badge {
    height: clamp(66px, 9.5vh, 84px) !important;
    margin: clamp(6px, 1.2vh, 12px) auto 0 auto !important;
    padding: 0 clamp(20px, 6vw, 30px) !important;
    font-size: clamp(1.7rem, 6.5vw, 2.7rem) !important;
    font-weight: 900 !important;
    border-radius: clamp(18px, 2.5vh, 24px) !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.4), 0 0 20px rgba(16, 185, 129, 0.2) !important;
  }
  .nt-hero-subtitle {
    margin-top: calc(-3.5dvh - 2px) !important; /* Dynamically scales with viewport height across all devices */
    margin-bottom: clamp(8px, 1.5vh, 14px) !important;
    font-size: clamp(0.9rem, 3.6vw, 1.02rem) !important;
    line-height: 1.55 !important;
  }
  .nt-hero-cta-buttons {
    margin-top: auto !important; /* Pushes action buttons down closer to the bottom fold */
    margin-bottom: clamp(6px, 1vh, 12px) !important;
    width: 100% !important;
    max-width: clamp(280px, 90vw, 380px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
  }
  .nt-hero-trust-inline { margin-top: clamp(4px, 0.8vh, 8px) !important; margin-bottom: clamp(6px, 1vh, 10px) !important; font-size: clamp(0.72rem, 2.8vw, 0.78rem) !important; }
  .nt-hero-scroll-btn { margin-top: 2px !important; margin-bottom: clamp(4px, 1vh, 8px) !important; padding: clamp(6px, 1vh, 10px) clamp(16px, 4vw, 24px) !important; }
  .nt-proof-strip { padding: 16px 14px !important; margin: 20px 0 !important; }

  .nt-section { padding: 24px 16px !important; margin: 0 !important; }
  .nt-section#explore { padding-top: 12px !important; }
  .nt-section > .content-col > div[style*="margin-bottom"] { margin-bottom: 16px !important; }
  .nt-pillars-container { gap: 16px !important; }
  .nt-pillar-block { margin-bottom: 16px !important; padding: 18px 14px !important; }
  .nt-final-cta { padding: 24px 16px !important; }

  /* Footer */
  .nt-footer-inner { flex-direction: column; text-align: center; gap: 16px; padding: 24px 16px; }
}

@media (max-width: 480px) {
  .nt-hero {
    padding: clamp(56px, 7vh, 68px) 12px clamp(8px, 1.5vh, 12px) 12px !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    height: 100dvh !important;
  }
  .nt-hero-headline {
    height: 48dvh !important;
    min-height: 48dvh !important;
    font-size: clamp(2.2rem, 8.8vw, 3.2rem) !important;
    margin: 0 0 0 0 !important;
  }
  .nt-hero-headline .broc-peace-badge {
    height: clamp(64px, 9vh, 76px) !important;
    font-size: clamp(1.6rem, 6vw, 2.3rem) !important;
    font-weight: 900 !important;
    padding: 0 clamp(18px, 5vw, 24px) !important;
    margin: clamp(6px, 1vh, 10px) auto 0 auto !important;
    border-radius: clamp(16px, 2vh, 20px) !important;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35) !important;
  }
  .nt-hero-subtitle { font-size: clamp(0.86rem, 3.4vw, 0.94rem) !important; margin-top: calc(-3.5dvh - 2px) !important; margin-bottom: clamp(6px, 1vh, 10px) !important; }
  .nt-hero-cta-buttons {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: auto !important;
    margin-bottom: clamp(4px, 0.8vh, 8px) !important;
    width: 100% !important;
    max-width: 360px !important;
  }
  .nt-hero-cta-buttons .btn {
    flex: 1 !important;
    min-height: 46px !important;
    padding: 10px 14px !important;
    font-size: 0.92rem !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .nt-hero-trust-inline { margin-top: 4px !important; margin-bottom: 8px !important; font-size: 0.74rem !important; }
  .nt-hero-scroll-btn { margin-top: 2px !important; margin-bottom: 4px !important; padding: 6px 18px !important; }
  .nt-proof-strip { padding: 14px 12px !important; margin: 16px 0 !important; }

  .nt-section { padding: 18px 12px !important; margin: 0 !important; }
  .nt-section#explore { padding-top: 10px !important; }
  .nt-section > .content-col > div[style*="margin-bottom"] { margin-bottom: 12px !important; }
  .nt-pillars-container { gap: 12px !important; }
  .nt-pillar-block { margin-bottom: 12px !important; padding: 14px 10px !important; }
  .nt-final-cta { padding: 18px 12px !important; }
  .nt-layered-collage-stage { min-height: 380px; }
  .nt-layered-collage-stage.stage-optimise { min-height: 350px; }
  .nt-control-card, .nt-team-card, .nt-founder-card, .nt-arch-node { padding: 14px 10px; }
  .nt-pillar-title { font-size: 1.15rem; }
  .nt-pillar-desc { font-size: 0.84rem; }
  .nt-card-glass-tag { font-size: 0.54rem; padding: 2px 5px; }
  .btn, .nt-mobile-drawer-item { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
}

/* ══════════════════════════════════════════
   LEGAL MODALS (Terms & Financial Disclaimer)
   ══════════════════════════════════════════ */
.nt-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nt-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nt-modal-glass-card {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.08);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.nt-modal-overlay.active .nt-modal-glass-card {
  transform: translateY(0) scale(1);
}

.nt-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
}

.nt-modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.nt-modal-close {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nt-modal-close:hover {
  color: #0f172a;
  background: rgba(0, 0, 0, 0.05);
}

.nt-modal-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #334155;
}

.nt-modal-lead {
  font-weight: 600;
  font-size: 1.02rem;
  color: #0f172a;
  margin-bottom: 16px;
}

.nt-modal-body h4 {
  font-size: 1rem;
  font-weight: 750;
  color: #0f172a;
  margin-top: 18px;
  margin-bottom: 6px;
}

.nt-modal-body p {
  margin-bottom: 12px;
}

.nt-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: flex-end;
  background: #f8fafc;
}

/* Footer Legal Link Buttons */
.nt-footer-legal-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: #64748b;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.nt-footer-legal-btn:hover {
  color: #0f172a;
  text-decoration-color: #0f172a;
}

/* Modal Form Controls */
.nt-form-group {
  margin-bottom: 16px;
  text-align: left;
}

.nt-form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.nt-form-input,
.nt-form-textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #f8fafc;
  color: #0f172a;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nt-form-input:focus,
.nt-form-textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}


