/* Cover My SaaS — Retro Terminal + Bright Orange Design System
   Dark bg (#0a0a0f), bright orange accent (#FF6B00), Space Grotesk + JetBrains Mono */

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

body {
  background: #0a0a0f;
  color: #e8e6f0;
  font-family: 'Space Grotesk', 'DM Sans', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── ORANGE COLOR VARIABLES ── */
:root {
  --bg:          #0a0a0f;
  --bg-card:     #0f0f17;
  --bg-elev:     #141420;
  --bg-border:   #1c1c2e;
  --fg:          #e8e6f0;
  --fg-muted:    #8888aa;
  --fg-dim:      #4a4a66;

  --orange:       #FF6B00;
  --orange-light: #FF8533;
  --orange-dim:   rgba(255, 107, 0, 0.12);
  --orange-glow:  rgba(255, 107, 0, 0.3);
  --orange-bg:    rgba(255, 107, 0, 0.06);

  --font-mono:    'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  --font-body:    'Space Grotesk', 'DM Sans', system-ui, sans-serif;
  --radius:       10px;
  --radius-sm:    6px;
  --container:    1200px;
}

/* ── SCANLINES — hero only ── */
.scanlines { position: relative; }
.scanlines::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  border-radius: inherit;
}

/* ── GLOW UTILITIES ── */
.glow-orange { text-shadow: 0 0 12px rgba(255,107,0,0.5), 0 0 30px rgba(255,107,0,0.2); }
.glow-white  { text-shadow: 0 0 20px rgba(255,255,255,0.08); }

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
  font-family: var(--font-mono);
}

.heading-2xl {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--fg);
}
.heading-xl {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--fg);
}
.heading-lg {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--fg);
}
.body-lg  { font-size: 1.0625rem;  color: var(--fg-muted); line-height: 1.75; }
.body-md  { font-size: 0.9375rem;  color: var(--fg-muted); line-height: 1.7; }
.body-sm  { font-size: 0.875rem;   color: var(--fg-dim);   line-height: 1.65; }
.mono-sm  { font-family: var(--font-mono); font-size: 0.875rem; }

/* Orange highlights */
.hl-orange   { color: var(--orange); }
.hl-orange-l  { color: var(--orange-light); }
.hl-muted     { color: var(--fg-muted); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--orange);
  color: #0a0a0f;
  box-shadow: 0 0 14px rgba(255,107,0,0.35), 0 4px 20px rgba(255,107,0,0.2);
}
.btn-primary:hover {
  background: var(--orange-light);
  box-shadow: 0 0 24px rgba(255,107,0,0.5), 0 6px 30px rgba(255,107,0,0.25);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--fg-muted);
  border: 1.5px solid var(--bg-border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 10px var(--orange-dim);
}
.btn-ghost {
  background: transparent;
  color: var(--fg-muted);
  border: 1.5px solid var(--bg-border);
}
.btn-ghost:hover {
  border-color: #3a3a55;
  color: var(--fg);
}
.btn-sm  { padding: 7px 14px;  font-size: 0.8rem; }
.btn-lg  { padding: 14px 30px; font-size: 0.9rem;  }
.btn-xl  { padding: 16px 38px; font-size: 0.95rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--bg-border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fg);
}
.nav-logo .logo-icon {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255,107,0,0.4);
}
.nav-wordmark { letter-spacing: -0.01em; }
.nav-wordmark span { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--fg); background: var(--bg-elev); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -5%;
  width: 65%;
  height: 85%;
  background: radial-gradient(ellipse at center, rgba(255,107,0,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 6px var(--orange);
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.hero-headline { margin-bottom: 20px; }
.hero-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-sub strong { color: var(--fg); font-weight: 600; }
.hero-actions { margin-bottom: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-proof span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--fg-dim);
  font-weight: 500;
}
.hero-proof svg { color: var(--orange); flex-shrink: 0; }

/* ── TERMINAL WINDOW ── */
.hero-visual { position: relative; z-index: 1; }
.terminal-window {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255,107,0,0.06), 0 24px 80px rgba(0,0,0,0.5);
}
.terminal-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--bg-border);
}
.terminal-titlebar-dots { display: flex; gap: 6px; }
.terminal-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.terminal-dot.red    { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green  { background: #28c840; }
.terminal-title {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--fg-dim);
  text-align: center;
}
.terminal-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--orange);
}
.terminal-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 5px var(--orange);
  animation: blink 1.4s ease-in-out infinite;
}
.terminal-body {
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.7;
}
.terminal-line {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  align-items: flex-start;
}
.terminal-prompt { color: var(--orange); flex-shrink: 0; font-weight: 700; }
.terminal-cmd    { color: var(--fg); }
.terminal-output { color: var(--fg-muted); }
.terminal-output.orange  { color: var(--orange); }
.terminal-output.warn   { color: #f5c842; }
.terminal-output.bad    { color: #ff503c; }
.terminal-output.ok     { color: #00ff88; }
.terminal-output.accent { color: var(--orange); }

.terminal-divider {
  border: none;
  border-top: 1px solid var(--bg-border);
  margin: 14px 0;
}
.terminal-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--font-mono);
}
.terminal-label.orange { color: var(--orange); }
.terminal-label.red    { color: #ff503c; }

.terminal-digest-card {
  background: var(--bg-elev);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 8px;
}
.terminal-digest-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid var(--bg-border);
  background: rgba(255,107,0,0.04);
}
.terminal-digest-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
}
.terminal-digest-date {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--fg-dim);
}
.terminal-digest-items { padding: 8px; }
.terminal-digest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}
.terminal-digest-item:last-child { margin-bottom: 0; }
.terminal-digest-item.bad  { background: rgba(255,80,60,0.08); border: 1px solid rgba(255,80,60,0.2); }
.terminal-digest-item.warn { background: rgba(245,200,66,0.08); border: 1px solid rgba(245,200,66,0.2); }
.terminal-digest-item.ok   { background: rgba(0,255,136,0.06); border: 1px solid rgba(0,255,136,0.15); }

.digest-icon {
  width: 22px; height: 22px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}
.bad  .digest-icon { background: rgba(255,80,60,0.12); color: #ff503c; }
.warn .digest-icon { background: rgba(245,200,66,0.1); color: #f5c842; }
.ok   .digest-icon { background: rgba(0,255,136,0.1); color: #00ff88; }

.terminal-digest-info { flex: 1; min-width: 0; }
.terminal-digest-name { font-size: 0.8rem; font-weight: 600; color: var(--fg); }
.terminal-digest-meta  { font-size: 0.65rem; color: var(--fg-dim); font-family: var(--font-mono); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.terminal-digest-cost {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fg);
  white-space: nowrap;
}
.terminal-digest-badge {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  white-space: nowrap;
}
.bad  .terminal-digest-badge { background: rgba(255,80,60,0.12); color: #ff503c; }
.warn .terminal-digest-badge { background: rgba(245,200,66,0.1); color: #f5c842; }
.ok   .terminal-digest-badge { background: rgba(0,255,136,0.1); color: #00ff88; }

.terminal-digest-footer {
  padding: 8px 12px;
  border-top: 1px solid var(--bg-border);
  background: rgba(255,107,0,0.03);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--orange);
  text-align: center;
}

/* ── CONTAINER ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 32px; }

/* ── SOCIAL PROOF BAR ── */
.social-proof {
  background: var(--bg-card);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  padding: 28px 0;
}
.social-proof-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.social-proof-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--fg-dim);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.social-proof-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-logo {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fg-dim);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.proof-logo:hover { color: var(--fg-muted); }

/* ── HOW IT WORKS ── */
.how {
  padding: 100px 0;
  background: var(--bg);
}
.how-header { text-align: center; margin-bottom: 64px; }
.how-header .body-lg { margin-top: 10px; max-width: 540px; margin-left: auto; margin-right: auto; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  opacity: 0;
  transition: opacity 0.2s;
}
.step-card:hover {
  border-color: rgba(255,107,0,0.3);
  box-shadow: 0 0 30px rgba(255,107,0,0.05), 0 8px 30px rgba(0,0,0,0.3);
}
.step-card:hover::before { opacity: 1; }
.step-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 18px;
  display: block;
}
.step-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--orange-bg);
  border: 1px solid rgba(255,107,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-icon svg { width: 22px; height: 22px; }
.step-icon svg { stroke: var(--orange); }
.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-desc { font-family: 'Space Grotesk', sans-serif; font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.7; }

/* ── PROBLEM SECTION ── */
.problem {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--bg-border);
}
.problem-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-headline { margin: 14px 0 24px; }
.problem-body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.problem-wastes {
  margin-top: 0;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}
.problem-waste-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--bg-border);
  transition: background 0.15s;
}
.problem-waste-item:last-child { border-bottom: none; }
.problem-waste-item:hover { background: var(--bg-elev); }
.problem-waste-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,80,60,0.1);
  border: 1px solid rgba(255,80,60,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  color: #ff503c;
}
.problem-waste-text { flex: 1; min-width: 0; }
.problem-waste-title { font-family: var(--font-mono); font-size: 0.82rem; font-weight: 600; color: var(--fg); margin-bottom: 2px; }
.problem-waste-desc  { font-family: var(--font-mono); font-size: 0.72rem; color: var(--fg-dim); }
.problem-waste-cost {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ff503c;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  text-shadow: 0 0 8px rgba(255,80,60,0.25);
}

.problem-big-stat {
  background: var(--bg-elev);
  border: 1px solid var(--bg-border);
  border-radius: 16px;
  padding: 52px 40px;
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.problem-big-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,107,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.big-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 6.5rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--orange);
  text-shadow: 0 0 40px rgba(255,107,0,0.35), 0 0 80px rgba(255,107,0,0.12);
}
.big-stat-val sup { font-size: 2.8rem; font-weight: 700; vertical-align: super; }
.big-stat-label {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-top: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.problem-quote {
  background: var(--bg-elev);
  border: 1px solid var(--bg-border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 24px;
}
.problem-quote-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: var(--fg);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 8px;
}
.problem-quote-attr {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--fg-dim);
}
.problem-stat-body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ── PLATFORMS ── */
.platforms {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--bg-border);
}
.platforms-header { text-align: center; margin-bottom: 56px; }
.platforms-header .body-lg { margin-top: 10px; max-width: 500px; margin-left: auto; margin-right: auto; }

.platform-category {
  margin-bottom: 36px;
}
.platform-category-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.platform-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bg-border);
}
.platform-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.platform-chip {
  padding: 9px 18px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: all 0.18s;
}
.platform-chip:hover {
  border-color: var(--orange);
  background: var(--orange-bg);
  color: var(--orange);
  box-shadow: 0 0 10px rgba(255,107,0,0.1);
  transform: translateY(-1px);
}

.platforms-tagline {
  text-align: center;
  margin-top: 48px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
}

/* ── ROI CALCULATOR ── */
.roi {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--bg-border);
}
.roi-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.roi-header { text-align: center; margin-bottom: 56px; }
.roi-header .body-lg { margin-top: 10px; }
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.roi-card {
  background: var(--bg-elev);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.roi-card-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 8px;
}
.roi-card-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}
.roi-card-val.orange { color: var(--orange); text-shadow: 0 0 20px rgba(255,107,0,0.25); }
.roi-card-sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--fg-dim);
}
.roi-examples {
  background: var(--bg-elev);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.roi-examples-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.roi-example-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-border);
}
.roi-example-item:last-child { border-bottom: none; }
.roi-example-name { flex: 1; font-family: var(--font-mono); font-size: 0.875rem; color: var(--fg-muted); }
.roi-example-cost {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: #ff503c;
}
.roi-example-total {
  background: var(--orange-bg);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.roi-example-total-label {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.roi-example-total-val {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  text-shadow: 0 0 12px rgba(255,107,0,0.4);
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--bg-border);
}
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: rgba(255,107,0,0.25); }
.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: 'Space Grotesk', sans-serif;
}
.testimonial-quote::before {
  content: '"';
  font-family: var(--font-mono);
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--orange-bg);
  border: 1px solid rgba(255,107,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
}
.testimonial-meta { flex: 1; }
.testimonial-name { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 700; color: var(--fg); }
.testimonial-role { font-family: var(--font-mono); font-size: 0.72rem; color: var(--fg-dim); }

/* ── PRICING ── */
.pricing {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--bg-border);
}
.pricing-header { text-align: center; margin-bottom: 52px; }
.pricing-header .body-lg { margin-top: 10px; }
.pricing-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pricing-card {
  background: var(--bg-elev);
  border: 1.5px solid var(--bg-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pricing-card:hover { border-color: rgba(255,107,0,0.3); box-shadow: 0 0 30px rgba(255,107,0,0.04); }
.pricing-card-featured {
  background: linear-gradient(160deg, #111120 0%, #0d0d18 100%);
  border-color: var(--orange);
  box-shadow: 0 0 50px rgba(255,107,0,0.1), 0 24px 70px rgba(0,0,0,0.4);
}
.pricing-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #0a0a0f;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 14px rgba(255,107,0,0.45);
}
.pricing-tier {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 8px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.pricing-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--fg);
  line-height: 1;
}
.pricing-card-featured .pricing-amount {
  color: var(--orange);
  text-shadow: 0 0 25px rgba(255,107,0,0.35);
}
.pricing-period {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--fg-dim);
  font-weight: 500;
}
.pricing-tagline {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--fg-dim);
  margin-bottom: 22px;
  line-height: 1.5;
}
.pricing-card-featured .pricing-tagline { color: var(--fg-muted); }
.pricing-divider { height: 1px; background: var(--bg-border); margin-bottom: 20px; }
.pricing-card-featured .pricing-divider { background: rgba(255,107,0,0.15); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.45;
}
.pricing-features li svg { flex-shrink: 0; margin-top: 2px; }
.pricing-roi-note {
  background: var(--orange-bg);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 600;
  line-height: 1.55;
}
.pricing-card-featured .pricing-roi-note {
  background: rgba(255,107,0,0.09);
  border-color: rgba(255,107,0,0.3);
}
.pricing-cta .btn-primary { background: var(--orange); color: #0a0a0f; }
.pricing-cta .btn-primary:hover { background: var(--orange-light); }
.pricing-cta .btn-outline { border-color: var(--bg-border); color: var(--fg-muted); }
.pricing-cta .btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ── FAQ ── */
.faq {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--bg-border);
}
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(255,107,0,0.3); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-toggle {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--bg-elev);
  border: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.faq-item.open .faq-toggle {
  background: var(--orange-bg);
  border-color: rgba(255,107,0,0.3);
  transform: rotate(45deg);
}
.faq-toggle svg { stroke: var(--fg-dim); transition: stroke 0.2s; }
.faq-item.open .faq-toggle svg { stroke: var(--orange); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner {
  padding: 0 22px 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--bg-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta .heading-xl { margin-bottom: 16px; }
.final-cta .body-lg { margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.final-cta-actions { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ── SECURITY ── */
.security {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--bg-border);
}
.security-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 8px;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.security-headline { font-size: 1.4rem; margin-bottom: 14px; }
.security-body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.security-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.security-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-elev);
  border: 1px solid var(--bg-border);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg-muted);
}
.security-chip svg { color: var(--orange); flex-shrink: 0; }

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--bg-border);
  padding: 40px 0 24px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  border-bottom: 1px solid var(--bg-border);
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline { font-family: var(--font-mono); font-size: 0.75rem; color: var(--fg-dim); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--fg-dim);
  font-weight: 500;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--fg-muted); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--fg-dim);
}
.footer-bottom a { color: var(--fg-dim); transition: color 0.15s; }
.footer-bottom a:hover { color: var(--fg-muted); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { opacity: 0; animation: fadeUp 0.65s ease forwards; }
.animate-fade-up:nth-child(1) { animation-delay: 0.08s; }
.animate-fade-up:nth-child(2) { animation-delay: 0.2s; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner    { gap: 56px; }
  .problem-inner { gap: 56px; }
  .security-inner { grid-template-columns: 1fr; gap: 32px; }
  .roi-grid      { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 900px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 0; }
  .hero-visual   { display: none; }
  .hero-sub      { max-width: 100%; }
  .numbers-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .numbers-div   { display: none; }
  .numbers-cell  { padding: 0; }
  .problem-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps         { grid-template-columns: 1fr; gap: 16px; }
  .step-card     { padding: 24px; }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner  { flex-direction: column; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 640px) {
  .hero { padding-top: 85px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 10px; }
  .numbers-inner { grid-template-columns: 1fr; gap: 24px; }
  .big-stat-val { font-size: 4.5rem; }
  .problem-big-stat { padding: 32px 24px; }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .final-cta-actions .btn { width: 100%; justify-content: center; }
  .nav-right .nav-link { display: none; }
  .nav-right .btn { display: flex; }
  .pricing-grid { max-width: 100%; }
  .security-inner { padding: 0 20px; }
  .security-chips { gap: 6px; }
  .testimonials-grid { padding: 0 20px; }
  .faq-list { padding: 0 20px; }
}