/* ═══════════════════════════════════════════════════════════════
   MyHandler.ai — /newlanding cinematic concept page
   Dark luxury theme (dark/gold). Scoped under .nl-page.
   Real-time WebGL hero + GSAP scroll orchestration.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --gold: #B87D3A;
  --gold-light: #D4A55A;
  --gold-dim: rgba(184, 125, 58, 0.15);
  --dark: #0D0C0A;
  --dark-1: #0D0C0A; /* used by the shared _PricingSection partial's inline styles */
  --dark-2: #141210;
  --dark-3: #1C1A16;
  --dark-4: #242018;
  --warm-white: #F5F0E8;
  --muted: rgba(245, 240, 232, 0.5);
  --dimmer: rgba(245, 240, 232, 0.25);
  --border: rgba(245, 240, 232, 0.08);
  --border-gold: rgba(184, 125, 58, 0.3);
  --green: rgba(100, 200, 120, 0.85);
}

.nl-page {
  background: var(--dark);
  color: var(--warm-white);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.nl-page *,
.nl-page *::before,
.nl-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Film grain */
.nl-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: .4;
}

/* ─── Type ─── */
.nl-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(44px, 7.5vw, 96px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.nl-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 17ch;
}

.nl-h2-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

.nl-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.nl-body-lg {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  color: var(--muted);
  max-width: 52ch;
}

.nl-center { margin-left: auto; margin-right: auto; }

/* ─── Buttons / links ─── */
.nl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.nl-btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  padding: 16px 32px;
}

.nl-btn-gold:hover {
  box-shadow: 0 12px 40px rgba(184, 125, 58, 0.35);
}

.nl-btn-outline {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 15px 30px;
}

.nl-btn-outline:hover { background: var(--gold-dim); }

.nl-btn-lg {
  padding: 19px 42px;
  font-size: 15px;
}

.nl-btn-nav {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 9px 18px;
  font-size: 13px;
}

.nl-btn-nav:hover { background: var(--gold-dim); }

.nl-link-quiet {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.nl-link-quiet:hover {
  color: var(--gold-light);
  border-color: var(--border-gold);
}

/* ─── Nav ─── */
.nl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nl-nav.is-scrolled {
  background: rgba(13, 12, 10, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nl-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--warm-white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nl-logo span { color: var(--gold); }

.nl-nav-right { display: flex; align-items: center; gap: 24px; }

.nl-nav-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nl-nav-link:hover { color: var(--warm-white); }

/* ─── Hero track (WebGL scene + pinned copy) ─── */
.nl-track {
  position: relative;
  height: 1080vh; /* nine beats: hero, capture, seal, recall, dictate, command, schedule, watch, brief */
}

.nl-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

#nl-webgl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Cinematic photographic backdrop — always visible; WebGL particles layer on top.
   JS drives a slow scale (dolly) and .nl-stage-dim darkens it as the story abstracts. */
.nl-stage-poster {
  position: absolute;
  inset: -2%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  pointer-events: none;
}

.nl-stage-dim {
  position: absolute;
  inset: 0;
  background: var(--dark);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.nl-stage-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 55%, transparent 32%, rgba(13, 12, 10, 0.5) 100%),
    linear-gradient(to bottom, rgba(13, 12, 10, 0.5) 0%, transparent 20%, transparent 74%, var(--dark) 100%);
  pointer-events: none;
}

.nl-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.nl-overlay[data-seg="hero"] { opacity: 1; }

/* Radial scrim keeps hero copy legible over the bright scene */
.nl-hero-scrim {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(1280px, 135vw);
  height: min(820px, 104vh);
  background: radial-gradient(ellipse at center, rgba(13, 12, 10, 0.82) 0%, rgba(13, 12, 10, 0.55) 48%, transparent 76%);
  pointer-events: none;
  z-index: 0;
}

.nl-hero-inner { position: relative; z-index: 1; max-width: 900px; }

/* keep the long headline a two-line lockup */
.nl-hero-inner .nl-h1 {
  font-size: clamp(40px, 6vw, 82px);
  text-shadow: 0 2px 26px rgba(13, 12, 10, 0.9), 0 0 70px rgba(13, 12, 10, 0.6);
}

.nl-hero-sub {
  margin: 28px auto 36px;
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 300;
  color: rgba(245, 240, 232, 0.82);
  max-width: 56ch;
  text-shadow: 0 1px 14px rgba(13, 12, 10, 0.95);
}

.nl-hero-micro {
  margin-top: 18px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.78);
  text-shadow: 0 1px 6px rgba(13, 12, 10, 1), 0 0 18px rgba(13, 12, 10, 0.9);
}

.nl-hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  pointer-events: auto;
}

.nl-hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.62);
  text-shadow: 0 1px 10px rgba(13, 12, 10, 0.95);
}

.nl-hero-trust .nl-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--border-gold);
}

/* The interrogation: typed question, a beat, the answer — typography only */
.nl-qc {
  margin: 40px auto 0;
  max-width: 620px;
  min-height: 76px;
  text-align: center;
}

.nl-qc-q {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--warm-white);
  min-height: 1.5em;
}

.nl-qc-prompt { color: var(--gold); margin-right: 10px; }

.nl-qc-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--gold);
  margin-left: 3px;
  transform: translateY(2px);
  animation: nl-qc-blink 1.05s step-end infinite;
}

@keyframes nl-qc-blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

.nl-qc-a {
  margin-top: 10px;
  min-height: 1.4em;
  font-size: 14px;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.nl-qc-a.show { opacity: 1; transform: none; }

/* Pillars: the memory core forms in the upper third; the words live in the
   lower third over their own scrim — orb and text never fight. */
.nl-pillar {
  justify-content: flex-end;
  padding-bottom: 11vh;
}

.nl-pillar::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1080px, 124vw);
  height: 56vh;
  background: radial-gradient(ellipse at center, rgba(13, 12, 10, 0.78) 0%, rgba(13, 12, 10, 0.46) 50%, transparent 76%);
  pointer-events: none;
}

.nl-pillar .nl-eyebrow,
.nl-pillar .nl-h2 { position: relative; }

.nl-pillar .nl-h2 {
  margin: 0 auto;
  font-size: clamp(30px, 4vw, 52px); /* a notch under nl-h2 so 4-line beats stay clear of the core */
  text-shadow: 0 2px 22px rgba(13, 12, 10, 0.92), 0 0 56px rgba(13, 12, 10, 0.6);
}

.nl-pillar .nl-eyebrow { text-shadow: 0 1px 10px rgba(13, 12, 10, 0.95); }

.nl-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1px solid var(--dimmer);
  border-radius: 12px;
  opacity: 1;
  transition: opacity 0.5s;
}

.nl-scroll-hint span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--gold);
  animation: nl-hint 2s ease-in-out infinite;
}

@keyframes nl-hint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
}

/* ─── Sections shared ─── */
.nl-section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 140px 40px;
  text-align: center;
}

/* Reveal on scroll (initial state; GSAP or .is-in animates to visible).
   .reveal is the shared-partial spelling — same behavior. */
.nl-reveal,
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.nl-reveal.is-in,
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ─── Privacy ─── */
.nl-privacy {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nl-privacy-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nl-privacy-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--dark) 0%, rgba(13, 12, 10, 0.45) 25%, rgba(13, 12, 10, 0.45) 75%, var(--dark) 100%);
}

.nl-privacy-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 160px 24px;
  max-width: 760px;
}

.nl-privacy-lines {
  list-style: none;
  margin: 36px 0 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nl-privacy-lines li {
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 300;
  color: rgba(245, 240, 232, 0.75);
}

.nl-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.nl-badge {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  background: rgba(13, 12, 10, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 10px 20px;
}

/* The vow — the one line a cloud competitor cannot say */
.nl-privacy-vow {
  margin-top: 44px;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(16px, 1.9vw, 21px);
  color: rgba(245, 240, 232, 0.85);
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ─── Phone mockup (inside the "Text your Handler" ability card) ─── */
.nl-phone {
  margin: 0 auto;
  width: min(320px, 88%);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--dark-3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(184, 125, 58, 0.05);
  padding: 46px 18px 30px;
  position: relative;
}

.nl-phone-card {
  width: 100%;
  max-width: 270px;
  margin: 24px auto 0;
  padding: 34px 14px 20px;
  border-radius: 22px;
}

.nl-phone-time {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--dimmer);
  text-align: center;
  margin-bottom: 14px;
}

.nl-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 6px;
  border-radius: 100px;
  background: rgba(245, 240, 232, 0.1);
}

.nl-bubble {
  max-width: 85%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
  margin-bottom: 12px;
}

.nl-bubble-out {
  margin-left: auto;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  border-bottom-right-radius: 4px;
}

.nl-bubble-in {
  margin-right: auto;
  background: var(--dark-4);
  color: var(--warm-white);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}

.nl-phone-card .nl-bubble { font-size: 13px; padding: 9px 13px; }

/* ─── Data map (Tier 1 / Tier 2) ─── */
.nl-datamap { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.nl-datamap-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.nl-datacol {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--dark-3);
  padding: 30px 28px;
}

.nl-datacol-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.nl-datacol-local .nl-datacol-head { color: var(--green); }
.nl-datacol-relay .nl-datacol-head { color: var(--gold-light); }

.nl-datadot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.nl-dot-green { background: var(--green); }
.nl-dot-gold { background: var(--gold-light); }

.nl-datacol ul { list-style: none; }

.nl-datacol li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.nl-datacol li span { font-size: 0.98rem; color: var(--warm-white); font-weight: 500; }
.nl-datacol li em { font-size: 0.78rem; color: var(--dimmer); font-style: normal; text-align: right; white-space: nowrap; }

.nl-datacol-foot { margin-top: 18px; font-size: 0.85rem; }
.nl-foot-green { color: var(--green); }
.nl-foot-gold { color: var(--gold-light); }

/* ─── Abilities (reach / schedule / dictate) ─── */
.nl-abilities { background: var(--dark); }

.nl-ability-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.nl-ability {
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 14px;
  background: var(--dark-2);
  padding: 32px 28px;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), border-color 0.3s;
}

.nl-ability:hover { transform: translateY(-4px); border-color: var(--border-gold); }

.nl-ability-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--gold-dim);
  color: var(--gold-light);
  margin-bottom: 20px;
}
.nl-ability-icon svg { width: 20px; height: 20px; }

.nl-ability-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.nl-ability-desc { font-size: 0.95rem; font-weight: 300; color: var(--muted); line-height: 1.6; }

/* ─── Meetings ─── */
.nl-meetings { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.nl-meetings .nl-body-lg { margin: 0 auto; }

.nl-waveform {
  width: min(600px, 80%);
  margin: 48px auto 0;
  color: var(--gold);
  opacity: 0.45;
  display: block;
}

/* ─── Product ─── */
.nl-product { background: var(--dark); }

.nl-app-frame {
  margin: 56px auto 0;
  max-width: 900px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--dark-3);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6), 0 0 80px rgba(184, 125, 58, 0.06);
  overflow: hidden;
}

.nl-app-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--dark-4);
}

.nl-app-chrome span { width: 10px; height: 10px; border-radius: 50%; background: rgba(245, 240, 232, 0.14); }

.nl-app-title {
  flex: 1;
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--dimmer);
  margin-right: 44px;
}

.nl-app-screen {
  aspect-ratio: 16 / 9;
  background: var(--dark-2);
}

.nl-app-video { width: 100%; height: 100%; object-fit: cover; display: block; }

.nl-app-cap {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── Comparison ─── */
.nl-compare { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.nl-compare-scroll { margin-top: 44px; overflow-x: auto; -webkit-overflow-scrolling: touch; }

.nl-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: center;
}

.nl-compare-table th, .nl-compare-table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.nl-compare-table thead th {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.nl-compare-table .nl-feat { text-align: left; color: var(--warm-white); font-weight: 400; min-width: 220px; }

.nl-compare-table .nl-col-us {
  background: rgba(184, 125, 58, 0.06);
  color: var(--gold-light);
  font-weight: 500;
}
.nl-compare-table thead .nl-col-us {
  color: var(--gold-light);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
}

.nl-yes { color: var(--gold-light); font-size: 1rem; }
.nl-no { color: var(--dimmer); }
.nl-txt { color: var(--dimmer); font-size: 0.78rem; }
/* value cells in our column are wins, not caveats */
.nl-compare-table td.nl-col-us .nl-txt { color: var(--gold-light); font-weight: 500; }

.nl-compare-note {
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--dimmer);
  text-align: center;
}

/* ─── Pricing: the shared _PricingSection partial, restyled for this page.
   Same class names as landing.css so the partial stays untouched; values
   tuned to the nl aesthetic. ─── */
#pricing .section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 140px 40px;
}

#pricing .section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

#pricing .section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

#pricing .section-heading em {
  font-style: italic;
  color: var(--gold-light);
}

#pricing .section-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  color: var(--muted);
  max-width: 52ch;
}

.pricing-table-wrap {
  margin-top: 60px;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  padding-top: 16px; /* room for "Most popular" badge */
}

.pricing-mobile { display: none; }

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 700px;
  text-align: left;
}

.pricing-table-corner { width: 200px; min-width: 160px; }

.pricing-table-header {
  text-align: center;
  padding: 28px 16px 24px;
  vertical-align: top;
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  background: var(--dark-2);
  position: relative;
}

.pricing-table-header.highlighted {
  background: linear-gradient(170deg, rgba(184, 125, 58, 0.08) 0%, var(--dark-2) 50%);
  border-color: var(--border-gold);
}

.pricing-table-header.highlighted::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.pricing-table-header .price-name {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--dimmer);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-table-header .price-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--warm-white);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-table-header.highlighted .price-amount { color: var(--gold-light); }

.pricing-table-header .price-amount sup { font-size: 20px; vertical-align: super; }

.pricing-table-header .price-period {
  font-size: 12px;
  color: var(--dimmer);
  margin-bottom: 10px;
}

.pricing-table-header .price-tagline {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 36px;
}

.pricing-feature-name {
  font-size: 13px;
  color: var(--muted);
  padding: 12px 16px 12px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.04);
  white-space: nowrap;
}

.pricing-feature-cell {
  text-align: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.04);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.pricing-feature-cell.highlighted {
  background: rgba(184, 125, 58, 0.03);
  border-left-color: var(--border-gold);
  border-right-color: var(--border-gold);
}

.pricing-table tbody tr:last-child .pricing-feature-cell {
  border-bottom: 1px solid var(--border);
}

.pricing-table tbody tr:last-child .pricing-feature-cell.highlighted {
  border-bottom-color: var(--border-gold);
}

.pricing-check { color: var(--gold-light); font-size: 16px; font-weight: 700; }
.pricing-dash { color: rgba(245, 240, 232, 0.15); font-size: 16px; }
.pricing-value { color: var(--warm-white); font-size: 13px; font-weight: 600; }

.price-cta {
  display: inline-block;
  width: 100%;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s;
  margin-top: 4px;
  box-sizing: border-box;
  cursor: pointer;
}

.price-cta-outline {
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
}

.price-cta-outline:hover {
  border-color: var(--border-gold);
  color: var(--warm-white);
  background: rgba(184, 125, 58, 0.05);
}

.price-cta-filled {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 16px rgba(184, 125, 58, 0.25);
}

.price-cta-filled:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 24px rgba(184, 125, 58, 0.35);
  transform: translateY(-1px);
}

.pricing-mobile-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 16px;
  position: relative;
  text-align: left;
}

.pricing-mobile-card.highlighted {
  background: linear-gradient(170deg, rgba(184, 125, 58, 0.08) 0%, var(--dark-2) 50%);
  border-color: var(--border-gold);
}

.pricing-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.pricing-mobile-header .price-name {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--dimmer);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pricing-mobile-header .price-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--warm-white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-mobile-card.highlighted .pricing-mobile-header .price-amount { color: var(--gold-light); }

.pricing-mobile-header .price-amount sup { font-size: 16px; vertical-align: super; }

.price-period-inline {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--dimmer);
}

.pricing-mobile-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.pricing-mobile-features li {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-mobile-features .pricing-check { font-size: 12px; flex-shrink: 0; }

/* ─── FAQ ─── */
.nl-faq { background: var(--dark-2); border-top: 1px solid var(--border); }

.nl-faq-list { margin-top: 48px; text-align: left; border-top: 1px solid var(--border); }

.nl-faq-item { border-bottom: 1px solid var(--border); }

.nl-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  color: var(--warm-white);
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 400;
  text-align: left;
  padding: 26px 4px;
  cursor: pointer;
  transition: color 0.2s;
}

.nl-faq-q:hover { color: var(--gold-light); }

.nl-faq-q svg { flex-shrink: 0; color: var(--gold); transition: transform 0.35s ease; }

.nl-faq-item.is-open .nl-faq-q svg { transform: rotate(45deg); }

.nl-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1); }

.nl-faq-a p {
  padding: 0 4px 28px;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 62ch;
}

/* ─── Final CTA ─── */
.nl-final {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nl-final-bg {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center;
  animation: nl-slow-zoom 26s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes nl-slow-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}

.nl-final-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(13, 12, 10, 0.25) 0%, rgba(13, 12, 10, 0.78) 100%),
    linear-gradient(to bottom, var(--dark) 0%, transparent 25%, transparent 80%, var(--dark) 100%);
}

.nl-final-inner { position: relative; z-index: 2; text-align: center; padding: 0 24px; }

.nl-final-inner .nl-btn { margin-top: 44px; }

.nl-final-micro {
  margin-top: 22px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--dimmer);
}

/* ─── Footer ─── */
.nl-footer { border-top: 1px solid var(--border); background: var(--dark); }

.nl-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--dimmer);
}

.nl-footer-links { display: flex; gap: 24px; }

.nl-footer-links a { color: var(--muted); text-decoration: none; transition: color 0.2s; }

.nl-footer-links a:hover { color: var(--warm-white); }

.nl-footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 40px 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.nl-footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }

.nl-footer-head {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-bottom: 4px;
}

.nl-footer-col a { color: var(--muted); text-decoration: none; transition: color 0.2s; }

.nl-footer-col a:hover { color: var(--warm-white); }

.nl-hero-micro {
  margin-top: 16px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--dimmer);
}

.nl-faq-a a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .pricing-desktop { display: none; }
  .pricing-mobile { display: block; margin-top: 40px; }
}

@media (max-width: 860px) {
  .nl-ability-grid { grid-template-columns: 1fr; }
  .nl-datamap-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nl-nav { padding: 0 20px; }
  .nl-nav-link { display: none; }
  .nl-section-inner { padding: 96px 20px; }
  #pricing .section-inner { padding: 96px 20px; }
  .nl-track { height: 940vh; }
  .nl-footer-inner { flex-direction: column; gap: 14px; }
  .nl-footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 0; }
  .nl-hero-trust { font-size: 10px; gap: 10px; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  .nl-final-bg { animation: none; }
  .nl-scroll-hint span { animation: none; }
  .nl-reveal, .reveal { opacity: 1; transform: none; transition: none; }
  .nl-ability:hover { transform: none; }
}
