/* ============================================================
   BENNETT DIGITAL DEFENSE — Nova
   style.css
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Colors */
  --c-bg:          #0a0e1a;
  --c-bg-2:        #0d1221;
  --c-bg-3:        #111827;
  --c-teal:        #00d4aa;
  --c-teal-dim:    #00b591;
  --c-teal-glow:   rgba(0, 212, 170, 0.15);
  --c-teal-glow-sm:rgba(0, 212, 170, 0.08);
  --c-white:       #ffffff;
  --c-text:        #e8edf5;
  --c-text-muted:  #8a94a8;
  --c-text-faint:  #4a5568;
  --c-border:      rgba(255, 255, 255, 0.07);
  --c-border-hover:rgba(0, 212, 170, 0.3);
  --c-card-bg:     rgba(255, 255, 255, 0.03);
  --c-card-bg-hover:rgba(255, 255, 255, 0.055);
  --c-overlay:     rgba(10, 14, 26, 0.7);

  /* Fonts */
  --f-heading: 'Outfit', sans-serif;
  --f-body:    'DM Sans', sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2rem;
  --sp-xl:  3rem;
  --sp-2xl: 5rem;
  --sp-3xl: 7rem;

  /* Layout */
  --max-w:     1200px;
  --max-w-sm:  800px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.18s;
  --dur-med:  0.35s;
  --dur-slow: 0.6s;

  /* Nav */
  --nav-h: 72px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── Grain Overlay ──────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ── Particle Canvas ────────────────────────────────────────── */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  position: relative;
  z-index: 1;
}

/* ── Typography Helpers ─────────────────────────────────────── */
.section-label {
  font-family: var(--f-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-white);
  margin-bottom: var(--sp-lg);
  letter-spacing: -0.02em;
}

.section-heading--sm {
  font-family: var(--f-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-white);
  margin-bottom: var(--sp-md);
  letter-spacing: -0.02em;
}

.desktop-br { display: block; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--f-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  transition: all var(--dur-med) var(--ease-out-expo);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--c-teal);
  color: #0a0e1a;
  box-shadow: 0 0 0 0 var(--c-teal-glow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #00e8bc;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--c-teal-glow), 0 0 0 2px var(--c-teal-dim);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid var(--c-border-hover);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--c-teal);
  color: var(--c-teal);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--c-teal-glow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--c-teal);
  border: 1.5px solid var(--c-teal-dim);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--c-teal-glow-sm);
  border-color: var(--c-teal);
  transform: translateY(-1px);
}

.inline-link {
  color: var(--c-teal);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--dur-fast);
}

.inline-link:hover {
  text-decoration-color: var(--c-teal);
}

/* ── Focus Styles ───────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--c-teal);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Section Base ───────────────────────────────────────────── */
.section {
  padding: var(--sp-3xl) 0;
  position: relative;
  z-index: 1;
}

/* ── Reveal Animations ──────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity var(--dur-slow) var(--ease-out-expo),
    transform var(--dur-slow) var(--ease-out-expo);
  transition-delay: calc(var(--delay, 0) * 80ms);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up--delay {
  transition-delay: 0.18s;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background var(--dur-med) var(--ease-in-out), backdrop-filter var(--dur-med);
}

.nav-header.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--c-border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand-name {
  font-family: var(--f-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.01em;
}

.nav-brand-product {
  font-family: var(--f-heading);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--c-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--f-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-muted);
  padding: 0.5rem 0.875rem;
  border-radius: 100px;
  transition: color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--c-white);
  background: rgba(255,255,255,0.06);
}

.nav-link--cta {
  color: var(--c-teal);
  border: 1.5px solid rgba(0, 212, 170, 0.3);
  margin-left: 0.5rem;
}

.nav-link--cta:hover {
  background: var(--c-teal-glow-sm);
  border-color: var(--c-teal);
  color: var(--c-teal);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast);
  z-index: 10;
}

.nav-hamburger:hover {
  background: rgba(255,255,255,0.06);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all var(--dur-med) var(--ease-out-expo);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.section-hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(0, 212, 170, 0.065) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 30%, rgba(0, 100, 200, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 5rem) clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text {
  max-width: 580px;
}

.hero-eyebrow {
  font-family: var(--f-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--c-teal);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--f-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: 1.5rem;
}

.hero-subline {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--c-text-muted);
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-support {
  font-size: 0.875rem;
  color: var(--c-text-faint);
  font-style: italic;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(0, 212, 170, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  from { opacity: 0.6; transform: scale(0.95); }
  to   { opacity: 1;   transform: scale(1.05); }
}

.hero-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(0, 212, 170, 0.2));
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.hero-scroll-indicator span {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(0,212,170,0.6), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { transform: scaleY(0) translateY(-50%); transform-origin: top; }
  50%  { transform: scaleY(1) translateY(0);    transform-origin: top; }
  100% { transform: scaleY(0) translateY(50%);  transform-origin: bottom; }
}

/* ============================================================
   PAIN POINTS
   ============================================================ */
.section-pain {
  background: linear-gradient(180deg, transparent 0%, var(--c-bg-2) 20%, var(--c-bg-2) 80%, transparent 100%);
}

.section-pain .section-heading {
  max-width: 680px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: var(--sp-xl);
}

.pain-card {
  background: var(--c-card-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--dur-med), background var(--dur-med), transform var(--dur-med) var(--ease-out-expo);
  transition-delay: calc(var(--delay, 0) * 80ms);
}

.pain-card:hover {
  border-color: var(--c-border-hover);
  background: var(--c-card-bg-hover);
  transform: translateY(-3px);
}

.pain-icon {
  width: 44px;
  height: 44px;
  color: var(--c-teal);
  margin-bottom: 1rem;
}

.pain-icon svg {
  width: 100%;
  height: 100%;
}

.pain-title {
  font-family: var(--f-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.pain-body {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

.pain-closing {
  font-size: 1rem;
  color: var(--c-text-muted);
  max-width: 680px;
  line-height: 1.75;
  padding: 1.5rem 0;
  border-top: 1px solid var(--c-border);
}

/* ============================================================
   GUIDE / ORIGIN
   ============================================================ */
.section-guide {
  overflow: hidden;
}

.guide-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.guide-text .section-heading {
  max-width: 560px;
}

.guide-story {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.guide-signoff {
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text);
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
  line-height: 1.6;
}

.guide-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-orb-wrap {
  position: relative;
  width: 280px;
  height: 280px;
}

.guide-orb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  animation: float-orb 6s ease-in-out infinite;
  filter: drop-shadow(0 0 48px rgba(0, 212, 170, 0.3));
}

.guide-orb-ring {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 170, 0.15);
  animation: ring-pulse 4s ease-in-out infinite;
}

.guide-orb-ring::before {
  content: '';
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 170, 0.08);
}

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

@keyframes ring-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.03); }
}

/* ============================================================
   PLAN / STEPS
   ============================================================ */
.section-plan {
  background: linear-gradient(180deg, transparent 0%, var(--c-bg-2) 20%, var(--c-bg-2) 80%, transparent 100%);
}

.section-plan .section-heading {
  max-width: 480px;
}

.steps-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: var(--sp-xl);
}

.step {
  flex: 1;
  padding: 2rem 2rem 2rem 0;
  transition-delay: calc(var(--delay, 0) * 100ms);
}

.step-number {
  font-family: var(--f-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 212, 170, 0.15);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}

.step-title {
  font-family: var(--f-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.step-body {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3.25rem;
  width: 60px;
  flex-shrink: 0;
}

.connector-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(0,212,170,0.4), rgba(0,212,170,0.1));
}

.connector-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-teal);
  margin-top: -4px;
  box-shadow: 0 0 12px var(--c-teal);
}

/* ============================================================
   FEATURES
   ============================================================ */
.section-features {
  position: relative;
  overflow: hidden;
}

.features-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.features-bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  opacity: 0.04;
  pointer-events: none;
}

.features-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--c-bg) 0%, transparent 25%, transparent 75%, var(--c-bg) 100%),
    linear-gradient(90deg, var(--c-bg) 0%, transparent 20%, transparent 80%, var(--c-bg) 100%);
}

.section-features .section-label,
.section-features .section-heading {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--sp-xl);
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(255, 255, 255, 0.032);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: border-color var(--dur-med), background var(--dur-med), transform var(--dur-med) var(--ease-out-expo);
  transition-delay: calc(var(--delay, 0) * 100ms);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,170,0.4), transparent);
  opacity: 0;
  transition: opacity var(--dur-med);
}

.feature-card:hover {
  border-color: var(--c-border-hover);
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--c-teal);
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-family: var(--f-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.feature-body {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* Stats Row */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(0, 212, 170, 0.045);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.stats-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,212,170,0.04), transparent);
}

.stat-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number {
  display: block;
  font-family: var(--f-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--c-teal);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--c-border);
  margin: 0 2rem;
  flex-shrink: 0;
}

/* ============================================================
   VERTICALS
   ============================================================ */
.section-verticals {
  background: linear-gradient(180deg, transparent 0%, var(--c-bg-2) 20%, var(--c-bg-2) 80%, transparent 100%);
}

.section-verticals .section-heading {
  max-width: 680px;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: var(--sp-lg);
}

.vertical-card {
  background: var(--c-card-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: border-color var(--dur-med), background var(--dur-med), transform var(--dur-med) var(--ease-out-expo);
  transition-delay: calc(var(--delay, 0) * 80ms);
}

.vertical-card:hover {
  border-color: var(--c-border-hover);
  background: var(--c-card-bg-hover);
  transform: translateY(-3px);
}

.vertical-icon {
  width: 36px;
  height: 36px;
  color: var(--c-teal);
}

.vertical-icon svg {
  width: 100%;
  height: 100%;
}

.vertical-title {
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.3;
}

.vertical-body {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.verticals-closing {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  font-style: italic;
  padding-top: var(--sp-md);
  border-top: 1px solid var(--c-border);
}

/* ============================================================
   PRICING
   ============================================================ */
.section-pricing .section-heading {
  max-width: 640px;
}

.pricing-subline {
  font-size: 1rem;
  color: var(--c-text-muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: var(--sp-xl);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: var(--sp-lg);
}

.pricing-card {
  background: var(--c-card-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: border-color var(--dur-med), background var(--dur-med);
  transition-delay: calc(var(--delay, 0) * 100ms);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.pricing-card--featured {
  border-color: rgba(0, 212, 170, 0.25);
  background: rgba(0, 212, 170, 0.035);
}

.pricing-card--featured:hover {
  border-color: rgba(0, 212, 170, 0.45);
  background: rgba(0, 212, 170, 0.055);
}

.pricing-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-teal);
  color: #0a0e1a;
  font-family: var(--f-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card-title {
  font-family: var(--f-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.75rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.875rem;
}

.pricing-amount {
  font-family: var(--f-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--c-teal);
  letter-spacing: -0.02em;
}

.pricing-cadence {
  font-size: 0.8rem;
  color: var(--c-text-faint);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.pricing-card-desc {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.check-icon {
  width: 16px;
  height: 16px;
  color: var(--c-teal);
  flex-shrink: 0;
  margin-top: 0.1em;
}

.pricing-cta {
  width: 100%;
  text-align: center;
}

.pricing-footnote {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  max-width: 680px;
  line-height: 1.75;
}

/* ============================================================
   FAQ
   ============================================================ */
.section-faq {
  background: linear-gradient(180deg, transparent 0%, var(--c-bg-2) 20%, var(--c-bg-2) 80%, transparent 100%);
}

.section-faq .section-heading {
  max-width: 480px;
}

.faq-list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 1.75rem;
  font-family: var(--f-heading);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--c-white);
  text-align: left;
  transition: background var(--dur-fast), color var(--dur-fast);
  background: var(--c-card-bg);
  min-height: 56px;
}

.faq-question:hover {
  background: rgba(255,255,255,0.04);
  color: var(--c-teal);
}

.faq-question[aria-expanded="true"] {
  color: var(--c-teal);
  background: rgba(0, 212, 170, 0.04);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--c-text-muted);
  flex-shrink: 0;
  transition: transform var(--dur-med) var(--ease-out-expo), color var(--dur-fast);
}

.faq-question[aria-expanded="true"] .faq-icon {
  color: var(--c-teal);
}

.faq-icon svg {
  width: 100%;
  height: 100%;
}

.faq-answer {
  padding: 0 1.75rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease-out-expo), padding var(--dur-med);
  display: block !important;
}

.faq-answer.open {
  max-height: 500px;
  padding: 0 1.75rem 1.5rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  position: relative;
}

.section-contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-form-wrap {
  max-width: 600px;
}

.contact-subline {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-lg);
  max-width: 520px;
}

/* Form */
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  left: -9999px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-family: var(--f-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: 0.02em;
}

.required-star {
  color: var(--c-teal);
}

.optional-label {
  color: var(--c-text-faint);
  font-weight: 400;
  font-size: 0.75rem;
}

.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--c-white);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
  width: 100%;
  min-height: 48px;
}

.form-input::placeholder {
  color: var(--c-text-faint);
}

.form-input:focus {
  outline: none;
  border-color: var(--c-teal-dim);
  background: rgba(0, 212, 170, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-input.error {
  border-color: #e05a5a;
  box-shadow: 0 0 0 3px rgba(224, 90, 90, 0.12);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a94a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  cursor: pointer;
}

.form-select option {
  background: var(--c-bg-3);
  color: var(--c-text);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-error {
  font-size: 0.775rem;
  color: #e05a5a;
  min-height: 1.2em;
  display: block;
}

/* Timeline options */
.timeline-fieldset {
  border: none;
}

.timeline-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.timeline-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.timeline-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.timeline-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--c-border);
  border-radius: 100px;
  font-family: var(--f-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text-muted);
  transition: all var(--dur-fast);
  min-height: 44px;
  cursor: pointer;
}

.timeline-option input[type="radio"]:checked + .timeline-label {
  border-color: var(--c-teal);
  background: var(--c-teal-glow-sm);
  color: var(--c-teal);
}

.timeline-option:hover .timeline-label {
  border-color: var(--c-border-hover);
  color: var(--c-text);
}

.timeline-option input[type="radio"]:focus-visible + .timeline-label {
  outline: 2px solid var(--c-teal);
  outline-offset: 2px;
}

.timeline-error {
  margin-top: 0.25rem;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  position: relative;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(10,14,26,0.3);
  border-top-color: #0a0e1a;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form success */
.form-success {
  text-align: center;
  padding: 3.5rem 2rem;
  background: rgba(0, 212, 170, 0.04);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: var(--radius-xl);
}

.success-icon {
  width: 56px;
  height: 56px;
  color: var(--c-teal);
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  width: 100%;
  height: 100%;
}

.success-title {
  font-family: var(--f-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.75rem;
}

.success-body {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

/* Book Section */
.book-wrap {
  padding-top: var(--sp-xl);
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.book-body {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-lg);
  max-width: 460px;
}

.buyer-filter {
  background: var(--c-card-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.filter-step {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.filter-question {
  font-family: var(--f-heading);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.5;
}

.filter-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.625rem 1.5rem;
  border: 1.5px solid var(--c-border);
  border-radius: 100px;
  font-family: var(--f-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-muted);
  background: transparent;
  transition: all var(--dur-fast);
  min-height: 44px;
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--c-teal);
  color: var(--c-teal);
  background: var(--c-teal-glow-sm);
}

.filter-btn.selected {
  border-color: var(--c-teal);
  background: var(--c-teal-glow-sm);
  color: var(--c-teal);
}

.filter-outcome {
  animation: fade-in-up var(--dur-slow) var(--ease-out-expo) both;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.outcome-label {
  font-family: var(--f-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.outcome-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}

.outcome-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.outcome-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-teal);
  margin-top: 0.5em;
  flex-shrink: 0;
}

.outcome-alt {
  font-size: 0.8rem;
  color: var(--c-text-faint);
  margin-top: 0.875rem;
  font-style: italic;
}

.filter-outcome--redirect p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--c-border);
  padding: var(--sp-2xl) 0 var(--sp-lg);
  background: var(--c-bg-2);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.footer-brand-name {
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.35rem;
}

.footer-brand-tagline {
  font-size: 0.8rem;
  color: var(--c-text-faint);
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  transition: color var(--dur-fast);
  white-space: nowrap;
  padding: 0.25rem 0;
}

.footer-link:hover {
  color: var(--c-teal);
}

.footer-link--sm {
  font-size: 0.8rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.footer-contact-link {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  transition: color var(--dur-fast);
}

.footer-contact-link:hover {
  color: var(--c-teal);
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: var(--sp-md);
  border-top: 1px solid var(--c-border);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--c-text-faint);
}

.footer-location {
  font-size: 0.8rem;
  color: var(--c-text-faint);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --sp-3xl: 5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-visual {
    max-width: 360px;
    margin: 0 auto;
  }

  .guide-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .guide-visual {
    order: -1;
  }

  .guide-orb-wrap {
    width: 220px;
    height: 220px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .section-contact .container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .book-wrap {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .footer-contact {
    align-items: flex-start;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --sp-3xl: 4rem;
    --sp-2xl: 3rem;
    --sp-xl: 2.5rem;
  }

  .desktop-br { display: none; }

  /* Nav */
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--dur-med) var(--ease-out-expo), transform var(--dur-med) var(--ease-out-expo);
    z-index: 800;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.875rem 2rem;
  }

  .nav-link--cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  /* Hero */
  .hero-headline {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Pain */
  .pain-grid {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps-wrap {
    flex-direction: column;
    gap: 0;
  }

  .step {
    padding: 1.5rem;
    background: var(--c-card-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
  }

  .step-connector {
    flex-direction: row;
    align-items: center;
    padding-top: 0;
    width: auto;
    height: 40px;
    padding-left: 2.5rem;
  }

  .connector-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,212,170,0.4), rgba(0,212,170,0.1));
  }

  .connector-dot {
    margin-top: 0;
    margin-left: -4px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  /* Stats */
  .stats-row {
    flex-direction: column;
    gap: 0;
    padding: 2rem 1.5rem;
  }

  .stat-item {
    padding: 1.25rem 0;
    width: 100%;
    border-bottom: 1px solid var(--c-border);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-divider {
    display: none;
  }

  /* Verticals */
  .verticals-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  /* FAQ */
  .faq-question {
    padding: 1.125rem 1.25rem;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 1.25rem;
  }

  .faq-answer.open {
    padding: 0 1.25rem 1.25rem;
  }

  /* Contact */
  .form-row {
    grid-template-columns: 1fr;
  }

  .section-contact .container {
    gap: 3rem;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Contact form full width */
  .contact-form-wrap {
    max-width: 100%;
  }

  .contact-subline {
    max-width: 100%;
  }

  /* Book section full width */
  .book-wrap {
    max-width: 100%;
  }

  .book-body {
    max-width: 100%;
  }

  /* Pricing footnote full width */
  .pricing-footnote {
    max-width: 100%;
  }

  /* Pain closing full width */
  .pain-closing {
    max-width: 100%;
  }

  /* Guide section text alignment on mobile */
  .guide-text .section-heading {
    max-width: 100%;
  }

  .guide-visual {
    order: -1;
    justify-content: center;
  }

  .guide-orb-wrap {
    width: 180px;
    height: 180px;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.7rem;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .timeline-options {
    flex-direction: column;
  }

  .timeline-label {
    width: 100%;
    justify-content: center;
  }

  .filter-options {
    flex-direction: column;
  }

  .filter-btn {
    width: 100%;
    text-align: center;
  }

  .hero-ctas .btn {
    max-width: 100%;
  }

  .stats-row {
    padding: 1.5rem 1.25rem;
  }

  .buyer-filter {
    padding: 1.5rem;
  }

  .guide-orb-wrap {
    width: 150px;
    height: 150px;
  }

  .pain-card {
    padding: 1.5rem;
  }

  .feature-card {
    padding: 1.75rem 1.5rem;
  }

  .vertical-card {
    padding: 1.5rem;
  }
}

/* Hidden attribute support */
[hidden] {
  display: none !important;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* Prevent image right-click */
img {
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* Re-enable pointer events for links and buttons containing images */
a img, button img {
  pointer-events: auto;
}
