/* =====================================================
   LANDING PAGE — Variant: TERMINAL (Technical Authority)
   Palette: True Black + Phosphor Green + Amber
   Type: JetBrains Mono (headlines + labels) + Inter (body)
   ===================================================== */

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

/* ─── DESIGN TOKENS ──────────────────────────────────── */
:root {
  --black-950: #000000;
  --black-900: #0A0A0A;
  --black-800: #101210;
  --black-700: #161916;
  --black-600: #1D211D;
  --black-500: #262B26;
  --black-400: #333A33;
  --black-300: #464F46;

  --bg:             var(--black-900);
  --bg-card:        var(--black-800);
  --bg-elevated:    var(--black-600);
  --border:         var(--black-400);
  --border-subtle:  rgba(0, 255, 156, 0.12);
  --border-light:   var(--black-300);

  --text:           #E8FFF1;
  --text-secondary: #8FA593;
  --text-muted:     #5C6E5F;
  --text-dimmed:    #3B4A3D;

  --accent:         #00FF9C;
  --accent-dim:     rgba(0, 255, 156, 0.07);
  --accent-mid:     rgba(0, 255, 156, 0.14);
  --accent-border:  rgba(0, 255, 156, 0.28);
  --accent-glow:    rgba(0, 255, 156, 0.4);

  --violet:         #FFB000;
  --violet-dim:     rgba(255, 176, 0, 0.07);
  --violet-border:  rgba(255, 176, 0, 0.22);

  --green:          #00FF9C;
  --green-dim:      rgba(0, 255, 156, 0.07);
  --green-border:   rgba(0, 255, 156, 0.22);

  --amber:          #FFB000;
  --amber-dim:      rgba(255, 176, 0, 0.07);
  --amber-border:   rgba(255, 176, 0, 0.22);

  --grad-brand:     linear-gradient(135deg, var(--accent) 0%, #00C97D 100%);
  --grad-green:     linear-gradient(135deg, var(--green) 0%, #00C97D 100%);
  --grad-text:      linear-gradient(135deg, var(--text) 20%, var(--accent) 100%);

  --max-w:          1100px;
  --radius:         4px;
  --radius-sm:      3px;
  --radius-xs:      2px;

  --shadow-sm:      0 1px 3px rgba(0,0,0,0.5);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.6);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.7);
  --shadow-glow:    0 0 40px rgba(0, 255, 156, 0.22);

  --ease-out:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:     all 0.3s var(--ease-out);
}

/* ─── BASE ────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 255, 156, 0.025) 0px,
    rgba(0, 255, 156, 0.025) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
}
::selection { background: var(--accent); color: var(--black-950); }
a { text-decoration: none; color: inherit; }

/* ─── SCROLL PROGRESS ─────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 500;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--accent-glow);
}

/* ─── NAVIGATION ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 24px;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 24px;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'JetBrains Mono', monospace;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--accent);
}
.nav-brand::before { content: '~/'; color: var(--text-muted); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-links a::before { content: '/'; color: var(--text-dimmed); margin-right: 3px; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  padding: 9px 20px !important;
  border-radius: var(--radius-xs);
  background: var(--accent) !important;
  color: var(--black-950) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  box-shadow: 0 0 22px var(--accent-glow);
}
.nav-cta::before { content: none !important; }
.nav-cta:hover {
  box-shadow: 0 0 36px var(--accent-glow) !important;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  color: var(--accent);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
}
.nav-toggle:hover { border-color: var(--accent); }

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 28px 24px;
    gap: 22px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 130px 24px 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; left: -200px;
  background: radial-gradient(ellipse, rgba(0, 255, 156, 0.05) 0%, transparent 65%);
}
.hero-bg::after { content: none; }
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 255, 156, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 840px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px 7px 10px;
  border-radius: var(--radius-xs);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 36px;
  font-family: 'JetBrains Mono', monospace;
  cursor: default;
}
.hero-badge::before { content: '$'; color: var(--text-muted); margin-right: 2px; }
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: dot-pulse 1.2s step-end infinite;
}
@keyframes dot-pulse {
  0%, 49%  { opacity: 1; }
  50%, 100% { opacity: 0.15; }
}
.hero-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.9rem, 4.8vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.18;
  margin-bottom: 28px;
}
.hero-title .grad {
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: var(--accent);
}
.hero-title::after {
  content: '_';
  color: var(--accent);
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.78;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dimmed);
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ─── STATS STRIP ─────────────────────────────────────── */
.stats-strip {
  background: var(--black-800);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-inner {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.stat-item {
  padding: 44px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: var(--border);
}
.stat-item:hover { background: rgba(0, 255, 156, 0.03); }
.stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
  font-family: 'JetBrains Mono', monospace;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-xs);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--black-950);
  box-shadow: 0 0 28px var(--accent-glow);
}
.btn-primary:hover {
  box-shadow: 0 0 44px var(--accent-glow);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-border);
}
.btn-secondary:hover {
  background: var(--accent-dim);
  border-color: var(--accent-mid);
  transform: translateY(-1px);
}
.btn-large { padding: 18px 44px; font-size: 14px; }

/* ─── SECTIONS ────────────────────────────────────────── */
.section {
  padding: 108px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-dark {
  max-width: 100%;
  padding: 108px 24px;
  background: var(--black-800);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.section-dark > .section-badge,
.section-dark > .section-title,
.section-dark > .section-subtitle,
.section-dark > .problem-list,
.section-dark > .faq-list,
.section-dark > .testimonial-wrap,
.section-dark > .section-quote,
.section-dark > .section-cta {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-xs);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 22px;
  font-family: 'JetBrains Mono', monospace;
}
.section-badge::before { content: '$ ./'; color: var(--text-muted); }
.section-badge.amber {
  background: var(--amber-dim);
  border-color: var(--amber-border);
  color: var(--amber);
}
.section-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.35;
  margin-bottom: 52px;
  max-width: 760px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.75;
}
.section-cta { text-align: center; margin-top: 56px; }
.section-quote {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem;
  color: var(--accent);
  max-width: 660px;
  margin: 48px auto 0;
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  line-height: 1.75;
}
.section-quote::before, .section-quote::after { content: '// '; color: var(--text-dimmed); }

/* ─── CARDS GRID ──────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card:hover::before { opacity: 1; }
.card-icon {
  font-size: 26px;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
  filter: grayscale(1) brightness(1.8) sepia(1) hue-rotate(70deg) saturate(4);
}
.card h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── PROBLEM ─────────────────────────────────────────── */
.problem-list {
  display: flex;
  flex-direction: column;
  max-width: 760px;
}
.problem-item {
  display: flex;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
  cursor: default;
}
.problem-item:last-child { border-bottom: none; }
.problem-item:hover { padding-left: 10px; }
.problem-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.problem-num {
  width: 44px; height: 44px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--accent-border);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.problem-line {
  width: 1px;
  flex: 1;
  min-height: 24px;
  margin-top: 10px;
  background: linear-gradient(to bottom, var(--accent-border), transparent);
}
.problem-item:last-child .problem-line { display: none; }
.problem-body { flex: 1; padding-top: 8px; }
.problem-body h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.problem-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }

/* ─── SOLUTION ────────────────────────────────────────── */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.solution-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: var(--transition);
}
.solution-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.solution-card:hover::after { opacity: 1; }
.solution-check {
  width: 38px; height: 38px;
  border-radius: var(--radius-xs);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
}
.solution-card h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.solution-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ─── TESTIMONIAL ─────────────────────────────────────── */
.testimonial-wrap { max-width: 760px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '>_';
  position: absolute;
  top: 20px; left: 28px;
  font-size: 40px;
  color: var(--accent);
  opacity: 0.12;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 22px;
}
.star { color: var(--amber); font-size: 15px; }
.testimonial-card blockquote {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 30px;
  position: relative;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--border-subtle);
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: var(--radius-xs);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  flex-shrink: 0;
}
.testimonial-name { font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 700; }
.testimonial-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ─── OFFER ───────────────────────────────────────────── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.offer-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.offer-card.featured {
  background: rgba(0, 255, 156, 0.03);
  border-color: var(--accent-border);
}
.offer-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}
.offer-card.featured:hover { box-shadow: var(--shadow-glow); }
.offer-number {
  font-size: 10px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 22px;
  display: block;
}
.offer-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
  filter: grayscale(1) brightness(1.8) sepia(1) hue-rotate(70deg) saturate(4);
}
.offer-card h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}
.offer-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.offer-link {
  display: inline-block;
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}
.offer-link::before { content: './'; color: var(--text-muted); }
.offer-link:hover { text-decoration: underline; }
.urgency {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 176, 0, 0.05);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.urgency-icon { font-size: 20px; flex-shrink: 0; line-height: 1; margin-top: 1px; }
.urgency p { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--amber); font-weight: 500; line-height: 1.6; }
.urgency strong { color: var(--text); font-weight: 700; }

/* ─── FAQ ─────────────────────────────────────────────── */
.faq-list { max-width: 740px; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 20px;
  transition: var(--transition);
}
.faq-question::before { content: '?'; color: var(--accent); margin-right: 4px; }
.faq-question:hover { color: var(--accent); }
.faq-arrow {
  width: 26px; height: 26px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--text-muted);
}
.faq-item.open .faq-question { color: var(--accent); }
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  border-color: var(--accent-border);
  background: var(--accent-dim);
  color: var(--accent);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.85;
  transition: max-height 0.4s var(--ease-out), padding 0.35s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }

/* ─── FINAL CTA ───────────────────────────────────────── */
.section-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 130px 24px;
}
.final-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.final-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 255, 156, 0.08) 0%, transparent 60%);
}
.final-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 255, 156, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.section-final .section-content { position: relative; z-index: 1; }
.section-final .section-title {
  font-family: 'JetBrains Mono', monospace;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.section-final .section-subtitle {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.78;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  padding: 56px 24px 36px;
  border-top: 1px solid var(--border);
  background: var(--black-800);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  margin-bottom: 36px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-brand-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.65;
}
.footer-links-group {
  display: flex;
  gap: 48px;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-col .col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dimmed);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
  font-family: 'JetBrains Mono', monospace;
}
.footer-links-col a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-links-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--text-dimmed);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--accent); }

/* ─── REVEAL ANIMATIONS ───────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal]:nth-child(1) { transition-delay: 0s; }
[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
[data-reveal]:nth-child(3) { transition-delay: 0.2s; }
[data-reveal]:nth-child(4) { transition-delay: 0.3s; }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item + .stat-item::before { top: 0; bottom: auto; left: 25%; right: 25%; width: auto; height: 1px; }
  .solution-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-links-group { gap: 28px; }
}
@media (max-width: 640px) {
  .section { padding: 72px 20px; }
  .section-dark { padding: 72px 20px; }
  .hero { padding: 110px 20px 72px; }
  .hero-title { font-size: 1.7rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions > * { text-align: center; justify-content: center; }
  .cards-grid { grid-template-columns: 1fr; }
  .stat-value { font-size: 2.1rem; }
  .stat-item { padding: 28px 24px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal { justify-content: center; }
}
