/* ==========================================================================
   Radhi Woul — Marketing Site Design System
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* 1. Tokens                                                               */
/* ---------------------------------------------------------------------- */
:root {
  /* Dark surface scale */
  --void:        #050704;
  --void-2:      #080b07;
  --void-3:      #0c100c;
  --panel-dark:  #10140f;

  /* Glass (on dark) */
  --glass:        rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.10);
  --glass-border-strong: rgba(255, 255, 255, 0.18);

  /* Text on dark */
  --ink-0: #f6f8f5;
  --ink-1: #c3c9c0;
  --ink-2: #868d82;
  --ink-3: #565c53;

  /* Text on light */
  --coal-0: #12140f;
  --coal-1: #4b5147;
  --coal-2: #767c71;
  --coal-3: #9ba095;

  /* Light surface scale */
  --paper:        #fbfbf9;
  --paper-raised: #ffffff;
  --paper-sunken: #f3f4ef;
  --paper-border: #e6e8e1;

  /* Brand: green (primary) */
  --green-300: #7fe0a3;
  --green-400: #4fce80;
  --green-500: #229a56;
  --green-600: #16803f;
  --green-700: #0f6631;
  --green-glow: rgba(34, 154, 86, 0.35);

  /* Brand: orange (accent / vendor) */
  --orange-300: #ffc48a;
  --orange-400: #ff9f4d;
  --orange-500: #f2790f;
  --orange-600: #c9600a;
  --orange-glow: rgba(242, 121, 15, 0.32);

  /* Status */
  --blue-500: #3b82f6;
  --violet-500: #8b5cf6;
  --red-500: #ef4a4a;
  --yellow-500: #eab308;

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  /* Shadows (light sections) */
  --shadow-xs: 0 1px 2px rgba(20, 24, 18, 0.05);
  --shadow-sm: 0 2px 8px rgba(20, 24, 18, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 24, 18, 0.08);
  --shadow-lg: 0 24px 64px -12px rgba(20, 24, 18, 0.18);
  --shadow-xl: 0 32px 80px -16px rgba(20, 24, 18, 0.24);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-sm: 0.2s;
  --dur-md: 0.45s;
  --dur-lg: 0.8s;

  --container: 1216px;
  --gutter: clamp(20px, 5vw, 48px);
}

/* ---------------------------------------------------------------------- */
/* 2. Reset                                                                */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--coal-0);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01' on, 'cv05' on;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
input { font: inherit; }

::selection { background: var(--green-500); color: #fff; }

/* Focus visibility, accessible */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------------- */
/* 3. Layout helpers                                                      */
/* ---------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { position: relative; padding-block: clamp(72px, 10vw, 132px); }
.section-tight { padding-block: clamp(56px, 7vw, 88px); }

.section-dark {
  background: var(--void);
  color: var(--ink-0);
}
.section-light {
  background: var(--paper);
  color: var(--coal-0);
}
.section-sunken {
  background: var(--paper-sunken);
  color: var(--coal-0);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--green-600); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
  z-index: 999; transition: top var(--dur-sm) var(--ease-out);
  font-weight: 600; font-size: 0.875rem;
}
.skip-link:focus { top: 12px; }

/* ---------------------------------------------------------------------- */
/* 4. Typography                                                          */
/* ---------------------------------------------------------------------- */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 14px 7px 10px; border-radius: var(--r-full);
}
.eyebrow-dark {
  background: var(--glass); border: 1px solid var(--glass-border); color: var(--green-300);
  backdrop-filter: blur(12px);
}
.eyebrow-light {
  background: rgba(34, 154, 86, 0.08); border: 1px solid rgba(34, 154, 86, 0.16); color: var(--green-600);
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-400); box-shadow: 0 0 8px var(--green-400); flex-shrink: 0; animation: dot-pulse 2.4s ease-in-out infinite; }
@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green-400); }
  50% { opacity: 0.55; box-shadow: 0 0 3px var(--green-400); }
}

.display-1 {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.display-2 {
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.h3-size { font-size: clamp(1.25rem, 1.8vw, 1.5rem); font-weight: 700; letter-spacing: -0.01em; }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  font-weight: 440;
}
.lead-dark { color: var(--ink-1); }
.lead-light { color: var(--coal-1); }

.eyebrow-center, .section-head { text-align: center; }
.section-head { max-width: 640px; margin-inline: auto; margin-bottom: clamp(40px, 6vw, 68px); }
.section-head.wide { max-width: 760px; }
.section-head h2 { margin-block: 16px 14px; }

.text-gradient-green {
  background: linear-gradient(100deg, var(--green-300), var(--green-500) 65%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-gradient-orange {
  background: linear-gradient(100deg, var(--orange-300), var(--orange-500) 65%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------------------------------------------------------------------- */
/* 5. Buttons                                                              */
/* ---------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 650; font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: var(--r-md);
  transition: transform var(--dur-sm) var(--ease-out), box-shadow var(--dur-sm) var(--ease-out), background var(--dur-sm) var(--ease-out), border-color var(--dur-sm) var(--ease-out), color var(--dur-sm) var(--ease-out);
  white-space: nowrap;
  isolation: isolate;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lg { padding: 15px 30px; font-size: 1rem; border-radius: var(--r-md); }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.btn-tag {
  position: absolute; top: -10px; right: -8px;
  background: linear-gradient(180deg, var(--green-300), var(--green-500));
  color: #06210f; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.02em;
  text-transform: uppercase; white-space: nowrap;
  padding: 3px 9px; border-radius: 999px;
  box-shadow: 0 4px 10px -2px rgba(0,0,0,0.35), 0 0 0 0 rgba(127,224,163,0.55);
  animation: tag-pulse 2.6s ease-in-out infinite;
}
@keyframes tag-pulse {
  0%, 100% { box-shadow: 0 4px 10px -2px rgba(0,0,0,0.35), 0 0 0 0 rgba(127,224,163,0.5); }
  50% { box-shadow: 0 4px 10px -2px rgba(0,0,0,0.35), 0 0 0 5px rgba(127,224,163,0); }
}

.btn-primary {
  background: linear-gradient(180deg, var(--green-500), var(--green-600));
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 10px 26px -10px var(--green-glow);
}
.btn-primary:hover { box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 16px 34px -10px var(--green-glow); }

.btn-orange {
  background: linear-gradient(180deg, var(--orange-400), var(--orange-500));
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 10px 26px -10px var(--orange-glow);
}
.btn-orange:hover { box-shadow: 0 1px 0 rgba(255,255,255,0.24) inset, 0 16px 34px -10px var(--orange-glow); }

.btn-glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--ink-0);
  backdrop-filter: blur(14px);
}
.btn-glass:hover { background: var(--glass-strong); border-color: var(--glass-border-strong); }

.btn-outline-light {
  background: var(--paper-raised);
  border: 1px solid var(--paper-border);
  color: var(--coal-0);
  box-shadow: var(--shadow-xs);
}
.btn-outline-light:hover { border-color: var(--coal-3); box-shadow: var(--shadow-sm); }

.btn-ghost-dark { color: var(--ink-1); }
.btn-ghost-dark:hover { color: var(--ink-0); }
.btn-ghost-light { color: var(--coal-1); }
.btn-ghost-light:hover { color: var(--coal-0); }

/* ---------------------------------------------------------------------- */
/* 6. Nav                                                                  */
/* ---------------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: padding var(--dur-md) var(--ease-out), background var(--dur-md) var(--ease-out), border-color var(--dur-md) var(--ease-out), box-shadow var(--dur-md) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 11px 0;
  background: rgba(5, 7, 4, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 30px -12px rgba(0,0,0,0.4);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  height: 28px; width: auto; display: block;
  filter: brightness(0) invert(1);
  opacity: 0.94;
  transition: opacity var(--dur-sm) var(--ease-out), transform var(--dur-sm) var(--ease-out);
}
.brand:hover .brand-logo { opacity: 1; transform: translateY(-1px); }
.footer-brand .brand-logo { height: 30px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 0.89rem; font-weight: 560; color: var(--ink-1);
  padding: 9px 14px; border-radius: var(--r-sm);
  transition: color var(--dur-sm), background var(--dur-sm);
}
.nav-links a:hover { color: var(--ink-0); background: var(--glass); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; width: 38px; height: 38px; align-items: center; justify-content: center;
  border-radius: var(--r-sm); background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--ink-0);
}
.nav-toggle svg { width: 18px; height: 18px; }

.mobile-panel {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(5,7,4,0.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  padding: 96px 28px 40px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--dur-md) var(--ease-out), transform var(--dur-md) var(--ease-out), visibility var(--dur-md);
}
.mobile-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-panel a {
  font-size: 1.4rem; font-weight: 650; color: var(--ink-0);
  padding: 16px 0; border-bottom: 1px solid var(--glass-border);
}
.mobile-panel .mobile-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }

@media (max-width: 640px) {
  .brand-logo { height: 21px; }
  .nav { padding: 13px 0; }
  .nav.is-scrolled { padding: 9px 0; }
  .mobile-panel { padding-top: 78px; }
  .mobile-panel a { font-size: 1.05rem; padding: 13px 0; }
}

/* ---------------------------------------------------------------------- */
/* 7. Backdrop FX (blobs, grid, noise)                                    */
/* ---------------------------------------------------------------------- */
.fx-blob {
  position: absolute; border-radius: 50%; filter: blur(100px);
  pointer-events: none; z-index: 0;
}
.fx-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 40%, transparent 100%);
}
.hero-collector {
  position: absolute; z-index: 0; pointer-events: none; user-select: none;
  left: clamp(-100px, -7vw, -30px); bottom: -70px;
  width: clamp(300px, 32vw, 520px); height: auto;
  opacity: 0.08;
}
@media (max-width: 900px) {
  .hero-collector { width: clamp(220px, 46vw, 340px); left: -60px; bottom: -30px; }
}

.fx-noise {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.035; z-index: 1; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------------------- */
/* 8. Hero                                                                 */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative; overflow: clip;
  background: var(--void);
  padding-top: clamp(140px, 18vw, 200px);
  padding-bottom: clamp(60px, 8vw, 100px);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; gap: 56px;
  justify-items: center; text-align: center;
}
.hero-copy { max-width: 780px; }
.hero-copy h1 { color: var(--ink-0); margin-block: 22px 20px; }
.hero-copy .lead { max-width: 600px; margin-inline: auto; }

.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; margin-top: 32px; }

.hero-explore { text-align: center; margin-top: 22px; }
.hero-explore a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 560; color: var(--ink-2);
  transition: color var(--dur-sm) var(--ease-out);
}
.hero-explore a:hover { color: var(--ink-0); }
.hero-explore svg { transition: transform var(--dur-sm) var(--ease-out); }
.hero-explore a:hover svg { transform: translateX(3px); }

.hero-trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px; margin-top: 34px; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: var(--ink-2); }
.hero-trust-item svg { width: 15px; height: 15px; color: var(--green-400); flex-shrink: 0; }
.hero-trust-item strong { color: var(--ink-0); font-weight: 650; }

/* Hero product visual */
.hero-visual { position: relative; width: 100%; max-width: 980px; z-index: 2; margin-bottom: 95px; }
.hero-visual-frame {
  position: relative; border-radius: var(--r-xl);
  border: 1px solid var(--glass-border-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(20px);
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.02) inset;
  padding: 14px;
  transform: perspective(1400px) rotateX(4deg);
  transition: transform 0.6s var(--ease-out);
}
.hero-visual-frame:hover { transform: perspective(1400px) rotateX(1deg) translateY(-4px); }
.hero-visual-inner {
  border-radius: calc(var(--r-xl) - 10px);
  overflow: hidden;
  background: var(--paper-sunken);
  border: 1px solid rgba(255,255,255,0.06);
}

.float-chip {
  position: absolute; z-index: 3;
  background: rgba(16, 20, 15, 0.85);
  border: 1px solid var(--glass-border-strong);
  backdrop-filter: blur(16px);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.5);
  animation: floaty 6s ease-in-out infinite;
}
.float-chip .fc-icon {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.float-chip .fc-icon svg { width: 15px; height: 15px; }
.float-chip .fc-title { font-size: 0.78rem; font-weight: 650; color: var(--ink-0); white-space: nowrap; }
.float-chip .fc-sub { font-size: 0.7rem; color: var(--ink-2); white-space: nowrap; }

.chip-tl { top: -6%; left: -4%; animation-delay: 0s; }
.chip-br { bottom: -8%; right: -3%; animation-delay: 2.2s; }
.chip-mr { top: 38%; right: -6%; animation-delay: 4s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 720px) {
  .float-chip { display: none; }
}

/* ---------------------------------------------------------------------- */
/* 9. Logo / trust strip                                                  */
/* ---------------------------------------------------------------------- */
.trust-strip { position: relative; z-index: 2; background: var(--void); padding-block: 40px 90px; }
.trust-label { text-align: center; font-size: 0.76rem; font-weight: 650; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 30px; }
.logo-row {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
}
.logo-row .wordmark {
  font-size: 1.1rem; font-weight: 750; letter-spacing: -0.01em; color: var(--ink-3);
  transition: color var(--dur-sm);
}
.logo-row .wordmark:hover { color: var(--ink-1); }

.stat-row {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  border-top: 1px solid var(--glass-border); padding-top: 44px;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink-0);
}
.stat-label { font-size: 0.82rem; color: var(--ink-2); margin-top: 6px; }

@media (max-width: 800px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
}

/* ---------------------------------------------------------------------- */
/* 10. Cards (generic)                                                     */
/* ---------------------------------------------------------------------- */
.card-light {
  background: var(--paper-raised);
  border: 1px solid var(--paper-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.icon-chip {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-chip svg { width: 21px; height: 21px; }

.tone-green   { background: rgba(34,154,86,0.1); color: var(--green-600); }
.tone-orange  { background: rgba(242,121,15,0.1); color: var(--orange-500); }
.tone-blue    { background: rgba(59,130,246,0.1); color: var(--blue-500); }
.tone-violet  { background: rgba(139,92,246,0.1); color: var(--violet-500); }
.tone-yellow  { background: rgba(234,179,8,0.1); color: #a16207; }
.tone-red     { background: rgba(239,74,74,0.1); color: var(--red-500); }
.tone-slate   { background: rgba(100,116,139,0.12); color: #475569; }

/* ---------------------------------------------------------------------- */
/* 11. Problem / Solution                                                  */
/* ---------------------------------------------------------------------- */
.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; margin-top: 56px; }
.ps-card {
  border-radius: var(--r-xl); padding: clamp(28px, 3.4vw, 44px);
  position: relative; overflow: hidden;
}
.ps-problem { background: var(--paper-raised); border: 1px solid var(--paper-border); }
.ps-solution {
  background: linear-gradient(165deg, #0f1a10, #0a120a 60%);
  color: var(--ink-0);
  border: 1px solid rgba(34,154,86,0.28);
}
.ps-kicker { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.ps-problem .ps-kicker { color: var(--red-500); }
.ps-solution .ps-kicker { color: var(--green-300); }
.ps-card h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin-bottom: 20px; }
.ps-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.ps-list li { display: flex; gap: 12px; font-size: 0.95rem; line-height: 1.55; }
.ps-problem .ps-list li { color: var(--coal-1); }
.ps-solution .ps-list li { color: var(--ink-1); }
.ps-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.ps-problem .ps-list svg { color: var(--red-500); }
.ps-solution .ps-list svg { color: var(--green-400); }

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

/* ---------------------------------------------------------------------- */
/* 12. Bento features                                                      */
/* ---------------------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.bento-item {
  grid-column: span 2;
  background: var(--paper-raised);
  border: 1px solid var(--paper-border);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-md) var(--ease-out), box-shadow var(--dur-md) var(--ease-out), border-color var(--dur-md) var(--ease-out);
}
.bento-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--paper-border); }
.bento-item.span-3 { grid-column: span 3; }
.bento-item.span-4 { grid-column: span 4; }
.bento-item.span-6 { grid-column: span 6; }

.bento-item h4 { font-size: 1.08rem; margin-block: 18px 8px; letter-spacing: -0.01em; }
.bento-item p { font-size: 0.9rem; color: var(--coal-1); line-height: 1.55; }

.bento-item .icon-chip { margin-bottom: 4px; }

.bento-glow {
  position: absolute; top: -40%; right: -30%; width: 260px; height: 260px; border-radius: 50%;
  filter: blur(70px); opacity: 0.5; pointer-events: none;
  background: radial-gradient(circle, var(--green-glow), transparent 70%);
  z-index: 0;
}

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-item, .bento-item.span-3, .bento-item.span-4, .bento-item.span-6 { grid-column: span 2; }
}

/* Mini visual inside feature tiles */
.mini-viz { margin-top: 18px; border-radius: var(--r-md); border: 1px solid var(--paper-border); background: var(--paper-sunken); padding: 14px; }
.mini-bars { display: flex; align-items: end; gap: 6px; height: 64px; }
.mini-bars i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--green-400), var(--green-600)); }
.mini-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 10px; border-radius: 9px; background: var(--paper-raised); border: 1px solid var(--paper-border); font-size: 0.78rem; }
.mini-row + .mini-row { margin-top: 8px; }
.mini-dot { width: 7px; height: 7px; border-radius: 50%; }

/* ---------------------------------------------------------------------- */
/* 13. Product showcase (dark, 3D)                                        */
/* ---------------------------------------------------------------------- */
.showcase { background: var(--void-2); position: relative; overflow: clip; }
.showcase .section-head h2 { color: var(--ink-0); }

.showcase-tabs {
  display: inline-flex; gap: 6px; padding: 5px; border-radius: var(--r-full);
  background: var(--glass); border: 1px solid var(--glass-border);
  margin: 0 auto 44px; position: relative; z-index: 2;
}
.showcase-tabs { display: flex; justify-content: center; width: fit-content; }
.showcase-tab {
  padding: 9px 20px; border-radius: var(--r-full); font-size: 0.85rem; font-weight: 620; color: var(--ink-2);
  transition: color var(--dur-sm), background var(--dur-sm);
}
.showcase-tab.is-active { background: var(--paper-raised); color: var(--coal-0); }

.showcase-stage {
  position: relative; z-index: 2;
  border-radius: var(--r-xl);
  border: 1px solid var(--glass-border-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  padding: 16px;
  box-shadow: 0 80px 160px -60px rgba(0,0,0,0.7);
}
.showcase-panel { display: none; border-radius: calc(var(--r-xl) - 10px); overflow: hidden; }
.showcase-panel.is-active { display: block; }

/* ---------------------------------------------------------------------- */
/* 14. Recreated product UI (mock dashboard chrome)                        */
/* ---------------------------------------------------------------------- */
.app-shell { background: var(--paper-sunken); display: flex; min-height: 460px; }
.app-sidebar {
  width: 208px; flex-shrink: 0; background: #ffffff; border-right: 1px solid var(--paper-border);
  padding: 18px 14px; display: flex; flex-direction: column; gap: 4px;
}
.app-sidebar .as-brand { display: flex; align-items: center; gap: 8px; padding: 6px 8px 18px; }
.app-sidebar .as-brand img { width: 24px; height: 24px; border-radius: 6px; }
.app-sidebar .as-brand span { font-weight: 750; font-size: 0.88rem; color: var(--coal-0); }
.as-link { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 9px; font-size: 0.8rem; font-weight: 560; color: var(--coal-2); }
.as-link svg { width: 15px; height: 15px; }
.as-link.is-active { background: rgba(34,154,86,0.1); color: var(--green-600); }

.app-main { flex: 1; padding: 22px 26px; min-width: 0; }
.app-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.app-topbar h5 { font-size: 1.05rem; font-weight: 750; color: var(--coal-0); }
.app-topbar p { font-size: 0.76rem; color: var(--coal-2); margin-top: 2px; }

.app-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.app-stat { background: #fff; border: 1px solid var(--paper-border); border-radius: 12px; padding: 14px 16px; }
.app-stat .as-label { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--coal-3); }
.app-stat .as-value { font-size: 1.3rem; font-weight: 800; color: var(--coal-0); margin-top: 6px; }
.app-stat .as-trend { font-size: 0.7rem; font-weight: 650; color: var(--green-600); margin-top: 4px; display: flex; align-items: center; gap: 3px; }

.app-panel { background: #fff; border: 1px solid var(--paper-border); border-radius: 12px; padding: 16px 18px; }
.app-panel + .app-panel { margin-top: 12px; }
.app-panel h6 { font-size: 0.82rem; font-weight: 700; color: var(--coal-0); margin-bottom: 12px; }

.track-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--paper-border); font-size: 0.78rem; }
.track-row:last-child { border-bottom: none; }
.track-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.track-row .t-main { flex: 1; color: var(--coal-1); }
.track-row .t-main strong { color: var(--coal-0); font-weight: 650; }
.track-badge { font-size: 0.66rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; }

.zone-map { position: relative; height: 230px; border-radius: 10px; overflow: hidden; background:
    radial-gradient(circle at 30% 30%, rgba(34,154,86,0.14), transparent 55%),
    radial-gradient(circle at 75% 65%, rgba(242,121,15,0.12), transparent 55%),
    var(--paper-sunken);
  border: 1px solid var(--paper-border);
}
.zone-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.zone-pin { position: absolute; width: 10px; height: 10px; border-radius: 50%; box-shadow: 0 0 0 4px; }

.rate-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; }
.rate-table th { text-align: left; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--coal-3); font-weight: 700; padding: 8px 10px; border-bottom: 1px solid var(--paper-border); }
.rate-table td { padding: 10px; border-bottom: 1px solid var(--paper-sunken); color: var(--coal-1); }
.rate-table td strong { color: var(--coal-0); }

@media (max-width: 760px) {
  .app-sidebar { display: none; }
  .app-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------------------------------------------------------------------- */
/* 15. How it works                                                        */
/* ---------------------------------------------------------------------- */
.steps { position: relative; margin-top: 60px; }
.steps-track {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative;
}
.steps-track::before {
  content: ''; position: absolute; top: 27px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--paper-border) 15%, var(--paper-border) 85%, transparent);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: left; }
.step-num {
  width: 54px; height: 54px; border-radius: 15px; display: flex; align-items: center; justify-content: center;
  background: var(--paper-raised); border: 1px solid var(--paper-border); box-shadow: var(--shadow-sm);
  font-weight: 800; font-size: 1.05rem; color: var(--green-600); margin-bottom: 20px;
}
.step h4 { font-size: 1.02rem; margin-bottom: 8px; }
.step p { font-size: 0.87rem; color: var(--coal-1); line-height: 1.55; }

@media (max-width: 860px) {
  .steps-track { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .steps-track::before { display: none; }
}
@media (max-width: 520px) {
  .steps-track { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------- */
/* 16. Benefits                                                            */
/* ---------------------------------------------------------------------- */
.benefits { overflow: clip; }
.benefits > .container { position: relative; z-index: 1; }
.fx-tree {
  position: absolute; z-index: 0; pointer-events: none;
  opacity: 0.09; width: clamp(220px, 24vw, 340px); height: auto;
}
.fx-tree .fxt-lines,
.fx-tree .fxt-trunk,
.fx-tree .fxt-leaves { fill: var(--green-600); stroke: var(--green-600); }
.fx-tree .fxt-lines { fill: none; stroke-linecap: round; }
.fx-tree-left { left: clamp(-70px, -5vw, -20px); bottom: -16px; }
.fx-tree-right { right: clamp(-70px, -5vw, -20px); bottom: -16px; transform: scaleX(-1); }
.fx-tree-dark { opacity: 0.16; }
.fx-tree-sm { width: clamp(150px, 15vw, 230px); }
.fx-tree-dark .fxt-lines,
.fx-tree-dark .fxt-trunk,
.fx-tree-dark .fxt-leaves { fill: var(--green-400); stroke: var(--green-400); }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.benefit-card {
  border-radius: var(--r-lg); padding: 26px; background: var(--paper-raised); border: 1px solid var(--paper-border);
}
.benefit-card .icon-chip { margin-bottom: 16px; }
.benefit-card h4 { font-size: 1rem; margin-bottom: 8px; }
.benefit-card p { font-size: 0.87rem; color: var(--coal-1); line-height: 1.55; }

@media (max-width: 860px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .benefit-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* 17. Use cases                                                           */
/* ---------------------------------------------------------------------- */
.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.usecase-card {
  border-radius: var(--r-lg); overflow: hidden; background: var(--paper-raised); border: 1px solid var(--paper-border);
  display: flex; flex-direction: column; transition: transform var(--dur-md) var(--ease-out), box-shadow var(--dur-md) var(--ease-out);
}
.usecase-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.usecase-top { padding: 26px 26px 0; }
.usecase-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.usecase-card h4 { font-size: 1.12rem; margin-block: 10px 10px; }
.usecase-card p { font-size: 0.87rem; color: var(--coal-1); line-height: 1.55; margin-bottom: 20px; }
.usecase-foot {
  margin-top: auto; padding: 18px 26px; border-top: 1px solid var(--paper-sunken);
  display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: var(--coal-2);
}
.usecase-foot strong { color: var(--coal-0); }

@media (max-width: 900px) { .usecase-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* 17b. Catalog (what we pick up)                                          */
/* ---------------------------------------------------------------------- */
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.catalog-card {
  background: var(--paper-raised); border: 1px solid var(--paper-border); border-radius: var(--r-lg);
  padding: 24px; transition: transform var(--dur-md) var(--ease-out), box-shadow var(--dur-md) var(--ease-out);
}
.catalog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.catalog-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.catalog-rate {
  font-size: 0.74rem; font-weight: 750; padding: 5px 11px; border-radius: 999px;
  background: var(--paper-sunken); color: var(--coal-1); white-space: nowrap; flex-shrink: 0; margin-top: 3px;
}
.catalog-card h4 { font-size: 1rem; margin-bottom: 6px; }
.catalog-card p { font-size: 0.85rem; color: var(--coal-1); line-height: 1.55; }
.catalog-foot {
  display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center;
  font-size: 0.8rem; color: var(--coal-3); margin-top: 36px;
}
.catalog-foot svg { width: 14px; height: 14px; color: var(--green-500); flex-shrink: 0; }

@media (max-width: 900px) { .catalog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .catalog-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* 18. Pricing                                                             */
/* ---------------------------------------------------------------------- */
.pricing-switch {
  display: flex; justify-content: center; margin-bottom: 40px;
}
.seg {
  display: inline-flex; gap: 4px; padding: 5px; border-radius: var(--r-full);
  background: var(--paper-sunken); border: 1px solid var(--paper-border);
}
.seg button {
  padding: 10px 22px; border-radius: var(--r-full); font-size: 0.87rem; font-weight: 650; color: var(--coal-2);
  display: flex; align-items: center; gap: 8px;
  transition: background var(--dur-sm), color var(--dur-sm), box-shadow var(--dur-sm);
}
.seg button.is-active { background: var(--paper-raised); color: var(--coal-0); box-shadow: var(--shadow-sm); }

.pricing-panel { display: none; }
.pricing-panel.is-active { display: block; }

.free-banner {
  max-width: 720px; margin-inline: auto;
  border-radius: var(--r-xl); padding: clamp(32px, 5vw, 52px);
  background: linear-gradient(150deg, #123a20, #0c2414 70%);
  color: #fff; text-align: center; position: relative; overflow: hidden;
  border: 1px solid rgba(127, 224, 163, 0.25);
}
.free-banner .price-big { font-size: clamp(3.4rem, 7vw, 5.2rem); font-weight: 800; letter-spacing: -0.03em; }
.free-banner .price-sub { font-size: 1rem; opacity: 0.82; margin-top: 4px; }
.free-banner p.desc { max-width: 440px; margin: 14px auto 26px; font-size: 0.92rem; opacity: 0.85; line-height: 1.6; }

.free-includes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 640px; margin: 32px auto 0; text-align: left; }
.free-includes .fi-item { background: var(--paper-raised); border: 1px solid var(--paper-border); border-radius: var(--r-md); padding: 16px 18px; }
.free-includes .fi-item h5 { font-size: 0.85rem; font-weight: 700; margin: 10px 0 4px; }
.free-includes .fi-item p { font-size: 0.78rem; color: var(--coal-1); line-height: 1.5; }

@media (max-width: 640px) { .free-includes { grid-template-columns: 1fr; } }

.vendor-notice {
  max-width: 720px; margin: 0 auto 40px; display: flex; gap: 14px;
  background: rgba(242,121,15,0.06); border: 1px solid rgba(242,121,15,0.2); border-radius: var(--r-md); padding: 16px 18px;
}
.vendor-notice svg { width: 20px; height: 20px; color: var(--orange-500); flex-shrink: 0; margin-top: 2px; }
.vendor-notice p { font-size: 0.83rem; color: var(--coal-1); line-height: 1.55; }
.vendor-notice strong { color: var(--coal-0); }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.plan-card {
  background: var(--paper-raised); border: 1px solid var(--paper-border); border-radius: var(--r-lg);
  padding: 28px; position: relative; transition: transform var(--dur-md) var(--ease-out), box-shadow var(--dur-md) var(--ease-out);
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.plan-card.is-popular {
  border: 2px solid var(--orange-500);
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(242,121,15,0.06);
}
.plan-card.is-popular:hover { box-shadow: var(--shadow-xl), 0 0 0 8px rgba(242,121,15,0.09); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--orange-400), var(--orange-500)); color: #fff;
  font-size: 0.72rem; font-weight: 750; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.plan-name { font-size: 0.75rem; font-weight: 750; text-transform: uppercase; letter-spacing: 0.06em; color: var(--coal-2); margin-bottom: 10px; }
.plan-card.is-popular .plan-name { color: var(--orange-500); }
.plan-price-row { display: flex; align-items: baseline; gap: 6px; }
.plan-price { font-size: 2.3rem; font-weight: 800; letter-spacing: -0.02em; color: var(--coal-0); }
.plan-period { font-size: 0.85rem; color: var(--coal-3); }
.plan-note { font-size: 0.76rem; color: var(--coal-3); margin-top: 4px; min-height: 16px; }
.plan-desc { font-size: 0.85rem; color: var(--coal-1); margin-top: 14px; line-height: 1.55; min-height: 60px; }
.plan-card .btn { margin: 22px 0 24px; }
.plan-features { display: flex; flex-direction: column; gap: 12px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--coal-1); }
.plan-features li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.plan-features li.included svg { color: var(--green-500); }
.plan-features li.excluded { color: var(--coal-3); }
.plan-features li.excluded svg { color: var(--paper-border); }
.plan-features li strong { color: var(--coal-0); }

.pricing-foot { text-align: center; font-size: 0.78rem; color: var(--coal-3); margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.pricing-foot svg { width: 14px; height: 14px; color: var(--orange-400); }

@media (max-width: 940px) { .plan-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }

/* ---------------------------------------------------------------------- */
/* 19. Testimonials (dark)                                                 */
/* ---------------------------------------------------------------------- */
.testi { background: var(--void); position: relative; overflow: clip; }
.testi .section-head h2 { color: var(--ink-0); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; position: relative; z-index: 2; }
.testi-card {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--r-lg);
  padding: 26px; backdrop-filter: blur(10px);
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testi-stars svg { width: 15px; height: 15px; color: var(--orange-400); }
.testi-card p.quote { font-size: 0.92rem; color: var(--ink-1); line-height: 1.65; font-style: normal; margin-bottom: 22px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 750; font-size: 0.85rem; color: #fff; flex-shrink: 0; }
.testi-person .tp-name { font-size: 0.86rem; font-weight: 650; color: var(--ink-0); }
.testi-person .tp-role { font-size: 0.74rem; color: var(--ink-2); }

@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* 20. FAQ                                                                 */
/* ---------------------------------------------------------------------- */
.faq-list { max-width: 780px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--paper-border); border-radius: var(--r-md); background: var(--paper-raised); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px; text-align: left; font-size: 0.94rem; font-weight: 620; color: var(--coal-0);
}
.faq-q .faq-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; }
.faq-q .faq-icon::before, .faq-q .faq-icon::after {
  content: ''; position: absolute; background: var(--coal-2); border-radius: 2px; transition: transform var(--dur-md) var(--ease-out), opacity var(--dur-md);
}
.faq-q .faq-icon::before { width: 100%; height: 2px; top: 9px; left: 0; }
.faq-q .faq-icon::after { width: 2px; height: 100%; left: 9px; top: 0; }
.faq-item.is-open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item.is-open .faq-q { color: var(--green-600); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-md) var(--ease-out); }
.faq-a-inner { padding: 0 22px 20px; font-size: 0.87rem; color: var(--coal-1); line-height: 1.65; }

/* ---------------------------------------------------------------------- */
/* 20b. Environmental impact                                               */
/* ---------------------------------------------------------------------- */
.impact { background: linear-gradient(180deg, var(--void-2), var(--void)); position: relative; overflow: clip; }
.impact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 64px); align-items: center; }
.impact-copy h2 { color: var(--ink-0); }

.impact-loop { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 32px; }
.loop-step {
  display: flex; align-items: center; gap: 10px;
  background: var(--glass); border: 1px solid var(--glass-border);
  padding: 8px 16px 8px 8px; border-radius: 999px; backdrop-filter: blur(10px);
}
.loop-step .icon-chip { width: 32px; height: 32px; }
.loop-step .icon-chip svg { width: 15px; height: 15px; }
.loop-step span { font-size: 0.84rem; font-weight: 640; color: var(--ink-0); white-space: nowrap; }
.loop-arrow { color: var(--ink-3); flex-shrink: 0; }
.loop-arrow svg { width: 16px; height: 16px; }

.impact-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.impact-stat {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--r-lg);
  padding: 24px; backdrop-filter: blur(10px);
  transition: transform var(--dur-md) var(--ease-out), background var(--dur-md) var(--ease-out);
}
.impact-stat:hover { transform: translateY(-4px); background: var(--glass-strong); }
.impact-stat .icon-chip { margin-bottom: 16px; }
.impact-stat .is-num { font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 800; color: var(--ink-0); letter-spacing: -0.02em; }
.impact-stat .is-label { font-size: 0.8rem; color: var(--ink-2); margin-top: 5px; line-height: 1.4; }

@media (max-width: 900px) {
  .impact-grid { grid-template-columns: 1fr; }
  .impact-stats { max-width: 480px; }
}
@media (max-width: 480px) {
  .impact-stats { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------- */
/* 21. Final CTA                                                           */
/* ---------------------------------------------------------------------- */
.final-cta {
  position: relative; overflow: clip;
  background: linear-gradient(165deg, #0c1a0d 0%, #06110a 55%, #0a0f06 100%);
  padding-block: clamp(80px, 10vw, 130px);
}
.final-cta-inner { position: relative; z-index: 2; text-align: center; max-width: 680px; margin-inline: auto; }
.final-cta h2 { color: #fff; margin-bottom: 18px; }
.final-cta p { color: var(--ink-1); font-size: 1.02rem; margin-bottom: 36px; }
.final-cta .hero-ctas { margin-top: 0; }

/* ---------------------------------------------------------------------- */
/* 22. Footer                                                              */
/* ---------------------------------------------------------------------- */
.footer { background: var(--void); border-top: 1px solid var(--glass-border); padding-block: 64px 32px; position: relative; z-index: 2; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; padding-bottom: 48px; }
.footer-brand p { font-size: 0.85rem; color: var(--ink-2); line-height: 1.6; margin-top: 14px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px; background: var(--glass); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center; color: var(--ink-1);
  transition: background var(--dur-sm), color var(--dur-sm), border-color var(--dur-sm);
}
.footer-social a:hover { background: var(--glass-strong); color: var(--ink-0); border-color: var(--glass-border-strong); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h6 { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.87rem; color: var(--ink-1); transition: color var(--dur-sm); }
.footer-col a:hover { color: var(--ink-0); }

.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--glass-border);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--ink-3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: var(--ink-3); }
.footer-legal a:hover { color: var(--ink-1); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------------------------------------------------------------------- */
/* 23. Scroll reveal                                                       */
/* ---------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-group] > * { transition-delay: calc(var(--i, 0) * 70ms); }

/* ---------------------------------------------------------------------- */
/* 24. Misc responsive                                                     */
/* ---------------------------------------------------------------------- */
@media (max-width: 980px) {
  .nav-links, .nav-actions .btn-ghost-dark, .nav-actions .btn-orange { display: none; }
  .nav-toggle { display: flex; }
}
@media (min-width: 981px) {
  .mobile-panel { display: none; }
}

@media (max-width: 700px) {
  .app-stats { grid-template-columns: repeat(2, 1fr); }
}
