/* ═══════════════════════════════════════════════════════════════════
   AI WAYPOINT — Main Stylesheet
   Design System: Command Precision / Signal Intelligence in the Dark
   Reference: mazehq.com (HIGH-FIDELITY)
═══════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  --color-bg:           #0A0F1C;
  --color-text:         #E0E2E8;
  --color-cyan:         #00D4FF;
  --color-teal:         rgb(28, 193, 168);
  --color-violet:       #B400FF;
  --color-slate:        #6B7A8D;
  --color-surface:      rgba(255, 255, 255, 0.04);
  --color-surface-hov:  rgba(255, 255, 255, 0.07);
  --color-border:       rgba(255, 255, 255, 0.2);
  --color-border-sub:   rgba(255, 255, 255, 0.518);
  --color-tag-dim:      rgba(224, 226, 232, 0.5);
  --color-role:         rgba(224, 226, 232, 0.6);
  --color-popup-bg:     rgb(16, 22, 38);

  --badge-red-bg:       rgba(228, 34, 105, 0.08);
  --badge-red-txt:      rgba(255, 139, 141, 0.98);
  --badge-green-bg:     rgba(47, 212, 141, 0.08);
  --badge-green-txt:    rgb(47, 212, 141);
  --badge-blue-bg:      rgba(37, 209, 248, 0.08);
  --badge-blue-txt:     rgb(34, 208, 223);

  --grad-aurora:        conic-gradient(from 90deg, #00D4FF, #B400FF);
  --grad-nav-active:    linear-gradient(90deg, #00D4FF 5%, #B400FF 96%);
  --grad-tag-dot:       linear-gradient(to right, #00D4FF, #B400FF);
  --grad-header-fade:   linear-gradient(#0A0F1C 60%, rgba(10,15,28,0) 100%);

  --dot-primary:        repeating-linear-gradient(
                          to right,
                          rgba(255,255,255,0.518) 0px, rgba(255,255,255,0.518) 1.332px,
                          transparent 1.332px, transparent 8px
                        );
  --dot-secondary:      repeating-linear-gradient(
                          to right,
                          rgb(107,122,141) 0px, rgb(107,122,141) 1.332px,
                          transparent 1.332px, transparent 8px
                        );
  --dot-vertical:       repeating-linear-gradient(
                          rgb(107,122,141) 0px, rgb(107,122,141) 1.332px,
                          transparent 1.332px, transparent 8px
                        );

  --easing:             cubic-bezier(0.5, 0, 0.2, 1);
  --radius:             13.32px;
  --radius-sm:          5.33px;
  --radius-pill:        39.96px;
  --header-h:           50px;
  --timing-hover:       450ms;
  --gap:                26.64px;
  --padding:            36px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }

/* ── CANVAS LAYER ───────────────────────────────────────────────── */
.gfx-canvas-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* ── GRID SYSTEM — 12 COLUMN ────────────────────────────────────── */
.grid-wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--padding);
  position: relative;
  z-index: 1;
}

.col-span-1  { grid-column: span 1; }
.col-span-2  { grid-column: span 2; }
.col-span-3  { grid-column: span 3; }
.col-span-4  { grid-column: span 4; }
.col-span-5  { grid-column: span 5; }
.col-span-6  { grid-column: span 6; }
.col-span-7  { grid-column: span 7; }
.col-span-8  { grid-column: span 8; }
.col-span-9  { grid-column: span 9; }
.col-span-10 { grid-column: span 10; }
.col-span-11 { grid-column: span 11; }
.col-span-12 { grid-column: span 12; }

.col-start-2 { grid-column-start: 2; }
.col-start-3 { grid-column-start: 3; }
.col-start-4 { grid-column-start: 4; }

/* ── TYPOGRAPHY ROLES ───────────────────────────────────────────── */
.typo-lead {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 45.29px;
  letter-spacing: -0.906px;
  line-height: 49.82px;
  color: var(--color-text);
}

.typo-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 26.64px;
  letter-spacing: 0.266px;
  line-height: 29.30px;
  color: var(--color-text);
}

.mono-sm {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  font-size: 15.98px;
  color: rgba(224, 226, 232, 0.7);
  letter-spacing: 0.4px;
}

.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 16px;
}

.stat-source {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  color: rgba(224, 226, 232, 0.35);
  letter-spacing: 0.4px;
  text-decoration: none;
  margin-top: 6px;
  display: block;
  transition: color 0.2s;
}

.stat-source:hover { color: var(--color-cyan); }

.platform-bars-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  color: rgba(224, 226, 232, 0.35);
  letter-spacing: 0.4px;
  margin-bottom: 16px;
  grid-column: span 12;
}

/* ── SCROLL ANIMATION SYSTEM ────────────────────────────────────── */
[data-observe] {
  transition-delay: calc(var(--delay-ms, 0) * 1ms);
}

.is-below {
  opacity: 0;
  translate: 0 79.92px;
  transition: none;
}

.is-in-view {
  opacity: 1;
  translate: 0 0;
  transition:
    opacity 0.8s var(--easing),
    translate 0.8s var(--easing);
}

.is-above {
  opacity: 0;
  transition: opacity 0.3s var(--easing);
}

/* ── DOTTED LINE HELPERS ────────────────────────────────────────── */
.dotted-h {
  height: 1px;
  background: var(--dot-primary);
  width: 100%;
}

/* ── BADGES ─────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.badge-red   { background: var(--badge-red-bg);   color: var(--badge-red-txt);   }
.badge-green { background: var(--badge-green-bg); color: var(--badge-green-txt); }
.badge-blue  { background: var(--badge-blue-bg);  color: var(--badge-blue-txt);  }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: var(--color-text);
  color: var(--color-bg);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18.65px;
  line-height: 18.65px;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-cyan);
  translate: 0 100%;
  transition: translate var(--timing-hover) var(--easing);
  z-index: -1;
}

.btn-primary:hover::before {
  translate: 0 0;
}

.btn-primary .btn-dot,
.btn-nav .btn-dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--grad-aurora);
  flex-shrink: 0;
}

.btn-primary > *:not(::before) {
  position: relative;
  z-index: 1;
}

.btn-primary > span:not(.btn-dot) {
  position: relative;
  z-index: 1;
}

/* Make text inside btn-primary sit above ::before */
.btn-primary {
  isolation: isolate;
}

.btn-basic {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18.65px;
  line-height: 18.65px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-basic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  translate: 0 100%;
  transition: translate var(--timing-hover) var(--easing);
}

.btn-basic:hover::before { translate: 0 0; }

.btn-full { width: 100%; justify-content: center; }

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18.65px;
  line-height: 18.65px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.btn-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  translate: 0 100%;
  transition: translate var(--timing-hover) var(--easing);
  z-index: -1;
}

.btn-nav:hover::before { translate: 0 0; }

.btn-logo {
  height: 18px;
  width: auto;
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION — The Command Bar
═══════════════════════════════════════════════════════════════════ */
.s-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 133px;
  z-index: 8;
  display: flex;
  align-items: center;
}

.s-header__bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 173px;
  background: var(--grad-header-fade);
  z-index: 6;
  pointer-events: none;
}

.s-header__inner {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--padding);
}

/* Logo */
.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* Nav */
.s-header__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17.32px;
  letter-spacing: 0.519px;
  line-height: 17.32px;
  color: var(--color-text);
  white-space: nowrap;
  position: relative;
}

.nav-underline-active {
  position: absolute;
  bottom: -12.8px;
  height: 1px;
  width: 0;
  background: var(--grad-nav-active);
  transition: width 200ms var(--easing), left 200ms var(--easing);
  opacity: 0;
  transition: width 200ms var(--easing), left 200ms var(--easing), opacity 200ms;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO — The Signal Sphere
═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  z-index: 1;
}

/* Top zone: flex:1 + nav offset → alert sits exactly halfway between nav and headline */
.hero-alert-zone {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 80px; /* nav height */
  min-height: 0;
}

.hero-bottom-spacer {
  flex: 0;
  min-height: 0;
}

.hero-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 93.24px;
  padding: 0 13.32px 0 8px;
  height: 45px;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s;
}

.hero-alert:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.25);
}

.alert-dot {
  width: 29.3px;
  height: 29.3px;
  border-radius: 50%;
  background: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alert-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18.65px;
  color: var(--color-text);
}

.alert-arrow { flex-shrink: 0; }

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 77.26px;
  line-height: 69.53px;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 26.64px;
  display: block;
}

.hero-line {
  display: block;
}

.hero-line--bold {
  font-weight: 700;
}

.hero-line--bold .word--plain {
  font-weight: 500;
}

.word {
  display: inline-block;
  margin-right: 0.25em;
}

.word:last-child { margin-right: 0; }

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 26.64px;
  letter-spacing: 0.266px;
  line-height: 29.30px;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-cta { margin-top: 8px; }

/* Hero Clients Strip */
.hero-clients {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 87px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  z-index: 2;
  padding: 0 var(--padding);
}

.client-logo {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  font-size: 15.98px;
  letter-spacing: 0.8px;
  color: rgba(224, 226, 232, 0.35);
}

.client-sep {
  display: block;
  width: 1px;
  height: 30px;
  background: var(--dot-vertical);
}

/* Hero Scroll */
.hero-scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-scroll-text {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 15.98px;
  letter-spacing: 0.4px;
  color: var(--color-slate);
  white-space: nowrap;
}

.hero-scroll::before,
.hero-scroll::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--dot-primary);
}

/* ═══════════════════════════════════════════════════════════════════
   PROGRESS BAR (sticky, shared by Problem + Features sections)
═══════════════════════════════════════════════════════════════════ */
.progress-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  opacity: 0;
  transition: opacity 0.3s var(--easing);
  pointer-events: none;
}

.progress-bar.visible { opacity: 1; }

.prog-seg {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 13.32px;
  letter-spacing: 0.5px;
  color: var(--color-slate);
}

.prog-seg.prog-active { color: var(--color-cyan); }

.prog-line {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--dot-secondary);
}

.prog-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 6px var(--color-cyan);
  position: absolute;
  transition: left 0.4s cubic-bezier(0.5, 0, 0.2, 1),
              top  0.4s cubic-bezier(0.5, 0, 0.2, 1);
  transform: translateY(-50%);
}

/* ═══════════════════════════════════════════════════════════════════
   PROBLEM STATEMENT — The Anxiety Data Wall
═══════════════════════════════════════════════════════════════════ */
.problem {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  background: linear-gradient(to bottom, rgba(10,15,28,0.88) 0px, rgba(13,20,34,0.85) 80px, rgba(13,20,34,0.85) 100%);
}

.problem-item {
  padding: 120px 0;
}

.problem-copy {
  border-left: 2px solid rgba(0, 212, 255, 0.2);
  padding-left: 28px;
}

.problem-copy .typo-lead {
  margin-bottom: 24px;
}

.problem-subtext {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  font-size: 21.31px;
  letter-spacing: 0.639px;
  line-height: 21.31px;
  color: rgba(224,226,232,0.7);
  margin-top: 20px;
}

/* Stat Boxes */
.stat-box {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 19.98px;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 45.29px;
  line-height: 49.82px;
  color: var(--color-text);
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18.65px;
  color: var(--color-text);
}

.stat-chart {
  width: 100%;
  height: 56px;
  margin-top: 16px;
  display: block;
}

.problem-stats-col {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

/* Feature Boxes (Problem Item 2) */
.problem-features-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 19.98px;
}

.feature-num {
  color: var(--color-cyan);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.3px;
  line-height: 1.6;
  color: var(--color-text);
}

/* Problem Transition */
.problem-transition {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0;
}

.problem-transition-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 640px;
}

.prob-logo-mark {
  opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════════════════
   WHAT YOU GET — Consolidated Dashboard
═══════════════════════════════════════════════════════════════════ */
.what-you-get {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 120px 0 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0,212,255,0.055) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(13,20,34,0.85) 0px, rgba(10,15,28,0.82) 80px, rgba(10,15,28,0.82) 100%);
}

.what-you-get::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  font-size: 21.31px;
  letter-spacing: 0.639px;
  line-height: 21.31px;
  color: rgba(224,226,232,0.7);
  margin-top: 16px;
  text-align: center;
}

.section-logo { margin-bottom: 12px; }

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 26.64px;
  letter-spacing: 0.266px;
  line-height: 29.30px;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 60px;
}

/* Step Cards */
.step-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 26.64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 26px;
  background: var(--color-slate);
  color: var(--color-bg);
  border-radius: 2.66px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.3px;
  flex-shrink: 0;
  align-self: flex-start;
}

.step-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--color-cyan);
  letter-spacing: 0.3px;
}

.step-text {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.3px;
  color: rgba(224,226,232,0.75);
}

/* ── Tabbed Dashboard ─────────────────────────────────────── */
.dash-container {
  max-width: 1280px;
  margin: 80px auto 0;
  padding: 0 var(--padding);
}

.dash {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 420px;
}

.dash__tabs {
  background: rgba(0,0,0,0.25);
  padding: 24px 0;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.dash-tablist {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dash-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.4px;
  color: var(--color-slate);
  cursor: pointer;
  border: none;
  background: none;
  text-align: left;
  transition: color var(--timing-hover) var(--easing),
              background var(--timing-hover) var(--easing);
  position: relative;
}

.dash-tab svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity var(--timing-hover) var(--easing);
}

.dash-tab:hover {
  color: var(--color-text);
  background: rgba(255,255,255,0.03);
}

.dash-tab:hover svg { opacity: 0.8; }

.dash-tab.is-active {
  color: var(--color-cyan);
  background: rgba(0,212,255,0.06);
}

.dash-tab.is-active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--color-cyan);
}

.dash-tab.is-active svg {
  opacity: 1;
  color: var(--color-cyan);
}

.dash__body {
  padding: 36px;
}

.dash-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.dash-panel.is-active {
  display: grid;
}

.dash-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.dash-note {
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.dash-card {
  /* inherits .fdc styles */
}

/* ── Differentiator Strip ──────────────────────────────────── */
.diff-strip {
  padding: 60px 0 80px;
}

.diff-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color var(--timing-hover) var(--easing);
}

.diff-item:hover {
  border-color: rgba(0,212,255,0.15);
}

.diff-icon {
  flex-shrink: 0;
}

.diff-text {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.3px;
  color: rgba(224,226,232,0.7);
}

/* ═══════════════════════════════════════════════════════════════════
   FEATURES — Shared Feature Styles
═══════════════════════════════════════════════════════════════════ */
.feature-body {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.4px;
  line-height: 1.65;
  color: rgba(224,226,232,0.75);
}

/* Feature Data Card (fdc) */
.fdc {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 26.64px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fdc-hdr {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 13.32px;
  letter-spacing: 0.6px;
  color: var(--color-slate);
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.fdc-your-score-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 4px;
}

.fdc-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  font-size: 13px;
  color: var(--color-slate);
}

.fdc-score {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 36px;
  color: var(--color-cyan);
}

.fdc-divider {
  height: 1px;
  background: var(--dot-secondary);
}

.fdc-bar-track {
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  flex: 1;
}

.fdc-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, rgba(0,212,255,0.6), rgba(0,212,255,0.9));
  border-radius: 3px;
  transition: width 1.2s var(--easing);
}

.fdc-bar-fill.animated { width: var(--pct); }
.fdc-bar-you { background: linear-gradient(to right, var(--color-cyan), var(--color-cyan)); }

.fdc-comp-row {
  display: grid;
  grid-template-columns: 100px 1fr 36px;
  align-items: center;
  gap: 10px;
}

.fdc-comp-name {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  font-size: 13px;
  color: var(--color-slate);
}

.fdc-comp-pct {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 13px;
  color: var(--color-text);
  text-align: right;
}

.fdc-alert-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 10px 12px;
  background: var(--color-popup-bg);
  border-radius: var(--radius-sm);
}

.fdc-alert-msg {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  font-size: 13px;
  color: rgba(224,226,232,0.7);
}

.fdc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

/* Checklist */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.check-num {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 13.32px;
  color: var(--color-slate);
  min-width: 24px;
}

.check-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text);
  flex: 1;
}

.check-mark {
  font-size: 14px;
  color: var(--badge-green-txt);
  font-weight: 600;
}

/* (features-extra removed — replaced by .diff-strip) */

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS — The Trust Carousel
═══════════════════════════════════════════════════════════════════ */
.testimonials {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  border-top: none;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto 32px;
  padding: 0 var(--padding);
}

.slider-btn {
  width: 80px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.slider-btn:hover svg path { stroke: var(--color-cyan); }

.controls-dotline {
  flex: 1;
  height: 1px;
  background: var(--dot-primary);
}

.testimonials-swiper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--padding);
  overflow: visible;
}

.testimonials-swiper .swiper-wrapper {
  padding-bottom: 8px;
}

/* Quote Cards */
.quote-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 26.64px 21.31px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  width: 522px;
  min-height: 394px;
}

.quote-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-text);
  flex: 1;
}

.quote-divider {
  height: 1px;
  background: var(--dot-secondary);
}

.quote-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-name {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text);
}

.quote-role {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  font-size: 13.32px;
  letter-spacing: 0.4px;
  color: var(--color-role);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════════
   PRICING — The Tier Board
═══════════════════════════════════════════════════════════════════ */
.pricing {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  border-top: none;
}

.pricing-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 26.64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid transparent;
}

.pricing-card--pop {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.06);
}

.tier-popular {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: -4px;
}

.tier-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 13.32px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-role);
}

.tier-price {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 45.29px;
  color: var(--color-text);
  line-height: 1;
}

.tier-per {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  font-size: 15.98px;
  letter-spacing: 0.4px;
  color: rgba(224,226,232,0.5);
}

.tier-divider {
  height: 1px;
  background: var(--dot-secondary);
}

.tier-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

.tier-features li {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  font-size: 17.32px;
  color: var(--color-text);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-tag-dot);
}

/* ═══════════════════════════════════════════════════════════════════
   FAQ — The Signal Clarifier
═══════════════════════════════════════════════════════════════════ */
.faq-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 120px 0;
  background: linear-gradient(to bottom, rgba(10,15,28,0.88) 0px, rgba(13,20,34,0.85) 80px, rgba(13,20,34,0.85) 100%);
}

.faq-section::after {
  content: '';
  position: absolute;
  top: -100px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(180,0,255,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.faq-section .typo-lead {
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
}

.faq-q span {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--color-text);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  transition: rotate 0.3s var(--easing);
}

.faq-item.open .faq-icon {
  rotate: 45deg;
}

.faq-ans {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.6s var(--easing);
}

.faq-item.open .faq-ans {
  grid-template-rows: 1fr;
}

.faq-ans-inner {
  min-height: 0;
  overflow: hidden;
  padding-bottom: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  font-size: 17.32px;
  color: rgba(224,226,232,0.8);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════
   CTA BANNER — The Final Signal
═══════════════════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,   rgba(0,212,255,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 100%,  rgba(180,0,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%,  rgba(0,212,255,0.05) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(13,20,34,0.85) 0px, rgba(10,15,28,0.82) 80px, rgba(10,15,28,0.82) 100%);
}


.cta-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 66.60px;
  line-height: 1.05;
  color: var(--color-text);
  text-align: center;
}

.cta-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: 0.1px;
  color: rgba(224,226,232,0.75);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-sub--lead {
  font-weight: 500;
  font-size: 21px;
  color: rgba(224,226,232,0.92);
}

.cta-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* CTA Logo Reveal — scroll-driven emergence, managed by initLogoReveal() */
#cta-logo-reveal {
  display: block;
  width: 220px;
  height: auto;
  margin-top: 80px;
  opacity: 0;
  transform: scale(0);
  transform-origin: center center;
  filter: blur(0px) drop-shadow(0 0 0px #00D4FF);
  will-change: opacity, transform, filter;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER — The Grid Base
═══════════════════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}

.footer-top {
  padding-top: 80px;
  padding-bottom: 36px;
}

.footer-top .col-span-12 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.footer-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 31.97px;
  color: var(--color-text);
  line-height: 1.2;
}

.footer-rule {
  height: 1px;
  background: rgba(255,255,255,0.07);
  max-width: calc(1280px - 72px);
  margin: 0 auto;
}

.footer-inner {
  padding-top: 24px;
  padding-bottom: 24px;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17.32px;
  color: var(--color-text);
  transition: color 0.2s;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--color-slate);
  letter-spacing: 0.2px;
}

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

.footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.footer-li { display: flex; align-items: center; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile & Tablet
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .col-span-3.stat-box { grid-column: span 6; }
  .col-span-4.step-card { grid-column: span 6; }
  .col-span-4.step-card:last-child { grid-column: span 12; }
  .col-span-3.diff-item { grid-column: span 6; }

  .dash { grid-template-columns: 200px 1fr; }
  .dash-panel { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 48px; line-height: 44px; }
  .hero-subtitle { font-size: 20px; }
  .typo-lead { font-size: 32px; line-height: 36px; letter-spacing: -0.4px; }
  .cta-title { font-size: 42px; }

  .s-header__nav { display: none; }
  .s-header__inner { justify-content: space-between; }

  [class*="col-span-"] { grid-column: span 12 !important; }
  .col-start-3 { grid-column-start: 1 !important; }

  .platform-bar-row { grid-template-columns: 120px 1fr 40px; }

  .hero-alert { max-width: calc(100vw - 48px); }
  .alert-text { font-size: 14px; }

  .testimonials-swiper .swiper-slide { width: 85vw; }

  /* Dashboard responsive */
  .dash { grid-template-columns: 1fr; }
  .dash__tabs {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
  }
  .dash-tablist {
    flex-direction: row;
    overflow-x: auto;
    padding: 0 16px;
    gap: 0;
  }
  .dash-tab {
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 12px;
  }
  .dash-tab.is-active::before {
    left: 0; right: 0;
    top: auto; bottom: 0;
    width: auto; height: 2px;
  }
  .dash__body { padding: 24px; }
  .dash-panel.is-active { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 38px; line-height: 36px; }
  .grid-wrap { padding: 0 20px; gap: 16px; }
  .fdc-comp-row { grid-template-columns: 80px 1fr 32px; }
  .dash-container { padding: 0 20px; }
}

/* ═══════════════════════════════════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════════════════════════════════ */
.products-section {
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

.products-header {
  margin-bottom: 16px;
  text-align: center;
}

.products-header .section-eyebrow {
  margin-bottom: 12px;
}

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color var(--timing-hover) var(--easing),
              background var(--timing-hover) var(--easing);
}

.product-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  background: var(--color-surface-hov);
}

.product-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-cyan);
  text-transform: uppercase;
}

.product-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

.product-body {
  font-size: 15px;
  color: var(--color-slate);
  line-height: 1.75;
  flex: 1;
}

.product-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════════
   WHO IT'S FOR SECTION
═══════════════════════════════════════════════════════════════════ */
.for-section {
  padding: 80px 0 100px;
  position: relative;
  z-index: 1;
}

.for-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.for-inner .section-eyebrow {
  margin-bottom: 14px;
}

.for-body {
  font-size: 17px;
  color: var(--color-slate);
  line-height: 1.8;
  margin-top: 20px;
}

/* ═══════════════════════════════════════════════════════════════════
   NAV LINKS — muted, brighten on hover
═══════════════════════════════════════════════════════════════════ */
.s-header__nav .nav-link {
  color: rgba(224, 226, 232, 0.6);
  transition: color 200ms var(--easing);
}
.s-header__nav .nav-link:hover {
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO EYEBROW BADGE
═══════════════════════════════════════════════════════════════════ */
.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  margin-bottom: 28px;
  background: rgba(62, 207, 171, 0.08);
  border: 1px solid rgba(62, 207, 171, 0.28);
  border-radius: var(--radius-pill);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(62, 207, 171, 0.95);
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ecfab;
  box-shadow: 0 0 10px rgba(62, 207, 171, 0.8);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO ACCENT (gradient text)
═══════════════════════════════════════════════════════════════════ */
.hero-accent {
  background: linear-gradient(90deg, #a89dff 0%, #3ecfab 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ═══════════════════════════════════════════════════════════════════
   GRADIENT BUTTON (hero CTA)
═══════════════════════════════════════════════════════════════════ */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #a89dff 0%, #3ecfab 100%);
  color: #0A0F1C;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18.65px;
  line-height: 18.65px;
  box-shadow:
    0 8px 24px rgba(168, 157, 255, 0.35),
    0 4px 18px rgba(62, 207, 171, 0.28);
  transition: transform 200ms var(--easing), box-shadow 200ms var(--easing);
  cursor: pointer;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 32px rgba(168, 157, 255, 0.5),
    0 6px 24px rgba(62, 207, 171, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO TRUST STRIP — checkmarks under CTA
═══════════════════════════════════════════════════════════════════ */
.hero-trust-strip {
  margin-top: 22px;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14.5px;
  color: rgba(224, 226, 232, 0.78);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-check {
  color: #3ecfab;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════
   STATS STRIP — proof band under hero
═══════════════════════════════════════════════════════════════════ */
.stats-strip {
  position: relative;
  z-index: 1;
  padding: 40px 0;
  background: rgba(62, 207, 171, 0.035);
  border-top: 1px solid rgba(62, 207, 171, 0.15);
  border-bottom: 1px solid rgba(62, 207, 171, 0.15);
}

.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.stat-cell {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.stat-cell + .stat-cell::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-num {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1;
  background: linear-gradient(90deg, #a89dff 0%, #3ecfab 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.8px;
  color: var(--color-slate);
}

/* ═══════════════════════════════════════════════════════════════════
   PROCESS SECTION — 3-step how it works
═══════════════════════════════════════════════════════════════════ */
.process-section {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
}

.process-header {
  text-align: center;
  margin-bottom: 48px;
}

.process-header .section-eyebrow {
  margin-bottom: 14px;
}

.process-card {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--process-accent, #fff);
}

.process-card--purple { --process-accent: #a89dff; }
.process-card--teal   { --process-accent: #3ecfab; }
.process-card--coral  { --process-accent: #ff7a6b; }

.process-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 1.2px;
  color: var(--process-accent);
  margin-bottom: 18px;
}

.process-kicker {
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: 1.6px;
  color: var(--color-slate);
  margin-bottom: 10px;
}

.process-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 14px;
}

.process-body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-slate);
}

/* ── RESPONSIVE: stack product cards on mobile ───────────────── */
@media (max-width: 768px) {
  .product-card { grid-column: span 12; }
  .products-header { grid-column: span 12; }
  .for-inner { grid-column: span 12; }

  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-cell + .stat-cell::before { display: none; }
  .stat-num { font-size: 32px; }

  .process-card { grid-column: span 12; }
  .process-header { grid-column: span 12; }
}
