/* ==========================================================================
   eGrowth.ro v2 — Black + neon green, glowing 3D
   ========================================================================== */

:root {
  --bg: #050705;
  --bg-2: #0A0D0A;
  --bg-3: #0F1410;
  --panel: #0C110D;
  --ink: #E8FFE8;
  --muted: #7A8A7D;
  --muted-2: #4E5A50;
  --line: rgba(87, 255, 135, 0.12);
  --line-strong: rgba(87, 255, 135, 0.3);

  --green: #57FF87;          /* glow green */
  --green-2: #2EE867;
  --green-3: #0FBF4C;
  --green-deep: #064A1D;
  --lime: #C5FF5E;

  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);

  --glow-sm: 0 0 20px rgba(87, 255, 135, 0.35);
  --glow-md: 0 0 40px rgba(87, 255, 135, 0.45);
  --glow-lg: 0 0 80px rgba(87, 255, 135, 0.55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Geist', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* grid + noise overlay on body */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(87, 255, 135, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 255, 135, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 1;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 60%);
}
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(87, 255, 135, 0.10), transparent 60%);
}
main, nav, footer { position: relative; z-index: 3; }

.serif {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}

.mono {
  font-family: 'Geist Mono', ui-monospace, "SF Mono", Menlo, monospace;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

section { position: relative; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(5, 7, 5, 0.7);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 18px; letter-spacing: -0.01em;
}
.logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(87, 255, 135, 0.35)) drop-shadow(0 0 16px rgba(87, 255, 135, 0.2));
  transition: filter 0.3s var(--ease);
}
.logo:hover img {
  filter: drop-shadow(0 0 12px rgba(87, 255, 135, 0.6)) drop-shadow(0 0 24px rgba(87, 255, 135, 0.3));
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 16px rgba(87, 255, 135, 0.35), 0 0 32px rgba(87, 255, 135, 0.15); }
  50%      { box-shadow: 0 0 28px rgba(87, 255, 135, 0.6),  0 0 60px rgba(87, 255, 135, 0.25); }
}

/* Client logos marquee */
.clients-wrap {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden;
  padding: 80px 0 96px;
  position: relative;
}
.clients-label {
  text-align: center;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.clients-label .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
}
.clients-wrap::before, .clients-wrap::after { display: none; }

.clients-rows {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.clients-marquee {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 26s linear infinite;
  align-items: center;
  width: max-content;
  pointer-events: none;
}
.clients-marquee.reverse {
  animation: scrollReverse 30s linear infinite;
}
@keyframes scrollReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.client-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 38px 56px;
  min-width: 280px;
  height: 140px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(87,255,135,0.06), transparent 70%),
    rgba(255,255,255,0.015);
  font-family: 'Instrument Serif', serif;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  flex-shrink: 0;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}
.client-logo::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, rgba(87,255,135,0.4) 50%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.client-logo:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 50% 0%, rgba(87,255,135,0.12), transparent 60%),
    rgba(255,255,255,0.03);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.5),
    0 0 40px rgba(87,255,135,0.25),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.client-logo:hover::before { opacity: 1; }
.client-logo .mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--green);
  filter: drop-shadow(0 0 8px rgba(87,255,135,0.5));
}
.client-logo .mark svg { width: 100%; height: 100%; }
.client-logo-img {
  max-height: 64px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.12);
}

/* --- Client logos edit UI (shown when Tweaks is on) --- */
.clients-edit {
  max-width: 1100px;
  margin: 28px auto 0;
  padding: 20px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(87, 255, 135, 0.03);
}
.clients-edit-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.ce-btn {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green);
  color: var(--bg);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 0 12px rgba(87, 255, 135, 0.35);
  cursor: pointer;
  border: none;
  transition: box-shadow 0.25s var(--ease), transform 0.2s var(--ease);
}
.ce-btn:hover { box-shadow: 0 0 22px rgba(87, 255, 135, 0.55); transform: translateY(-1px); }
.ce-btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}
.ce-btn.ghost:hover { color: var(--green); border-color: var(--green); }
.clients-edit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}
.ce-item {
  position: relative;
  aspect-ratio: 16/10;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 8px;
}
.ce-item img { max-width: 90%; max-height: 80%; object-fit: contain; filter: brightness(1.1); }
.ce-placeholder {
  color: var(--muted);
  font-size: 11px;
  display: inline-flex; align-items: center; gap: 6px;
}
.ce-placeholder svg { width: 14px; height: 14px; color: var(--green); }
.ce-remove {
  position: absolute;
  top: 4px; right: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(5,7,5,0.8);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  font-size: 14px;
  line-height: 1;
  display: grid; place-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
}
.ce-item:hover .ce-remove { opacity: 1; }
.ce-remove:hover { color: var(--green); }
.clients-edit-hint {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.nav-links { display: flex; gap: 28px; font-size: 14px; }
.nav-links a {
  position: relative;
  padding: 6px 2px;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--green);
  color: var(--bg);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: var(--glow-sm);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--glow-md); }
.nav-cta .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--bg);
  animation: blink 1.6s infinite;
}
@keyframes blink { 0%, 60% { opacity: 1; } 80%, 100% { opacity: 0.3; } }

@media (max-width: 820px) { .nav-links { display: none; } .nav-cta { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translate(3px, -3px); }

.btn-primary {
  background: var(--green);
  color: var(--bg);
  box-shadow: 0 0 0 0 rgba(87, 255, 135, 0.6), 0 0 30px rgba(87, 255, 135, 0.35), inset 0 -2px 0 rgba(0,0,0,0.15);
  font-weight: 600;
}
.btn-primary:hover {
  box-shadow: 0 0 0 6px rgba(87, 255, 135, 0.2), 0 0 60px rgba(87, 255, 135, 0.65), inset 0 -2px 0 rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); box-shadow: 0 0 24px rgba(87, 255, 135, 0.2); }

/* ---------- Hero ---------- */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Animated glowing orbs */
.hero-orb {
  position: absolute;
  z-index: 0;
  width: 640px; height: 640px;
  top: -80px; right: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(87, 255, 135, 0.4), transparent 55%);
  filter: blur(40px);
  border-radius: 50%;
  animation: float 18s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}
.hero-orb.b {
  left: -200px; top: 280px; right: auto;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(46, 232, 103, 0.3), transparent 60%);
  animation-duration: 24s;
  animation-direction: reverse;
}
.hero-orb.c {
  left: 40%; top: 60%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(197, 255, 94, 0.3), transparent 65%);
  animation-duration: 18s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.08); }
  66%      { transform: translate(-20px, 20px) scale(0.95); }
}

/* Living aurora nebula behind the hero */
.hero::before {
  content: "";
  position: absolute; inset: -20% -12%;
  z-index: 0; pointer-events: none;
  background:
    radial-gradient(42% 52% at 22% 26%, rgba(87,255,135,0.17), transparent 62%),
    radial-gradient(38% 48% at 82% 18%, rgba(197,255,94,0.13), transparent 62%),
    radial-gradient(46% 56% at 62% 82%, rgba(46,232,103,0.13), transparent 62%);
  filter: blur(34px);
  mask-image: linear-gradient(180deg, black 72%, transparent 98%);
  -webkit-mask-image: linear-gradient(180deg, black 72%, transparent 98%);
  animation: auroraDrift 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes auroraDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
  100% { transform: translate3d(-4%, 3%, 0) scale(1.1) rotate(4deg); }
}
/* Fine tech grid, radially masked to the panel side */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(87,255,135,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87,255,135,0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask: radial-gradient(120% 92% at 72% 16%, #000 0%, transparent 68%);
  mask: radial-gradient(120% 92% at 72% 16%, #000 0%, transparent 68%);
  opacity: 0.7;
}
@media (prefers-reduced-motion: reduce) { .hero::before { animation: none; } }

/* Staggered entrance for the supporting hero elements */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy .hero-sub,
  .hero-copy .cta-row,
  .hero-metrics { opacity: 0; animation: heroRise 0.85s cubic-bezier(.2,.8,.2,1) forwards; }
  .hero-copy .hero-sub { animation-delay: 0.54s; }
  .hero-copy .cta-row { animation-delay: 0.66s; }
  .hero-metrics { animation-delay: 0.8s; }
}

.hero > .container { position: relative; z-index: 1; width: 100%; }

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  font-size: 13px;
  position: relative;
  z-index: 6;
}
.hero-top .status { position: relative; z-index: 6; flex-shrink: 0; }
.hero-top .sub-label {
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-top .sub-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}
.hero-top .status {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(87, 255, 135, 0.04);
  backdrop-filter: blur(10px);
}
.hero-top .status .pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulseGlow 2s ease-in-out infinite;
}

.display {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: clamp(48px, 9.5vw, 168px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  margin-bottom: 48px;
  text-wrap: balance;
}
.hero-grid .display { font-size: clamp(44px, 6.2vw, 104px); margin-bottom: 32px; }
@media (max-width: 1080px) {
  .hero-grid .display { font-size: clamp(48px, 9vw, 128px); }
}
.display .serif { font-weight: 400; letter-spacing: -0.02em; color: var(--muted); }

/* headline lines (stacked, staggered reveal) */
.display .hl-line { display: block; }
@media (prefers-reduced-motion: no-preference) {
  .display .hl-line { opacity: 0; transform: translateY(26px); filter: blur(7px); animation: heroRise 0.85s cubic-bezier(.2,.8,.2,1) forwards; }
  .display .hl-line:nth-child(1) { animation-delay: 0.12s; }
  .display .hl-line:nth-child(2) { animation-delay: 0.26s; }
  .display .hl-line:nth-child(3) { animation-delay: 0.40s; }
}
@keyframes heroRise { to { opacity: 1; transform: none; filter: blur(0); } }

/* glowing words — animated gradient sheen instead of flat green */
.display .glow {
  background: linear-gradient(100deg, #57FF87 0%, #C5FF5E 22%, #9CFFB0 42%, #57FF87 60%, #C5FF5E 82%, #57FF87 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(87, 255, 135, 0.5)) drop-shadow(0 0 60px rgba(87, 255, 135, 0.22));
  animation: glowSheen 7s linear infinite;
}
@keyframes glowSheen { to { background-position: -260% 0; } }
@media (prefers-reduced-motion: reduce) {
  .display .glow { animation: none; background-position: 0 0; }
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
  margin-top: 24px;
}
@media (max-width: 820px) {
  /* Stack hero copy + CTAs in a single column; buttons never sit beside the sub or over the card */
  .hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero .cta-row { width: 100%; gap: 12px; flex-wrap: nowrap; }
  .hero .cta-row .btn { flex: 1 1 0; justify-content: center; min-height: 52px; }
}

/* ---------- Hero grid: copy + 3D scene ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
.hero-copy { min-width: 0; }
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- 3D Shopify scene ---------- */
.shopify-3d {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  perspective: 1400px;
  perspective-origin: 50% 40%;
  transform-style: preserve-3d;
  isolation: isolate;
}
@media (max-width: 1080px) {
  .shopify-3d { max-width: 540px; margin: 0 auto; }
}

.s3d-floor-glow {
  position: absolute;
  left: 50%; bottom: 6%;
  transform: translateX(-50%);
  width: 80%;
  height: 32%;
  background: radial-gradient(ellipse at center, rgba(87,255,135,0.22), rgba(87,255,135,0.05) 45%, transparent 75%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}
@keyframes floorPulse {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
  50%      { opacity: 0.95; transform: translateX(-50%) scale(1.08); }
}

.s3d-shadow {
  position: absolute;
  left: 50%; bottom: 4%;
  transform: translateX(-50%);
  width: 60%;
  height: 22px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.7), transparent 70%);
  filter: blur(12px);
  z-index: 0;
}

.s3d-bag {
  position: absolute;
  inset: 6% 4% 12% 4%;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
  z-index: 2;
  animation: bagFloat 6s ease-in-out infinite;
}
@keyframes bagFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -10px; }
}

/* Shopify Admin card — hero focal */
.s3d-card {
  width: 100%;
  max-width: 440px;
  padding: 24px;
  background:
    radial-gradient(120% 90% at 20% 0%, rgba(87,255,135,0.10), transparent 55%),
    linear-gradient(180deg, rgba(17,23,18,0.97), rgba(8,11,9,0.98));
  border: 1px solid rgba(87,255,135,0.32);
  border-radius: 24px;
  backdrop-filter: blur(22px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: box-shadow 0.6s var(--ease), border-color 0.6s var(--ease), transform 0.4s var(--ease);
  will-change: transform;
  box-shadow:
    0 50px 90px -30px rgba(0,0,0,0.7),
    0 0 70px -10px rgba(87,255,135,0.28),
    inset 0 1px 0 rgba(255,255,255,0.07);
}
/* sweeping sheen across the glass */
.s3d-card::before {
  content: "";
  position: absolute;
  top: -60%; left: -30%;
  width: 60%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.07) 45%, rgba(197,255,94,0.10) 50%, transparent 60%);
  transform: rotate(8deg);
  animation: s3dSheen 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes s3dSheen {
  0%, 100% { transform: translateX(-40%) rotate(8deg); opacity: 0; }
  45%      { opacity: 1; }
  60%      { transform: translateX(360%) rotate(8deg); opacity: 0; }
}
.s3d-card > * { position: relative; z-index: 2; }
.s3d-card-bar {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(87,255,135,0.12);
}
.s3d-card-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #95E5A8, #5BC36F);
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(87,255,135,0.45), inset 0 1px 0 rgba(255,255,255,0.3);
}
.s3d-card-mark svg { width: 20px; height: 20px; }
.s3d-card-bar-text {
  display: flex; flex-direction: column; line-height: 1.1; gap: 4px;
}
.s3d-card-eyebrow {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.s3d-card-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.s3d-card-status {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  background: rgba(87,255,135,0.12);
  border: 1px solid rgba(87,255,135,0.4);
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}
.s3d-card-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: dotBlink 1.4s ease-in-out infinite;
}

.s3d-card-rev {
  display: flex; flex-direction: column; gap: 6px;
}
.s3d-card-rev-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.s3d-card-rev-val {
  font-family: 'Geist', sans-serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.s3d-card-rev-val .s3d-card-rev-num {
  background: linear-gradient(120deg, var(--green) 20%, #C5FF5E 80%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: 0 0 30px rgba(87,255,135,0.35);
}
.s3d-card-rev-trend {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: var(--green);
  font-family: 'Geist Mono', ui-monospace, monospace;
}

.s3d-chart-wrap {
  position: relative;
  width: 100%;
}
.s3d-chart-dot {
  position: absolute;
  top: 8px; right: 1px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #C5FF5E;
  box-shadow: 0 0 0 3px rgba(197,255,94,0.25), 0 0 14px rgba(197,255,94,0.9);
  animation: chartDotPulse 2s ease-in-out infinite;
}
@keyframes chartDotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(197,255,94,0.25), 0 0 14px rgba(197,255,94,0.9); }
  50%      { box-shadow: 0 0 0 6px rgba(197,255,94,0.08), 0 0 20px rgba(197,255,94,1); }
}
.s3d-card-chart {
  width: 100%;
  height: 84px;
  display: block;
}
.s3d-card-chart path[stroke] {
  stroke-dasharray: 460;
  stroke-dashoffset: 460;
  animation: chartDraw 2.4s var(--ease) 0.4s forwards;
}
@keyframes chartDraw {
  to { stroke-dashoffset: 0; }
}

/* ---- interactive card ---- */
.s3d-card.interactive { cursor: pointer; }
.s3d-card.interactive:hover {
  border-color: rgba(87,255,135,0.5);
  box-shadow:
    0 50px 90px -30px rgba(0,0,0,0.7),
    0 0 90px -8px rgba(87,255,135,0.4),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.s3d-card.interactive:active { transform: scale(0.992); }

/* chart end-dot now rides the live last point */
.s3d-chart-dot {
  right: auto;
  transform: translate(-50%, -50%);
  transition: top 0.5s var(--ease);
}

/* revenue number pops on each sale (element is re-keyed) */
.s3d-card-rev-num { display: inline-block; animation: revPop 0.5s var(--ease) both; }
@keyframes revPop {
  0%   { transform: translateY(4px) scale(0.96); opacity: 0.5; }
  60%  { transform: translateY(0) scale(1.04); }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* ka-ching ripple — replays via React key remount on every sale */
.s3d-ripple {
  position: absolute;
  top: 30%; left: 50%;
  width: 40px; height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87,255,135,0.5), rgba(87,255,135,0) 70%);
  pointer-events: none;
  z-index: 4;
  animation: s3dRipple 0.85s var(--ease) forwards;
}
@keyframes s3dRipple {
  0%   { transform: scale(0.2); opacity: 0.85; }
  100% { transform: scale(11); opacity: 0; }
}

/* live waveform — idles gently, the whole row flashes on each sale (keyed remount) */
.s3d-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 26px;
  margin: -4px 0 2px;
  opacity: 0.55;
}
.s3d-wave.armed { animation: waveFlash 0.7s var(--ease); }
@keyframes waveFlash {
  0% { opacity: 1; filter: drop-shadow(0 0 6px rgba(87,255,135,0.8)); }
  100% { opacity: 0.55; filter: none; }
}
.s3d-wave-bar {
  width: 3px;
  height: 30%;
  border-radius: 2px;
  background: linear-gradient(180deg, #C5FF5E, var(--green));
  transform-origin: center;
  animation: waveIdle 1.1s ease-in-out infinite;
}
@keyframes waveIdle {
  0%, 100% { transform: scaleY(0.35); opacity: 0.6; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* tappable trigger pill */
.s3d-trigger {
  margin-top: 2px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1px solid rgba(87,255,135,0.4);
  background: linear-gradient(180deg, rgba(87,255,135,0.16), rgba(87,255,135,0.06));
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.s3d-trigger:hover {
  border-color: var(--green);
  background: linear-gradient(180deg, rgba(87,255,135,0.26), rgba(87,255,135,0.1));
  box-shadow: 0 0 26px -6px rgba(87,255,135,0.6);
  transform: translateY(-1px);
}
.s3d-trigger:active { transform: translateY(0) scale(0.98); }
.s3d-trigger-bolt { font-size: 14px; filter: drop-shadow(0 0 6px rgba(197,255,94,0.8)); }
/* gentle attention pulse on the trigger until first interaction */
.s3d-card.show-hint .s3d-trigger { animation: triggerHint 2.2s ease-in-out infinite; }
@keyframes triggerHint {
  0%, 100% { box-shadow: 0 0 0 0 rgba(87,255,135,0); }
  50%      { box-shadow: 0 0 24px -4px rgba(87,255,135,0.55); }
}
@media (prefers-reduced-motion: reduce) {
  .s3d-wave-bar, .s3d-ripple, .s3d-card.show-hint .s3d-trigger { animation: none; }
}

/* ---- Before → After drag scrubber ---- */
.s3d-slider-wrap { display: flex; flex-direction: column; gap: 9px; }
.s3d-slider-labels {
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.04em;
}
.s3d-slider-labels span { color: var(--muted); transition: color 0.25s var(--ease); }
.s3d-slider-labels span.on { color: var(--green); text-shadow: 0 0 12px rgba(87,255,135,0.4); }
.s3d-slider {
  position: relative;
  height: 30px;
  display: flex;
  align-items: center;
  cursor: grab;
  touch-action: none;
}
.s3d-slider:active { cursor: grabbing; }
.s3d-slider::before {
  content: ''; position: absolute; left: 0; right: 0; height: 6px;
  border-radius: 99px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
}
.s3d-slider-fill {
  position: absolute; left: 0; height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), #C5FF5E);
  box-shadow: 0 0 14px -2px rgba(87,255,135,0.7);
}
.s3d-slider-thumb {
  position: absolute; top: 50%;
  width: 26px; height: 26px;
  margin-left: -13px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #EAFFE0, #C5FF5E);
  border: 2px solid var(--bg);
  box-shadow: 0 4px 14px rgba(0,0,0,0.5), 0 0 0 1px rgba(87,255,135,0.5), 0 0 22px -2px rgba(87,255,135,0.8);
  cursor: grab;
}
.s3d-slider-thumb::after {
  content: ''; position: absolute; inset: 0; margin: auto;
  width: 10px; height: 2px; border-radius: 2px;
  background: rgba(4,33,15,0.55);
  box-shadow: 0 -4px 0 rgba(4,33,15,0.55), 0 4px 0 rgba(4,33,15,0.55);
  top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(90deg);
}
.s3d-slider:focus-visible { outline: none; }
.s3d-slider:focus-visible .s3d-slider-thumb { box-shadow: 0 4px 14px rgba(0,0,0,0.5), 0 0 0 3px rgba(87,255,135,0.5), 0 0 22px -2px rgba(87,255,135,0.9); }

.s3d-rev-delta {
  margin-left: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  vertical-align: middle;
  padding: 3px 8px;
  border-radius: 6px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.s3d-rev-delta.up   { color: var(--green); background: rgba(87,255,135,0.12); }
.s3d-rev-delta.flat { color: var(--muted); background: rgba(255,255,255,0.05); }

/* dim the chart + revenue in the "before" state so the delta reads */
.s3d-card.is-before .s3d-card-rev-num { background: none; -webkit-text-fill-color: var(--muted-2); color: var(--muted-2); }
.s3d-card.is-before .s3d-chart-line { stroke: var(--muted) !important; filter: none !important; opacity: 0.65; }
.s3d-card.is-before .s3d-chart-area { opacity: 0.3; }
.s3d-card.is-before .s3d-chart-dot { background: var(--muted); box-shadow: none; }

/* KPI chips — the concrete reasons */
.s3d-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.s3d-kpi {
  display: flex; flex-direction: column; gap: 5px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.s3d-card.is-after .s3d-kpi { border-color: rgba(87,255,135,0.22); background: rgba(87,255,135,0.05); }
.s3d-kpi-k { font-size: 9px; letter-spacing: 0.1em; color: var(--muted); }
.s3d-kpi-v { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); transition: color 0.3s var(--ease); }
.s3d-card.is-after .s3d-kpi-v { color: var(--green); text-shadow: 0 0 14px rgba(87,255,135,0.3); }

.s3d-card-hint {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--muted-2);
  margin-top: 2px;
}

.s3d-card-orders-list {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(87,255,135,0.12);
  padding-top: 14px;
  gap: 8px;
}
.s3d-card-orders-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.s3d-card-order.fresh {
  animation: orderFresh 0.7s var(--ease) both;
  background: rgba(87,255,135,0.1);
  border-color: rgba(87,255,135,0.35);
}
@keyframes orderFresh {
  0%   { opacity: 0; transform: translate3d(-12px, -8px, 0); background: rgba(87,255,135,0.25); }
  60%  { opacity: 1; transform: translate3d(0, 0, 0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); background: rgba(87,255,135,0.1); }
}

.s3d-card-orders-count { color: var(--green); }
.s3d-card-order {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: rgba(87,255,135,0.04);
  border: 1px solid rgba(87,255,135,0.1);
  border-radius: 10px;
  font-size: 12px;
  animation: orderSlide 0.6s var(--ease) both;
}
.s3d-card-order:nth-child(2) { animation-delay: 0.15s; }
.s3d-card-order:nth-child(3) { animation-delay: 0.30s; }
@keyframes orderSlide {
  0%   { opacity: 0; transform: translateX(8px); }
  100% { opacity: 1; transform: translateX(0); }
}
.s3d-card-order-tick {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(87,255,135,0.18);
  border: 1px solid rgba(87,255,135,0.4);
  display: grid; place-items: center;
  color: var(--green);
  flex-shrink: 0;
}
.s3d-card-order-id {
  font-size: 11px;
  color: var(--green);
  font-weight: 500;
  flex-shrink: 0;
}
.s3d-card-order-p {
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  font-size: 12px;
}
.s3d-card-order-a {
  font-family: 'Geist Mono', ui-monospace, monospace;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
}
.s3d-bag-glow {
  position: absolute;
  inset: 10% 14%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 55%, rgba(87,255,135,0.35), transparent 60%);
  filter: blur(28px);
  z-index: 1;
  pointer-events: none;
  animation: bagGlowPulse 3.5s ease-in-out infinite;
}
@keyframes bagGlowPulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}
.s3d-bag-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 116%; height: 86%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  background: conic-gradient(from 0deg,
    transparent 0deg,
    rgba(87,255,135,0.45) 60deg,
    transparent 140deg,
    transparent 220deg,
    rgba(197,255,94,0.4) 300deg,
    transparent 360deg);
  filter: blur(34px);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
  animation: ringGlowSpin 9s linear infinite;
}
@keyframes ringGlowSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---------- Order tickets ---------- */
.s3d-orders {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  transform-style: preserve-3d;
}
.s3d-order {
  position: absolute;
  top: 14%;
  left: -8%;
  min-width: 220px;
  padding: 12px 14px;
  background: rgba(10, 14, 11, 0.85);
  border: 1px solid rgba(87,255,135,0.35);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.5),
    0 0 24px rgba(87,255,135,0.25),
    inset 0 1px 0 rgba(255,255,255,0.06);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--ink, #E8FFE8);
  animation: orderFly 3.2s cubic-bezier(.4,.1,.3,1) forwards;
  transform-origin: center;
  will-change: transform, opacity;
}
.s3d-order:nth-child(2n)  { top: 28%; animation-delay: 0.05s; }
.s3d-order:nth-child(3n)  { top: 42%; left: auto; right: -8%; }
.s3d-order:nth-child(4n)  { top: 58%; }
.s3d-order:nth-child(5n)  { top: 22%; left: auto; right: -10%; }

@keyframes orderFly {
  0%   { opacity: 0; transform: translate3d(-30px, -10px, 0) scale(0.85) rotate(-4deg); }
  18%  { opacity: 1; transform: translate3d(20px, 0, 0)     scale(1)    rotate(0deg); }
  62%  { opacity: 1; transform: translate3d(180px, 30px, 0) scale(0.92) rotate(3deg); }
  85%  { opacity: 0.7; transform: translate3d(220px, 130px, -40px) scale(0.55) rotate(8deg); }
  100% { opacity: 0; transform: translate3d(230px, 200px, -80px) scale(0.2) rotate(12deg); }
}
.s3d-order:nth-child(3n), .s3d-order:nth-child(5n) {
  /* tickets coming from the right slide left into the bag */
  animation-name: orderFlyRight;
}
@keyframes orderFlyRight {
  0%   { opacity: 0; transform: translate3d(30px, -10px, 0) scale(0.85) rotate(4deg); }
  18%  { opacity: 1; transform: translate3d(-20px, 0, 0)     scale(1)    rotate(0deg); }
  62%  { opacity: 1; transform: translate3d(-180px, 30px, 0) scale(0.92) rotate(-3deg); }
  85%  { opacity: 0.7; transform: translate3d(-220px, 130px, -40px) scale(0.55) rotate(-8deg); }
  100% { opacity: 0; transform: translate3d(-230px, 200px, -80px) scale(0.2) rotate(-12deg); }
}

.s3d-order-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 6px;
}
.s3d-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green, #57FF87);
  box-shadow: 0 0 8px var(--green, #57FF87);
  animation: dotBlink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.45; }
}
.s3d-order-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
  color: var(--muted, #7A8C7E);
}
.s3d-order-amt {
  margin-left: auto;
  color: var(--green, #57FF87);
  font-weight: 600;
}
.s3d-order-prod {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink, #E8FFE8);
}
.s3d-order-qty {
  color: var(--muted, #7A8C7E);
  font-weight: 400;
}

/* ---------- Counter pill ---------- */
.s3d-counter {
  position: absolute;
  top: 6%;
  right: -2%;
  padding: 14px 18px;
  background: rgba(10, 14, 11, 0.9);
  border: 1px solid rgba(87,255,135,0.4);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.55),
    0 0 28px rgba(87,255,135,0.3),
    inset 0 1px 0 rgba(255,255,255,0.05);
  z-index: 5;
  animation: counterPop 0.5s cubic-bezier(.2,.9,.3,1.4);
  min-width: 150px;
}
@keyframes counterPop {
  0%   { transform: scale(0.96); box-shadow: 0 0 60px rgba(87,255,135,0.7), inset 0 0 0 1px rgba(87,255,135,0.6); }
  100% { transform: scale(1);    box-shadow: 0 12px 30px rgba(0,0,0,0.55), 0 0 28px rgba(87,255,135,0.3); }
}
.s3d-counter-top {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted, #7A8C7E);
  margin-bottom: 6px;
}
.s3d-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green, #57FF87);
  box-shadow: 0 0 8px var(--green, #57FF87);
  animation: dotBlink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.s3d-pulse.green { background: var(--green, #57FF87); }
.s3d-counter-num {
  font-family: 'Instrument Serif', serif;
  font-size: 38px;
  line-height: 1;
  color: var(--ink, #E8FFE8);
  letter-spacing: -0.02em;
}
.s3d-counter-rev {
  margin-top: 4px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--green, #57FF87);
}

/* ---------- Live strip ---------- */
.s3d-strip {
  position: absolute;
  bottom: 4%;
  left: 4%;
  right: 4%;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted, #7A8C7E);
  background: rgba(10,14,11,0.7);
  border: 1px solid rgba(87,255,135,0.18);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  z-index: 5;
}
.s3d-strip .mono { display: inline-flex; align-items: center; gap: 6px; color: var(--green, #57FF87); }
.hero-sub {
  max-width: 520px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.4;
  color: var(--muted);
}
.hero-sub strong { color: var(--ink); font-weight: 500; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero metrics strip */
.hero-metrics {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
@media (max-width: 820px) { .hero-metrics { grid-template-columns: repeat(2, 1fr); } }
.metric .v {
  font-family: 'Geist', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--green);
  text-shadow: 0 0 20px rgba(87, 255, 135, 0.5);
}
.metric .v .serif { color: var(--muted); font-size: 0.7em; }
.metric .l { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ---------- Marquee ---------- */
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 15px 0;
  background: var(--bg-2);
  overflow: hidden;
  padding: 30px 0;
  position: relative;
}
.marquee-wrap::before, .marquee-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px;
  z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0;  background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }

.marquee {
  display: flex;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  align-items: center;
  width: max-content;
}
.mq-item { display: inline-flex; align-items: center; padding: 0 26px; }
.mq-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  margin-right: 26px;
  flex-shrink: 0;
}
.mq-text {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
@keyframes scroll { to { transform: translateX(-50%); } }
@keyframes spin   { to { transform: rotate(360deg); } }

/* ---------- Section heads ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: end;
  padding: 140px 0 72px;
}
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; padding: 90px 0 40px; }
}
.section-head .eyebrow {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Geist Mono', monospace;
}
.section-head .eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}
.section-head h2 {
  font-size: clamp(36px, 5.5vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.section-head h2 .serif { font-weight: 400; color: var(--muted); }
.section-head h2 .glow {
  color: var(--green);
  text-shadow: 0 0 30px rgba(87, 255, 135, 0.5);
}
.section-head .section-sub {
  grid-column: 2;
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: -0.005em;
  max-width: 56ch;
}
@media (max-width: 820px) {
  .section-head .section-sub { grid-column: 1; font-size: 16px; }
}

/* ---------- Services — 3D tilt cards ---------- */
.services-section { padding-bottom: 140px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  perspective: 1200px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  background: linear-gradient(180deg, rgba(87, 255, 135, 0.04), transparent 40%), var(--panel);
  min-height: 460px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: default;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(87, 255, 135, 0.15), transparent 50%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 30px 80px -20px rgba(87, 255, 135, 0.25), 0 0 0 1px var(--line-strong);
}
.service-card:hover::before { opacity: 1; }

.service-card .num {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--green);
  letter-spacing: 0.1em;
}
.service-card h3 {
  margin-top: 18px;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  transform: translateZ(20px);
}
.service-card .desc {
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 32ch;
}
.service-visual {
  margin-top: auto;
  height: 180px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
  transform: translateZ(30px);
}
.svc-link {
  position: relative; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 18px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--green);
  transform: translateZ(30px);
  transition: gap 0.25s var(--ease);
}
.svc-link:hover { gap: 11px; }
.service-card .bullets {
  margin-top: 20px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.service-card .bullets span {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(87, 255, 135, 0.06);
  color: var(--ink);
  border: 1px solid var(--line);
}

/* ---------- Portfolio ---------- */
.portfolio-section {
  padding-bottom: 140px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.work-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
}
.work-item:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 20px 60px -20px rgba(87, 255, 135, 0.35);
}
.work-item.big { grid-column: span 7; }
.work-item.mid { grid-column: span 5; }
.work-item.sm  { grid-column: span 4; }
.work-item.lg-wide { grid-column: span 8; aspect-ratio: 16/9; }

@media (max-width: 900px) {
  .work-item, .work-item.big, .work-item.mid, .work-item.sm, .work-item.lg-wide {
    grid-column: span 12;
    aspect-ratio: 4/3;
  }
}
.work-canvas { position: absolute; inset: 0; }
.work-meta {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  display: flex; justify-content: space-between; align-items: end;
  z-index: 3;
}
.work-meta .tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(5, 7, 5, 0.7);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
}
.work-meta h4 {
  font-size: 22px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink);
}
.work-meta .stat {
  font-size: 11px; letter-spacing: 0.08em; color: var(--green); text-transform: uppercase;
  font-family: 'Geist Mono', monospace;
}

/* ---------- Why — orbit ring effect ---------- */
.why-section { padding-bottom: 140px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--panel);
}
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }
.why-item {
  padding: 44px 36px 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
  min-height: 240px;
  position: relative;
  transition: background 0.3s var(--ease);
  overflow: hidden;
}
.why-item:nth-child(2n) { border-right: none; }
.why-item:nth-last-child(-n+2) { border-bottom: none; }
.why-item:hover { background: radial-gradient(400px circle at 20% 0%, rgba(87, 255, 135, 0.06), transparent 60%); }
.why-item .why-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 36px;
  color: var(--green);
  text-shadow: 0 0 16px rgba(87, 255, 135, 0.4);
}
.why-item h4 {
  font-size: 28px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.1;
}
.why-item p { color: var(--muted); font-size: 15px; max-width: 38ch; }

/* ---------- Process — timeline with glow ---------- */
.process-section {
  padding-bottom: 140px;
}
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--green), transparent);
  box-shadow: 0 0 14px var(--green);
  animation: sweep 4s ease-in-out infinite;
}
@keyframes sweep {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}
@media (max-width: 1080px) {
  .process-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .process-track { grid-template-columns: 1fr; }
}

.process-step {
  padding: 40px 30px 44px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  min-width: 0;
  min-height: 340px;
  transition: background 0.3s var(--ease);
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(87, 255, 135, 0.03); }
@media (max-width: 1080px) {
  .process-step { border-right: none; border-bottom: 1px solid var(--line); min-height: 0; padding: 22px 20px 26px; gap: 10px; }
  .process-step:nth-child(odd) { border-right: 1px solid var(--line); }
  .process-step:nth-last-child(-n+2) { border-bottom: none; }
  .process-step h4 { font-size: 34px; }
  .process-step p { font-size: 13px; margin-top: 4px; }
}
@media (max-width: 600px) {
  .process-step { padding: 20px 18px 22px; }
  .process-step:nth-child(odd) { border-right: none; }
  .process-step:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: none; }
  .process-step h4 { font-size: 30px; }
}
.process-step .step-num {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; color: var(--green); letter-spacing: 0.14em;
}
.process-step h4 {
  font-size: 52px; font-weight: 500; letter-spacing: -0.03em; line-height: 0.95;
  overflow-wrap: break-word;
}
.process-step h4 .glow { color: var(--green); text-shadow: 0 0 24px rgba(87, 255, 135, 0.4); }
.process-step h4 .serif { color: var(--muted); font-weight: 400; }
.process-step p {
  color: var(--muted); font-size: 14px; line-height: 1.55; margin-top: auto;
}
.process-step .tick-row {
  display: flex; gap: 6px; margin-top: 8px;
}
.process-step .tick {
  height: 3px; flex: 1;
  background: rgba(87, 255, 135, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.process-step .tick.active {
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

/* ---------- Why principles row (combined section) ---------- */
.why-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 8px 0 56px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel);
}
.why-principle {
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-principle:last-child { border-right: none; }
.why-principle-k {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--green);
  text-shadow: 0 0 14px rgba(87, 255, 135, 0.3);
}
.why-principle-v { font-size: 14px; line-height: 1.5; color: var(--muted); }
@media (max-width: 900px) {
  .why-principles { grid-template-columns: 1fr 1fr; }
  .why-principle:nth-child(2n) { border-right: none; }
  .why-principle:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .why-principles { grid-template-columns: 1fr; }
  .why-principle { border-right: none; border-bottom: 1px solid var(--line); }
  .why-principle:last-child { border-bottom: none; }
}

/* ---------- Certifications / official partner badges ---------- */
.certs { padding: 30px 0 70px; }
.certs-head {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 26px;
}
.certs-eyebrow { font-size: 11px; letter-spacing: 0.18em; color: var(--muted); white-space: nowrap; }
.certs-verified { color: var(--green); }
.certs-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
.certs-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}
.cert-badge {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 132px;
  padding: 26px 30px;
  border-radius: 18px;
  background:
    radial-gradient(120% 110% at 50% 130%, rgba(87,255,135,0.12), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012));
  border: 1px solid var(--line-strong);
  box-shadow: 0 26px 56px -34px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.cert-badge::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000, transparent 78%);
  mask-image: radial-gradient(120% 100% at 50% 0%, #000, transparent 78%);
}
.cert-badge:hover {
  transform: translateY(-4px);
  border-color: rgba(87,255,135,0.42);
  box-shadow: 0 34px 66px -30px rgba(0,0,0,0.95), 0 0 48px -14px rgba(87,255,135,0.42);
}
.cert-logo { position: relative; display: grid; place-items: center; width: 100%; }
.cert-logo img {
  max-height: 50px; max-width: 78%; width: auto; object-fit: contain; display: block;
  opacity: 0.92; filter: drop-shadow(0 3px 16px rgba(0,0,0,0.5));
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.cert-badge:hover .cert-logo img { opacity: 1; transform: scale(1.03); }
.cert-shine {
  position: absolute; top: 0; left: -60%; width: 38%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(87,255,135,0.16), transparent);
  transform: skewX(-18deg); pointer-events: none;
  animation: certScan 6s ease-in-out infinite;
}
.cert-badge:nth-child(2) .cert-shine { animation-delay: 3s; }
@keyframes certScan { 0%, 100% { left: -60%; } 50% { left: 130%; } }
@media (prefers-reduced-motion: reduce) { .cert-shine { animation: none; } }
.cert-check {
  position: absolute; top: 12px; right: 12px; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  color: #05130a; background: var(--green);
  box-shadow: 0 0 0 4px rgba(87,255,135,0.16);
}
@media (max-width: 560px) {
  .certs-row { grid-template-columns: 1fr; max-width: 420px; }
  .cert-badge { min-height: 110px; padding: 22px; }
  .certs-verified { display: none; }
}

/* ---------- Partners ---------- */
.partners { padding-bottom: 140px; }
.partners-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 820px) {
  .partners-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
.partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  text-decoration: none;
  min-height: 180px;
  transition: transform 0.4s var(--ease), border-color 0.35s var(--ease), box-shadow 0.4s var(--ease);
}
.partner-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 64px -32px rgba(0,0,0,0.9), 0 0 44px -16px rgba(87,255,135,0.22);
}
.partner-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.partner-logo {
  display: flex;
  align-items: center;
  height: 34px;
  min-width: 0;
}
.partner-logo img { height: 28px; width: auto; max-width: 168px; object-fit: contain; display: block; }
.partner-initials {
  font-family: 'Geist Mono', monospace;
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
}
.partner-meta { display: flex; flex-direction: column; gap: 7px; margin-top: auto; }
.partner-tag { font-size: 15px; color: var(--ink); line-height: 1.45; letter-spacing: -0.01em; }
.partner-url { font-size: 11px; letter-spacing: 0.06em; color: var(--muted); }
.partner-arrow {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.partner-card:hover .partner-arrow { background: var(--green); color: var(--bg); transform: translate(2px,-2px); }
.partner-edit {
  position: absolute; top: 10px; right: 10px;
  padding: 4px 9px; border-radius: 999px;
  background: rgba(5,7,5,0.78); border: 1px solid var(--line-strong);
  font-size: 10px; letter-spacing: 0.06em; color: var(--green); cursor: pointer;
}

/* Partners — compact 2-col on mobile (must come after base rules) */
@media (max-width: 820px) {
  .partner-card { padding: 15px 13px; gap: 16px; min-height: 0; min-width: 0; border-radius: 14px; }
  .partner-top { gap: 10px; }
  .partner-logo { height: 22px; }
  .partner-logo img { height: 20px; max-width: 100%; }
  .partner-initials { font-size: 15px; }
  .partner-tag { font-size: 12px; line-height: 1.4; }
  .partner-url { font-size: 9px; letter-spacing: 0.02em; word-break: break-all; }
  .partner-arrow { width: 28px; height: 28px; }
  .partner-arrow svg { width: 12px; height: 12px; }
}

/* ---------- Testimonials ---------- */
.testi-section { padding-bottom: 140px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
  position: relative;
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  display: flex; flex-direction: column; gap: 24px;
  min-height: 320px;
  transition: transform 0.35s var(--ease), border-color 0.3s var(--ease), box-shadow 0.35s var(--ease);
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 40px -10px rgba(87, 255, 135, 0.2);
}
.testi-card.accent {
  background: radial-gradient(ellipse at top left, rgba(87, 255, 135, 0.18), transparent 60%), var(--panel);
  border-color: var(--line-strong);
}

.quote-mark {
  font-family: 'Instrument Serif', serif;
  font-size: 72px;
  line-height: 0.7;
  color: var(--green);
  height: 36px;
  text-shadow: 0 0 20px rgba(87, 255, 135, 0.5);
}
.testi-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.testi-logo-chip {
  flex-shrink: 0;
  height: 46px;
  display: grid;
  place-items: center;
  background: transparent;
  opacity: 1;
}
.testi-logo-chip img {
  max-height: 42px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  display: block;
}
.testi-logo-chip.invert img { filter: brightness(0) invert(1); }
.testi-quote { font-size: 18px; line-height: 1.45; letter-spacing: -0.01em; }
.testi-who { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.who-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-3));
  flex-shrink: 0;
  font-family: 'Instrument Serif', serif;
  color: var(--bg);
  display: grid; place-items: center;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(87, 255, 135, 0.4);
}
.who-meta { font-size: 13px; color: var(--muted); line-height: 1.3; }
.who-meta strong { color: var(--ink); font-weight: 500; display: block; }

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  padding: 160px 0 180px;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(87, 255, 135, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 60% at 80% 60%, rgba(197, 255, 94, 0.14), transparent 55%);
  pointer-events: none;
}
/* orbit rings */
.final-cta::before, .final-cta::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.final-cta::before {
  width: 700px; height: 700px;
  animation: rotate 40s linear infinite;
}
.final-cta::after {
  width: 1100px; height: 1100px;
  border-color: rgba(87, 255, 135, 0.06);
  animation: rotate 60s linear infinite reverse;
}
@keyframes rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }

.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(48px, 10vw, 176px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
  max-width: 13ch;
  text-wrap: balance;
}
.final-cta h2 .serif { font-weight: 400; color: var(--muted); }
.final-cta h2 .glow {
  color: var(--green);
  text-shadow: 0 0 30px rgba(87, 255, 135, 0.5), 0 0 80px rgba(87, 255, 135, 0.3);
  animation: textPulse 4s ease-in-out infinite;
}
.final-cta .cta-row { margin-top: 56px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-2);
  color: var(--ink);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
.footer-brand h4 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 16px;
}
.footer-brand h4 .serif { font-weight: 400; color: var(--green); text-shadow: 0 0 20px rgba(87, 255, 135, 0.4); }
.footer-brand p { color: var(--muted); max-width: 38ch; font-size: 14px; line-height: 1.55; }
.footer-logo {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 10px rgba(87, 255, 135, 0.35));
}
.footer-address {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  max-width: 38ch;
}
.footer-address .fa-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.footer-address .fa-tel {
  color: var(--ink);
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ease);
}
.footer-address .fa-tel:hover { color: var(--green); }
.made-author {
  color: var(--green);
  font-weight: 500;
  margin: 0 2px;
}
.made-author:hover { text-decoration: underline; }
.footer-col h5 {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 18px; font-weight: 500;
  font-family: 'Geist Mono', monospace;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 15px; color: var(--ink);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--green); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .made .heart { color: var(--green); filter: drop-shadow(0 0 4px var(--green)); }

.footer-mega {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(80px, 22vw, 360px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.85;
  text-align: center;
  margin-top: 72px;
  color: var(--ink);
  opacity: 0.95;
  user-select: none;
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(87, 255, 135, 0.3) 60%, transparent 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-mega span.dot { color: var(--green); -webkit-text-fill-color: var(--green); text-shadow: 0 0 30px var(--green); }

/* ---------- Reveal animation ---------- */
.js-ready .reveal:not(.in) {
  opacity: 0;
  transform: translateY(28px);
}
.reveal {
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.js-ready .reveal-stagger:not(.in) > * {
  opacity: 0;
  transform: translateY(28px);
}
.reveal-stagger > * {
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.18s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.32s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.46s; }

/* Hero entry */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(32px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
.hero .hero-top,
.hero .display,
.hero .hero-bottom,
.hero .hero-metrics {
  animation: heroRise 1s var(--ease) both;
}
.hero .hero-top     { animation-delay: 0.05s; }
.hero .display      { animation-delay: 0.20s; }
.hero .hero-bottom  { animation-delay: 0.40s; }
.hero .hero-metrics { animation-delay: 0.60s; }

/* ---------- Cursor light (follows pointer) ---------- */
.cursor-light {
  position: fixed;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 255, 135, 0.12), transparent 60%);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  z-index: 1;
  transition: opacity 0.3s ease;
  opacity: 0;
  mix-blend-mode: screen;
  will-change: transform;
}
body:hover .cursor-light { opacity: 1; }

/* ---------- Tweaks panel ---------- */
.tweaks {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 9999;
  width: 280px;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  border-radius: 16px;
  padding: 18px;
  font-size: 13px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(87, 255, 135, 0.15);
  display: none;
}
.tweaks.on { display: block; }
.tweaks h5 {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px; font-family: 'Geist Mono', monospace;
}
.tweaks .row { margin-bottom: 14px; }
.tweaks .row label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.tweaks .swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.tweaks .sw {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.tweaks .sw:hover { transform: scale(1.1); }
.tweaks .sw.active { border-color: var(--ink); box-shadow: 0 0 12px currentColor; }
.tweaks .opt {
  display: flex; gap: 6px;
}
.tweaks .opt button {
  flex: 1;
  padding: 8px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 12px;
  font-family: inherit;
}
.tweaks .opt button.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--bg);
  box-shadow: 0 0 12px rgba(87, 255, 135, 0.4);
}

::selection { background: var(--green); color: var(--bg); }

/* ====================================================== */
/* EMAIL MARKETING                                         */
/* ====================================================== */
.emails {
  position: relative;
  padding: 60px 0 140px;
  overflow: hidden;
}
.emails::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(87,255,135,0.08), transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(197,255,94,0.06), transparent 70%);
  pointer-events: none;
}
.emails > .container { position: relative; z-index: 1; }

/* Flow timeline */
.email-timeline {
  position: relative;
  height: 90px;
  margin: 56px 0 56px;
  padding: 0 20px;
}
.et-line {
  position: absolute;
  top: 18px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(87,255,135,0.4) 8%, rgba(87,255,135,0.4) 92%, transparent);
  box-shadow: 0 0 12px rgba(87,255,135,0.3);
}
.et-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  width: 30%;
  animation: arrowFlow 4s linear infinite;
  filter: blur(0.5px);
}
.et-node {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.et-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--bg);
  box-shadow: 0 0 12px var(--green), 0 0 0 4px rgba(87,255,135,0.15);
  margin-top: 11px;
  animation: dotBlink 1.8s ease-in-out infinite;
}
.et-node:nth-child(3) .et-dot { animation-delay: 0.3s; }
.et-node:nth-child(4) .et-dot { animation-delay: 0.6s; }
.et-node:nth-child(5) .et-dot { animation-delay: 0.9s; }
.et-node:nth-child(6) .et-dot { animation-delay: 1.2s; }
.et-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.et-name {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
@media (max-width: 980px) {
  .email-timeline { display: none; }
}

/* Email cards grid */
.email-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 820px) {
  .email-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    counter-reset: email-step;
  }
  .email-grid::-webkit-scrollbar { display: none; }
  .email-card { flex: 0 0 82%; scroll-snap-align: center; counter-increment: email-step; }
  .email-card::before {
    content: "Email " counter(email-step) " din 5 · glisează →";
    display: block;
    padding: 12px 18px 0;
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
  }
}

.email-card {
  background: linear-gradient(180deg, #0A0D0A, #050705);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 240px) 1fr;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  min-height: 320px;
}
@media (max-width: 580px) {
  .email-card { grid-template-columns: 1fr; min-height: auto; }
}
.email-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 36px rgba(87,255,135,0.15);
}

/* Left side: meta */
.ec-head {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between;
  gap: 14px;
  padding: 22px 22px 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(87,255,135,0.08), transparent 60%),
    rgba(255,255,255,0.015);
  border-right: 1px solid var(--line);
}
.ec-head-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; width: 100%;
}
@media (max-width: 580px) {
  .ec-head { border-right: none; border-bottom: 1px solid var(--line); }
}
.ec-tag {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  padding: 4px 10px;
  background: rgba(87,255,135,0.1);
  border: 1px solid rgba(87,255,135,0.3);
  border-radius: 999px;
}
.ec-timing {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.ec-subject {
  display: flex; flex-direction: column; gap: 6px;
  flex: 1;
}
.ec-from {
  font-size: 10px;
  color: var(--muted);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.06em;
}
.ec-line {
  font-family: 'Geist', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.ec-foot {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
}
.ec-stat {
  font-size: 12px;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.ec-stat .mono {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ec-stat.green { color: var(--green); }

/* Right side: preview window */
.ec-preview {
  position: relative;
  background: #fff;
  overflow: hidden;
  border-left: 1px solid var(--line);
  min-height: 100%;
}
@media (max-width: 580px) {
  .ec-preview { min-height: 320px; height: 320px; border-left: none; }
}
.ec-preview-bar {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px;
  background: #F2F2EF;
  border-bottom: 1px solid #E0E0DC;
  position: relative;
  z-index: 2;
}
.ec-pb-dot { width: 8px; height: 8px; border-radius: 50%; }
.ec-pb-dot.r { background: #FF5F57; }
.ec-pb-dot.y { background: #FEBC2E; }
.ec-pb-dot.g { background: #28C840; }
.ec-pb-meta {
  margin-left: 8px;
  font-size: 9px;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ec-preview-scroll {
  position: absolute;
  inset: 30px 0 0 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(87,255,135,0.4) transparent;
}
.ec-preview-scroll::-webkit-scrollbar { width: 6px; }
.ec-preview-scroll::-webkit-scrollbar-thumb { background: rgba(87,255,135,0.4); border-radius: 3px; }
.ec-preview-scroll::-webkit-scrollbar-track { background: transparent; }
.ec-preview-scroll img {
  display: block;
  width: 100%;
  height: auto;
}
.ec-preview-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.7) 60%, #fff);
  pointer-events: none;
  z-index: 1;
}

/* Workflow summary */
.email-workflow {
  margin-top: 56px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(87,255,135,0.06), transparent 80%), rgba(255,255,255,0.02);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
.ew-head {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ew-head::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: dotBlink 1.4s ease-in-out infinite;
}
.ew-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .ew-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
.ew-stat {
  border-left: 1px solid var(--line-strong);
  padding: 6px 0 6px 18px;
}
.ew-stat-num {
  font-family: 'Geist', sans-serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--green);
  text-shadow: 0 0 20px rgba(87,255,135,0.3);
}
.ew-stat-num .unit {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 0.5em;
  color: var(--muted);
  margin-left: 2px;
  text-shadow: none;
}
.ew-stat-label {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.06em;
}

/* ====================================================== */
/* MOBILE OPTIMIZATION                                     */
/* ====================================================== */

/* Tablet portrait & down — hero stacks, 3D order panel hidden (it overlaps on small screens) */
@media (max-width: 860px) {
  .hero { min-height: auto; padding: 116px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-grid .display { font-size: clamp(38px, 11vw, 62px); line-height: 1.04; }
  /* Hero copy + CTAs always stack, full-width, clearly visible */
  .hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 28px;
  }
  .hero-sub { font-size: 17px; }
  .hero .cta-row { width: 100%; gap: 12px; flex-wrap: nowrap; }
  .hero .cta-row .btn { flex: 1 1 0; justify-content: center; min-height: 54px; padding: 16px 18px; transform: none !important; }
  /* Show the Before/After panel on mobile — flattened (no 3D tilt / overflow) so it flows below the CTAs */
  .shopify-3d {
    display: block; position: relative;
    aspect-ratio: auto; perspective: none;
    max-width: 430px; margin: 36px auto 0; padding: 0;
  }
  .s3d-bag { position: static; inset: auto; transform: none !important; animation: none; place-items: stretch; }
  .s3d-floor-glow, .s3d-shadow, .s3d-bag-glow, .s3d-bag-ring { display: none; }
  .s3d-card { max-width: 100%; }
  .hero-metrics { margin-top: 44px; gap: 14px; padding-top: 28px; }
  .cursor-light { display: none; }
}

@media (max-width: 720px) {
  .section-head { padding: 70px 0 32px; }
  .section-head h2 { font-size: clamp(30px, 8vw, 52px); }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .metric .v { font-size: clamp(34px, 9vw, 48px); }
  .perf-row { gap: 16px; }
  .perf-creative { max-width: 220px; margin: 0 auto; }
  .builder-stage { gap: 16px; }
  .builder-vitals { padding: 18px; gap: 18px; }
  .bv-gauge-svg { width: 180px; }
  .bv-gauge-num { font-size: 50px; }
  .footer-mega { font-size: clamp(60px, 20vw, 200px); }
  /* container side padding a touch tighter on phones */
  .container { padding-left: 20px; padding-right: 20px; }
  /* tame oversized horizontal reels so they read on small screens */
  .adreel-stage { height: clamp(300px, 64vw, 380px); }
  .adreel-card { height: clamp(260px, 56vw, 340px); }
  .mq-text { font-size: 12px; letter-spacing: 0.16em; }
}

/* ---------- Floating WhatsApp button ---------- */
.wa-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 60px;
  width: 60px;
  padding: 0;
  border-radius: 999px;
  background: #25D366;
  color: #04210f;
  box-shadow: 0 12px 34px -8px rgba(37, 211, 102, 0.6), 0 0 0 6px rgba(37, 211, 102, 0.12);
  overflow: hidden;
  transition: width 0.45s var(--ease), box-shadow 0.35s var(--ease), transform 0.25s var(--ease);
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-fab svg { flex: 0 0 60px; width: 60px; height: 30px; display: block; padding: 0; }
.wa-fab-label {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  opacity: 0;
  padding-right: 22px;
  transition: opacity 0.3s var(--ease);
}
.wa-fab:hover {
  width: 252px;
  box-shadow: 0 16px 44px -8px rgba(37, 211, 102, 0.7), 0 0 0 6px rgba(37, 211, 102, 0.18);
  animation: none;
}
.wa-fab:hover .wa-fab-label { opacity: 1; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 34px -8px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 12px 34px -8px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0); }
}
@media (max-width: 600px) {
  .wa-fab { right: 16px; bottom: 16px; height: 54px; width: 54px; }
  .wa-fab svg { flex-basis: 54px; width: 54px; }
  .wa-fab:hover { width: 54px; }
  .wa-fab:hover .wa-fab-label { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .wa-fab { animation: none; } }

@media (max-width: 480px) {
  .nav-cta { padding: 9px 14px; font-size: 13px; }
  .nav-cta .dot { display: inline-block; }
  .btn { padding: 15px 20px; font-size: 14px; }
  .ec-preview { height: 320px; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
  .section-head .eyebrow { font-size: 11px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ====================================================== */
/* TEAM section                                            */
/* ====================================================== */
.team {
  position: relative;
  padding: 0 0 140px;
  overflow: hidden;
}
.team::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 50% 30%, rgba(87,255,135,0.07), transparent 70%);
  pointer-events: none;
}
.team > .container { position: relative; z-index: 1; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
@media (max-width: 980px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .team-card:nth-child(3) { grid-column: 1 / -1; width: calc(50% - 7px); justify-self: center; }
  .tm-photo { aspect-ratio: 4/5; }
  .tm-photo img { object-position: 50% 18%; }
  .tm-body { padding: 16px 16px 18px; gap: 8px; }
  .tm-name { font-size: 21px; }
  .tm-bio { font-size: 12.5px; line-height: 1.45; }
}
@media (max-width: 560px) {
  .team-grid { gap: 10px; }
  .team-card:nth-child(3) { width: calc(50% - 5px); }
  .tm-photo { aspect-ratio: 1/1; }
  .tm-body { padding: 13px 12px 15px; gap: 6px; }
  .tm-role { font-size: 8.5px; letter-spacing: 0.12em; }
  .tm-name { font-size: 16px; }
  .tm-bio { font-size: 10.5px; line-height: 1.4; }
  .tm-accent { top: 9px; left: 9px; padding: 3px 7px; font-size: 8px; }
}

.team-card {
  position: relative;
  background: linear-gradient(180deg, #0A0D0A, #050705);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.55),
    0 0 50px rgba(87,255,135,0.2);
}

.tm-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #0F1410;
}
.tm-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.team-card:hover .tm-photo img { transform: scale(1.04); }
.tm-photo-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(5,7,5,0.95) 100%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(87,255,135,0.18), transparent 70%);
  pointer-events: none;
}
.tm-accent {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 10px;
  background: rgba(5,7,5,0.7);
  border: 1px solid rgba(87,255,135,0.3);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  backdrop-filter: blur(8px);
}

.tm-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tm-role {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.tm-name {
  font-family: 'Geist', sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
.tm-bio {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 38ch;
}
.tm-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-top: 4px;
  text-decoration: none;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.tm-link:hover {
  background: rgba(87,255,135,0.06);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}
.tm-link-logo {
  width: 38px; height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(155,120,255,0.25));
}
.tm-link-meta {
  display: flex; flex-direction: column; line-height: 1.2;
  flex: 1;
}
.tm-link-label {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.tm-link-sub {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}
.tm-link-arrow {
  font-size: 18px;
  color: var(--green);
  flex-shrink: 0;
}

/* ====================================================== */
/* STORE BUILDER — animated browser + project grid       */
/* ====================================================== */
.builder {
  padding: 0 0 160px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.builder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(87,255,135,0.08), transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(87,255,135,0.05), transparent 70%);
  pointer-events: none;
}
.builder > .container { position: relative; z-index: 1; }

.builder-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.75fr);
  gap: 24px;
  margin-top: 24px;
  align-items: stretch;
}
@media (max-width: 1080px) {
  .builder-stage { grid-template-columns: 1fr; }
}

/* ----- Browser mockup ----- */
.builder-browser {
  position: relative;
  background: linear-gradient(180deg, #0F1410, #050705);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(87,255,135,0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transform: perspective(2000px) rotateX(0.5deg);
  aspect-ratio: 16 / 11;
}
.bb-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 4;
}
.bb-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bb-dot.r { background: #FF5F57; }
.bb-dot.y { background: #FEBC2E; }
.bb-dot.g { background: #28C840; }
.bb-url {
  flex: 1;
  max-width: 320px;
  margin: 0 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bb-lock { color: var(--green); font-size: 9px; }
.bb-stage-pill {
  margin-left: auto;
  padding: 5px 10px;
  background: rgba(87,255,135,0.12);
  border: 1px solid rgba(87,255,135,0.4);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: pillFade 4.2s ease-in-out infinite;
}
.bb-stage-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: dotBlink 1.4s ease-in-out infinite;
}
@keyframes pillFade {
  0%, 100% { opacity: 0.95; }
  50%      { opacity: 0.8; }
}

.bb-canvas {
  position: relative;
  flex: 1;
  background: linear-gradient(180deg, #0A0D0A, #050705);
  overflow: hidden;
  height: calc(100% - 50px);
}
.bb-stage {
  position: absolute;
  inset: 0;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transform: scale(0.98);
  pointer-events: none;
}
.builder-stage.stage-0 .bb-wire { opacity: 1; transform: scale(1); }
.builder-stage.stage-1 .bb-mid  { opacity: 1; transform: scale(1); }
.builder-stage.stage-2 .bb-live { opacity: 1; transform: scale(1); }

/* Stage 0 — wireframe */
.bb-wire {
  display: flex; flex-direction: column; gap: 14px;
}
.bb-w-nav {
  display: flex; gap: 16px; align-items: center;
  padding: 10px 6px;
}
.bb-w-nav span {
  height: 8px; border-radius: 3px;
  background: rgba(255,255,255,0.12);
}
.bb-w-nav span:nth-child(1) { width: 60px; background: rgba(87,255,135,0.3); }
.bb-w-nav span:nth-child(2) { width: 50px; }
.bb-w-nav span:nth-child(3) { width: 70px; }
.bb-w-nav span:nth-child(4) { width: 55px; }
.bb-w-nav span:nth-child(5) { width: 60px; }
.bb-w-hero {
  flex: 1.4;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 12px, transparent 12px 24px),
    rgba(255,255,255,0.04);
  border: 1px dashed rgba(87,255,135,0.25);
  border-radius: 12px;
  position: relative;
}
.bb-w-hero::before {
  content: 'HERO BLOCK';
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(87,255,135,0.5);
}
.bb-w-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  flex: 1;
}
.bb-w-grid > div {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 8px, transparent 8px 16px);
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 8px;
  animation: wirePulse 2s ease-in-out infinite;
}
.bb-w-grid > div:nth-child(2) { animation-delay: 0.15s; }
.bb-w-grid > div:nth-child(3) { animation-delay: 0.3s; }
.bb-w-grid > div:nth-child(4) { animation-delay: 0.45s; }
@keyframes wirePulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; border-color: rgba(87,255,135,0.4); }
}
.bb-w-foot {
  height: 30px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
}

/* Stage 1 — mid build with cursor */
.bb-mid {
  display: flex; flex-direction: column; gap: 14px;
}
.bb-m-nav {
  display: flex; gap: 18px; align-items: center;
  padding: 12px 6px;
  font-size: 11px;
  color: var(--ink);
  font-family: 'Geist', system-ui, sans-serif;
}
.bb-logo {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--green), var(--green-3, #0FBF4C));
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(87,255,135,0.4);
}
.bb-m-nav .bb-cart { margin-left: auto; color: var(--green); }
.bb-m-hero {
  flex: 1.5;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(87,255,135,0.18), transparent 60%),
    linear-gradient(135deg, #1A1F1B, #0A0D0A);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
}
.bb-m-headline {
  height: 24px;
  width: 60%;
  background: var(--ink);
  border-radius: 4px;
  animation: typeIn 1.6s ease-out;
}
.bb-m-headline.thin { width: 35%; height: 14px; opacity: 0.5; animation-delay: 0.3s; animation-fill-mode: both; }
@keyframes typeIn {
  0%   { transform: scaleX(0); transform-origin: left; opacity: 0; }
  100% { transform: scaleX(1); opacity: 1; }
}
.bb-m-cta {
  align-self: flex-start;
  padding: 8px 18px;
  background: var(--green);
  color: var(--bg);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(87,255,135,0.4);
  margin-top: 8px;
  animation: ctaPop 0.5s cubic-bezier(.2,.9,.3,1.4) 0.8s both;
}
@keyframes ctaPop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.bb-m-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  flex: 1;
}
.bb-m-grid > div {
  background: linear-gradient(180deg, #1A1F1B, #0A0D0A);
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.bb-m-grid > div::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(87,255,135,0.15), transparent 60%);
  opacity: 0;
  animation: gridFill 2s ease-out forwards;
}
.bb-m-grid > div:nth-child(1)::after { animation-delay: 1.2s; }
.bb-m-grid > div:nth-child(2)::after { animation-delay: 1.4s; }
.bb-m-grid > div:nth-child(3)::after { animation-delay: 1.6s; }
.bb-m-grid > div:nth-child(4)::after { animation-delay: 1.8s; }
@keyframes gridFill {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Cursor */
.bb-cursor {
  position: absolute;
  width: 18px; height: 18px;
  z-index: 5;
  pointer-events: none;
  animation: cursorPath 4s ease-in-out infinite;
}
.bb-cursor::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 2 L19 13 L13 14 L17 22 L14 23 L10 16 L5 20 Z' fill='%2357FF87' stroke='%23050705' stroke-width='1.4' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  filter: drop-shadow(0 0 6px rgba(87,255,135,0.6));
}
@keyframes cursorPath {
  0%   { left: 70%; top: 20%; }
  25%  { left: 40%; top: 60%; }
  50%  { left: 75%; top: 70%; }
  75%  { left: 20%; top: 40%; }
  100% { left: 70%; top: 20%; }
}
.bb-drop-block {
  position: absolute;
  border: 1.5px solid var(--green);
  border-radius: 6px;
  box-shadow: 0 0 14px rgba(87,255,135,0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}
.bb-drop-block.b1 { width: 60px; height: 26px; left: 30%; top: 70%; animation: dropPulse 3.5s ease-out 0.5s infinite; }
.bb-drop-block.b2 { width: 50px; height: 30px; left: 50%; top: 30%; animation: dropPulse 3.5s ease-out 1.2s infinite; }
.bb-drop-block.b3 { width: 70px; height: 22px; left: 12%; top: 50%; animation: dropPulse 3.5s ease-out 1.9s infinite; }
@keyframes dropPulse {
  0%   { opacity: 0; transform: translateY(-12px) scale(0.85); }
  20%  { opacity: 1; transform: translateY(0) scale(1); }
  60%  { opacity: 1; }
  100% { opacity: 0; transform: scale(1.1); }
}

/* Stage 2 — live screenshot */
.bb-live {
  padding: 0;
  position: relative;
}
.builder-stage.stage-2 .bb-live { animation: liveReveal 1s var(--ease) both; }
.bb-live img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
@keyframes liveReveal {
  0%   { opacity: 0; transform: scale(1.04); filter: brightness(0.7); }
  100% { opacity: 1; transform: scale(1);    filter: brightness(1); }
}
.bb-live-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%, rgba(87,255,135,0.18), transparent 60%);
  opacity: 0;
  animation: liveGlow 1.4s ease-out 0.3s both;
}
@keyframes liveGlow {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* ----- Build log panel ----- */
/* (legacy — replaced by .builder-vitals; kept blank to avoid layout regression if reused) */

/* ----- Vitals panel — Lighthouse + CWV + Conversion ----- */
.builder-vitals {
  background: linear-gradient(180deg, #0A0D0A, #050705);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(87,255,135,0.1);
}
.builder-vitals::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(87,255,135,0.1), transparent 60%),
    radial-gradient(circle at 0% 100%, rgba(197,255,94,0.06), transparent 60%);
  pointer-events: none;
}
.bv-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative; z-index: 1;
}
.bv-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: dotBlink 1.4s ease-in-out infinite;
}
.bv-stage-tag {
  margin-left: auto;
  padding: 4px 10px;
  background: rgba(87,255,135,0.12);
  border: 1px solid rgba(87,255,135,0.4);
  border-radius: 999px;
  color: var(--green);
  font-size: 9px;
  letter-spacing: 0.16em;
}

/* Gauge */
.bv-gauge {
  position: relative;
  display: grid;
  place-items: center;
  padding: 8px 0;
}
.bv-gauge-svg {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
}
.bv-gauge-center {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  text-align: center;
  pointer-events: none;
}
.bv-gauge-num {
  font-family: 'Geist', sans-serif;
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(120deg, var(--green), #C5FF5E);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: 0 0 40px rgba(87,255,135,0.35);
  margin-bottom: 6px;
  transform: translateY(-6px);
}
.bv-gauge-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.bv-gauge-delta {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bv-gauge-delta .bad  { color: #FF6B6B; }
.bv-gauge-delta .warn { color: #FFB020; }
.bv-gauge-delta .good { color: var(--green); }

/* Vitals bars */
.bv-vitals {
  display: flex; flex-direction: column; gap: 10px;
  position: relative; z-index: 1;
}
.bv-row {
  display: grid;
  grid-template-columns: 40px 1fr 56px;
  align-items: center;
  gap: 12px;
  font-size: 11px;
}
.bv-row-key { color: var(--muted); font-size: 10px; letter-spacing: 0.12em; }
.bv-row-bar {
  height: 5px;
  background: rgba(255,255,255,0.04);
  border-radius: 3px;
  overflow: hidden;
}
.bv-row-fill {
  height: 100%;
  border-radius: 3px;
}
.bv-row-fill.bad  { background: linear-gradient(90deg, #FF6B6B, #FF9F6B); box-shadow: 0 0 6px rgba(255,107,107,0.4); }
.bv-row-fill.warn { background: linear-gradient(90deg, #FFB020, #FFD060); box-shadow: 0 0 6px rgba(255,176,32,0.4); }
.bv-row-fill.good { background: linear-gradient(90deg, var(--green), #C5FF5E); box-shadow: 0 0 8px rgba(87,255,135,0.55); }
.bv-row-val {
  text-align: right;
  color: var(--ink);
  font-size: 11px;
}

/* Conversion lift card */
.bv-conv {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background:
    radial-gradient(circle at 0% 100%, rgba(87,255,135,0.08), transparent 60%),
    rgba(87,255,135,0.03);
  border: 1px solid rgba(87,255,135,0.18);
  border-radius: 14px;
  position: relative; z-index: 1;
}
.bv-conv-side { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.bv-conv-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.bv-conv-big {
  font-family: 'Geist', sans-serif;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.bv-conv-big small {
  font-size: 18px;
  color: var(--muted);
  font-weight: 400;
}
.bv-conv-lift {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.bv-conv-lift .muted { color: var(--muted); }
.bv-conv-lift .up    { color: var(--green); }
.bv-spark {
  width: 90px;
  height: 50px;
  flex-shrink: 0;
}

/* ----- Builds grid ----- */
.builds-grid {
  margin-top: 80px;
}
.builds-grid-title {
  font-family: 'Geist', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: var(--ink);
}
.builds-grid-title .serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--green);
}
.builds-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .builds-grid-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .builds-grid-row { grid-template-columns: 1fr; } }

.build-card {
  position: relative;
  background: linear-gradient(180deg, #0A0D0A, #050705);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.build-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(87,255,135,0.2);
}
.bc-thumb {
  position: relative;
  aspect-ratio: 16 / 11;
  background: #0F1410;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.bc-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.build-card:hover .bc-thumb img { transform: scale(1.04); }

.bc-thumb.empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  border: 1.5px dashed var(--line-strong);
  background:
    radial-gradient(circle at 50% 40%, rgba(87,255,135,0.06), transparent 60%),
    #0A0D0A;
  width: 100%;
  height: 100%;
  font-family: inherit;
  color: var(--muted);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}
.bc-thumb.empty:hover {
  border-color: var(--green);
  color: var(--green);
  background:
    radial-gradient(circle at 50% 40%, rgba(87,255,135,0.12), transparent 60%),
    #0A0D0A;
}
.bc-plus {
  font-size: 32px;
  line-height: 1;
  font-weight: 300;
  font-family: 'Geist', sans-serif;
}
.bc-empty-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.build-card.placeholder { opacity: 0.85; }

.bc-meta {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.bc-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.build-card.placeholder .bc-name { color: var(--muted); font-style: italic; }
.bc-stat {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}
.bc-name-input, .bc-url-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 8px;
  color: var(--ink);
  font-family: inherit;
  font-size: 12px;
  width: 100%;
  outline: none;
}
.bc-name-input:focus, .bc-url-input:focus { border-color: var(--green); }
.bc-name-input { font-size: 13px; font-weight: 500; }
.bc-url-input { font-family: 'Geist Mono', ui-monospace, monospace; font-size: 11px; margin-top: 6px; }
.bc-tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 10px;
  background: rgba(5,7,5,0.7);
  border: 1px solid rgba(87,255,135,0.3);
  border-radius: 999px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.bc-replace {
  position: absolute;
  bottom: 60px; right: 10px;
  padding: 5px 10px;
  background: rgba(5,7,5,0.85);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  cursor: pointer;
  font-family: inherit;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.build-card:hover .bc-replace { opacity: 1; }

.builds-edit-bar {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(87,255,135,0.04);
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

/* ====================================================== */
/* PERFORMANCE SECTION — platforms → creative → ROAS flow */
/* ====================================================== */
.performance {
  position: relative;
  padding: 160px 0 180px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.performance::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(87,255,135,0.08), transparent 70%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(87,255,135,0.06), transparent 70%);
  pointer-events: none;
}
.performance > .container { position: relative; z-index: 1; }

.perf-rows {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 80px;
}

/* Single performance row: creative → platforms → result */
.perf-row {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(180px, 0.7fr) minmax(220px, 1fr);
  gap: 36px;
  align-items: center;
  position: relative;
  isolation: isolate;
}
@media (max-width: 1080px) {
  .perf-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
}

.perf-platforms {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
@media (max-width: 1080px) {
  .perf-platforms { align-items: center; flex-direction: row; justify-content: center; flex-wrap: wrap; }
}

.perf-platform {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.perf-platform .perf-impact {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(87,255,135,0.35), transparent 60%);
  opacity: 0;
  pointer-events: none;
  border-radius: inherit;
}
.perf-row.in .perf-platform {
  border-color: rgba(87,255,135,0.4);
  box-shadow: 0 14px 30px rgba(0,0,0,0.45), 0 0 24px rgba(87,255,135,0.18);
}
.perf-row.in .perf-platform .perf-impact { animation: platformImpact 1.6s ease-out 1.2s; }
@keyframes platformImpact {
  0%   { opacity: 0; }
  20%  { opacity: 1; }
  100% { opacity: 0; }
}
.perf-platform img {
  width: 28px; height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.perf-platform.plat-meta img { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.perf-platform.plat-google img { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.perf-platform-text {
  display: flex; flex-direction: column; line-height: 1;
}
.perf-platform-text .label {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.perf-platform-text .name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Animated arrow connector */
.perf-arrow {
  position: relative;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(87,255,135,0.3), rgba(87,255,135,0.6), rgba(87,255,135,0.3), transparent);
  overflow: hidden;
}
.perf-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--green) 50%, transparent 100%);
  width: 40%;
  animation: arrowFlow 2.4s linear infinite;
  filter: blur(0.5px);
  box-shadow: 0 0 10px var(--green);
}
.perf-arrow::after {
  content: '';
  position: absolute;
  right: -2px; top: 50%;
  width: 0; height: 0;
  border-left: 8px solid var(--green);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transform: translateY(-50%);
  filter: drop-shadow(0 0 6px var(--green));
}
@keyframes arrowFlow {
  0%   { left: -40%; }
  100% { left: 100%; }
}
@media (max-width: 1080px) {
  .perf-arrow {
    width: 2px; height: 60px;
    background: linear-gradient(180deg, transparent, rgba(87,255,135,0.6), transparent);
    margin: 0 auto;
  }
  .perf-arrow::before {
    inset: 0; width: 100%; height: 40%;
    background: linear-gradient(180deg, transparent, var(--green), transparent);
    animation: arrowFlowV 2.4s linear infinite;
  }
  .perf-arrow::after {
    right: 50%; top: auto; bottom: -2px;
    transform: translateX(50%);
    border-left: 6px solid transparent; border-right: 6px solid transparent;
    border-top: 8px solid var(--green);
    border-bottom: none;
  }
  @keyframes arrowFlowV {
    0%   { top: -40%; }
    100% { top: 100%; }
  }
}

/* Creative card — the ad visual */
.perf-creative {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 280px;
  background: #0F1410;
  border: 1px solid rgba(87,255,135,0.18);
  box-shadow:
    0 24px 50px rgba(0,0,0,0.5),
    0 0 28px rgba(87,255,135,0.08);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  z-index: 2;
}
.perf-row.in .perf-creative {
  animation: creativeThrow 1.6s cubic-bezier(.25, .85, .35, 1) both;
  animation-delay: 0.2s;
}
@keyframes creativeThrow {
  0%   { transform: translate3d(-40px, 0, 0) rotate(-3deg) scale(0.94); opacity: 0; }
  35%  { transform: translate3d(0, 0, 0)     rotate(0deg)  scale(1);    opacity: 1; }
  62%  { transform: translate3d(20px, 0, 0)  rotate(2deg)  scale(1.02); }
  100% { transform: translate3d(0, 0, 0)     rotate(0deg)  scale(1);    opacity: 1; }
}
.perf-row:nth-child(even).in .perf-creative {
  animation-name: creativeThrowAlt;
}
@keyframes creativeThrowAlt {
  0%   { transform: translate3d(-40px, 20px, 0) rotate(2deg) scale(0.94); opacity: 0; }
  35%  { transform: translate3d(0, 0, 0)        rotate(0deg) scale(1);    opacity: 1; }
  62%  { transform: translate3d(20px, -8px, 0)  rotate(-2deg) scale(1.02); }
  100% { transform: translate3d(0, 0, 0)        rotate(0deg) scale(1);    opacity: 1; }
}
.perf-creative img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.perf-creative:hover img { transform: scale(1.03); }

.perf-creative-empty {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  background:
    radial-gradient(circle at 50% 40%, rgba(87,255,135,0.06), transparent 60%),
    #0A0D0A;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: var(--muted);
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.perf-creative-empty:hover {
  color: var(--green);
  background:
    radial-gradient(circle at 50% 40%, rgba(87,255,135,0.12), transparent 60%),
    #0A0D0A;
}
.pce-plus {
  font-size: 36px;
  font-weight: 300;
  font-family: 'Geist', sans-serif;
  color: var(--green);
  line-height: 1;
}
.pce-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Throw beam — only on rows that are "in" */
.perf-beam {
  position: absolute;
  top: 50%;
  right: -40px;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0;
  filter: drop-shadow(0 0 8px var(--green));
  pointer-events: none;
  z-index: 1;
}
.perf-row.in .perf-beam {
  animation: beamFire 1.2s ease-out 1s;
}
@keyframes beamFire {
  0%   { opacity: 0; transform: translate3d(-30px, 0, 0) scaleX(0.3); }
  30%  { opacity: 1; }
  60%  { opacity: 1; transform: translate3d(0, 0, 0) scaleX(1); }
  100% { opacity: 0; transform: translate3d(0, 0, 0) scaleX(1); }
}

/* Sparks flying from creative to platforms */
.perf-spark {
  position: absolute;
  top: 50%;
  right: -10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}
.perf-row.in .perf-spark { animation: sparkFly 1.4s ease-out forwards; }
.perf-row.in .perf-spark.s1 { animation-delay: 1.15s; }
.perf-row.in .perf-spark.s2 { animation-delay: 1.25s; --sparkY: -22px; }
.perf-row.in .perf-spark.s3 { animation-delay: 1.35s; --sparkY: 22px; }
@keyframes sparkFly {
  0%   { opacity: 1; transform: translate3d(0, var(--sparkY, 0), 0) scale(1.1); }
  100% { opacity: 0; transform: translate3d(120px, var(--sparkY, 0), 0) scale(0.4); }
}
@media (max-width: 1080px) {
  .perf-beam, .perf-spark { display: none; }
}

/* Tag pinned to creative — "creative live" */
.perf-creative-tag {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(10,14,11,0.8);
  border: 1px solid rgba(87,255,135,0.4);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  z-index: 2;
}
.perf-creative-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: dotBlink 1.4s ease-in-out infinite;
}

/* Brand label on creative */
.perf-creative-brand {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: rgba(10,14,11,0.85);
  border: 1px solid rgba(87,255,135,0.18);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  z-index: 2;
}
.perf-creative-brand .b-name {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.perf-creative-brand .b-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Result card — right */
.perf-result {
  position: relative;
  padding: 28px 32px;
  background:
    radial-gradient(circle at 30% 0%, rgba(87,255,135,0.18), transparent 70%),
    rgba(10,14,11,0.85);
  border: 1px solid rgba(87,255,135,0.4);
  border-radius: 22px;
  box-shadow:
    0 24px 50px rgba(0,0,0,0.55),
    0 0 50px rgba(87,255,135,0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
  text-align: left;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  z-index: 2;
}
.perf-row.in .perf-result {
  animation: resultPop 0.8s cubic-bezier(.2, .9, .25, 1.3) both;
  animation-delay: 1.2s;
}
@keyframes resultPop {
  0%   { transform: scale(0.6) translate3d(30px, 0, 0); opacity: 0; box-shadow: 0 0 0 rgba(87,255,135,0); }
  60%  { transform: scale(1.05) translate3d(0, 0, 0);   opacity: 1; box-shadow: 0 0 80px rgba(87,255,135,0.5); }
  100% { transform: scale(1) translate3d(0, 0, 0);      opacity: 1; box-shadow: 0 24px 50px rgba(0,0,0,0.55), 0 0 50px rgba(87,255,135,0.18); }
}
@media (max-width: 1080px) {
  .perf-result { text-align: center; }
}
.perf-result:hover {
  transform: translateY(-3px);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.65),
    0 0 70px rgba(87,255,135,0.3);
}
.perf-result-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.perf-result-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.perf-result-value {
  font-family: 'Geist', sans-serif;
  font-size: 80px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--green);
  text-shadow:
    0 0 30px rgba(87,255,135,0.5),
    0 0 60px rgba(87,255,135,0.3);
  animation: textPulse 4s ease-in-out infinite;
  margin-bottom: 6px;
}
.perf-result-value .unit {
  font-size: 28px;
  font-weight: 400;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-shadow: none;
  margin-left: 6px;
  animation: none;
}
.perf-result-meta {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: -0.01em;
  margin-top: 4px;
}

/* Placeholder rows */
.perf-row.is-placeholder { opacity: 0.7; }
.perf-row.is-placeholder .perf-result { border-style: dashed; }

/* Inline edit inputs */
.perf-brand-input, .perf-result-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 8px;
  color: var(--ink);
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  outline: none;
  margin: 2px 0;
}
.perf-brand-input.small { font-size: 11px; color: var(--muted); }
.perf-brand-input:focus, .perf-result-input:focus { border-color: var(--green); }
.perf-result-input {
  background: transparent;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  width: 2ch;
  display: inline;
  padding: 0;
}
.perf-result-input.unit-input { width: 3ch; }
.perf-result-input:focus { border-bottom: 1px solid var(--green); }
.perf-replace {
  position: absolute;
  bottom: 80px; right: 16px;
  padding: 5px 10px;
  background: rgba(5,7,5,0.8);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-family: inherit;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.perf-creative:hover .perf-replace { opacity: 1; }

.perf-edit-bar {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(87,255,135,0.04);
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

/* Aggregate stats below the rows */
.perf-aggregate {
  margin-top: 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 24px;
}
@media (max-width: 820px) {
  .perf-aggregate { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 28px; }
}
.perf-agg-item {
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 8px 0;
}
.perf-agg-item:last-child { border-right: none; }
@media (max-width: 820px) {
  .perf-agg-item:nth-child(2n) { border-right: none; }
  .perf-agg-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .perf-agg-item:nth-child(n+3) { padding-top: 24px; }
}
.perf-agg-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(87,255,135,0.35);
}
.perf-agg-label {
  margin-top: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   STORES — clean grid of shipped Shopify builds
   ========================================================================== */
.stores { position: relative; padding-bottom: 120px; }
.stores .section-sub { grid-column: auto; }

.stores-showcase {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 36px;
  align-items: stretch;
}
@media (max-width: 900px) { .stores-showcase { grid-template-columns: 1fr; gap: 22px; } }

/* big browser-framed preview */
.ss-stage {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  text-decoration: none;
  box-shadow: 0 40px 90px -36px rgba(0,0,0,0.92), 0 0 60px -22px rgba(87,255,135,0.18);
  transition: border-color 0.35s var(--ease), box-shadow 0.4s var(--ease);
}
.ss-stage:hover { border-color: var(--green); box-shadow: 0 44px 100px -32px rgba(0,0,0,0.95), 0 0 70px -16px rgba(87,255,135,0.35); }
.ss-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.scb-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.scb-dot.r { background: #ff5f57; } .scb-dot.y { background: #febc2e; } .scb-dot.g { background: #28c840; }
.ss-url {
  flex: 1; margin: 0 10px; padding: 6px 14px;
  background: rgba(0,0,0,0.32); border: 1px solid var(--line); border-radius: 999px;
  font-size: 12px; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ss-live { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; letter-spacing: 0.14em; color: var(--green); flex-shrink: 0; }
.ss-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: dotBlink 1.4s ease-in-out infinite; }
@keyframes dotBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.ss-shots {
  position: relative;
  flex: 1;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  background: var(--bg-2);
}
.ss-shot {
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.6s var(--ease), transform 0.9s var(--ease);
  pointer-events: none;
}
.ss-shot.on { opacity: 1; transform: scale(1); }
.ss-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.ss-shot-empty { width: 100%; height: 100%; display: grid; place-items: center; color: var(--muted-2); font-size: 13px; }
.ss-visit {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  display: inline-flex; align-items: center;
  padding: 9px 16px; border-radius: 999px;
  background: rgba(5,7,5,0.7); border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  font-size: 12px; letter-spacing: 0.04em; color: #fff;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.ss-stage:hover .ss-visit { opacity: 1; transform: translateY(0); }

/* selectable list */
.ss-list {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
@media (max-width: 900px) { .ss-list { padding-left: 0; border-left: none; } }
.ss-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 14px;
  border: none;
  background: transparent;
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: var(--muted);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.ss-item.on { background: rgba(87,255,135,0.06); color: var(--ink); padding-left: 20px; }
.ss-idx { font-size: 12px; color: var(--muted-2); flex-shrink: 0; transition: color 0.3s var(--ease); }
.ss-item.on .ss-idx { color: var(--green); }
.ss-meta { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.ss-name { font-size: clamp(18px, 1.5vw, 22px); font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.ss-stat { font-size: 11px; letter-spacing: 0.06em; color: var(--muted); }
.ss-item.on .ss-stat { color: var(--green); }
.ss-go {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--muted);
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.ss-item.on .ss-go { opacity: 1; transform: scale(1); border-color: var(--green); color: var(--green); }
.ss-edit {
  position: absolute; top: 8px; right: 8px;
  padding: 3px 8px; border-radius: 999px;
  background: rgba(5,7,5,0.8); border: 1px solid var(--line-strong);
  font-size: 9px; letter-spacing: 0.06em; color: var(--green);
}
.ss-progress { display: none; }
@media (max-width: 900px) {
  .ss-name { font-size: 18px; }
  .ss-item { padding: 14px 12px; }
}

/* shared edit panel */
.stores-edit, .adshow-edit {
  margin: 30px 0 0;
  padding: 18px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(87,255,135,0.03);
}
.se-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.se-head .mono { color: var(--green); font-size: 12px; }
.se-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.se-rows { display: flex; flex-direction: column; gap: 10px; }
.se-row { display: grid; grid-template-columns: 1fr 1.3fr 1fr auto; gap: 10px; align-items: center; }
@media (max-width: 720px) { .se-row { grid-template-columns: 1fr 1fr; } }
.se-row input {
  padding: 9px 12px; background: rgba(0,0,0,0.3); border: 1px solid var(--line);
  border-radius: 8px; color: var(--ink); font-size: 13px; font-family: inherit;
}
.se-row input:focus { outline: none; border-color: var(--green); }
.se-del { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--line-strong); color: var(--muted); font-size: 18px; line-height: 1; }
.se-del:hover { color: #ff6b6b; border-color: #ff6b6b; }

/* ==========================================================================
   ADS SHOWCASE — 3D coverflow of static creatives + compact stats
   ========================================================================== */
.adshow { position: relative; padding-bottom: 110px; overflow: hidden; }

.adreel {
  position: relative;
  margin-top: 30px;
  padding: 30px 0 14px;
}
/* angled, auto-scrolling reel — viewed from the side */
.adreel-stage {
  position: relative;
  height: clamp(380px, 56vh, 560px);
  perspective: 2600px;
  perspective-origin: 50% 50%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  -webkit-user-select: none; user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 90%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 90%, transparent 100%);
}
.adreel-stage.dragging { cursor: grabbing; }
.adreel-track {
  position: absolute;
  top: 50%; left: 0;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 26px);
  padding-left: clamp(20px, 4vw, 64px);
  transform-style: preserve-3d;
  margin-top: calc(clamp(380px, 56vh, 560px) / -2);
  height: clamp(380px, 56vh, 560px);
  will-change: transform;
}
.adreel-card {
  position: relative;
  flex: 0 0 auto;
  height: clamp(330px, 50vh, 500px);
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.08);
  /* the consistent side tilt — all cards face the same way */
  transform: rotateY(-26deg) rotateX(1.5deg);
  transform-origin: center center;
  box-shadow: -28px 40px 80px -38px rgba(0,0,0,0.95), 0 0 0 1px rgba(0,0,0,0.4);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.adreel-card:hover {
  transform: rotateY(-18deg) rotateX(1deg) scale(1.04);
  border-color: rgba(87,255,135,0.4);
  box-shadow: -24px 44px 90px -34px rgba(0,0,0,0.95), 0 0 60px -12px rgba(87,255,135,0.4);
  z-index: 5;
}
.adreel-card img {
  height: 100%; width: auto; max-width: none;
  object-fit: contain;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.adreel-card video {
  height: 100%; width: auto; max-width: none;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.adreel-card.is-video { border-color: rgba(87,255,135,0.32); }
.adreel-tag {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  padding: 4px 9px; border-radius: 6px;
  background: rgba(5,7,5,0.55); border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  font-size: 9px; letter-spacing: 0.16em; color: #fff;
}
.adreel-card.is-video .adreel-tag {
  background: rgba(87,255,135,0.16);
  border-color: rgba(87,255,135,0.5);
  color: #C5FF5E;
}
.adreel-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; flex-direction: column; gap: 3px;
  padding: 42px 16px 14px;
  background: linear-gradient(to top, rgba(5,7,5,0.92) 6%, rgba(5,7,5,0.3) 55%, transparent);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.adreel-card:hover .adreel-cap { opacity: 1; transform: translateY(0); }
.adreel-brand { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; color: #fff; }
.adreel-label { font-size: 11px; letter-spacing: 0.08em; color: var(--green); text-shadow: 0 0 14px rgba(87,255,135,0.4); }

.adreel-hint {
  position: absolute; right: clamp(16px, 6vw, 80px); bottom: -6px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); pointer-events: none; opacity: 0.85;
}
.adreel-hint svg { color: var(--green); animation: dragNudge 2.4s ease-in-out infinite; }
@keyframes dragNudge { 0%,100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
@media (max-width: 600px) {
  .adreel-card { transform: rotateY(-24deg); }
  .adreel-stage { perspective-origin: 58% 50%; }
}

.stores-arrow {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--panel); border: 1px solid var(--line-strong); color: var(--ink);
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.stores-arrow:hover { color: var(--green); border-color: var(--green); box-shadow: 0 0 24px rgba(87,255,135,0.25); transform: translateY(-2px); }
.stores-arrow:active { transform: scale(0.94); }

.adshow-stats {
  margin-top: 36px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px 30px;
  padding: 22px 26px;
  border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(180deg, rgba(87,255,135,0.04), transparent 80%), var(--panel);
}
.adshow-stat { display: flex; flex-direction: column; gap: 4px; }
.ass-num { font-size: clamp(26px, 3vw, 38px); font-weight: 600; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.ass-num .serif { font-family: 'Instrument Serif', serif; color: var(--green); }
.ass-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.adshow-stat-div { width: 1px; height: 36px; background: var(--line-strong); }
@media (max-width: 720px) {
  .adshow-stat-div { display: none; }
  .adshow-stats { gap: 18px 28px; }
  .adshow-stat { flex: 1 1 38%; }
}
.adshow-edit {
  margin-top: 24px; padding: 18px 20px;
  border: 1px solid var(--line-strong); border-radius: 16px; background: rgba(87,255,135,0.03);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.adshow-edit .mono { color: var(--green); font-size: 12px; }
.adshow-edit-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ==========================================================================
   CONTACT MODAL — "Cere o ofertă" → WhatsApp
   ========================================================================== */
.eg-modal-overlay {
  position: fixed; inset: 0; z-index: 4000;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 5vh 20px 40px;
  overflow-y: auto;
  background: rgba(3,5,3,0.78);
  backdrop-filter: blur(8px);
  animation: egFade 0.25s var(--ease) both;
}
@keyframes egFade { from { opacity: 0; } to { opacity: 1; } }
.eg-modal {
  position: relative;
  width: min(680px, 100%);
  background: linear-gradient(180deg, rgba(87,255,135,0.05), transparent 30%), var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 40px clamp(22px, 4vw, 46px) 32px;
  box-shadow: 0 50px 120px -40px rgba(0,0,0,0.95), 0 0 80px -30px rgba(87,255,135,0.25);
  animation: egRise 0.32s var(--ease) both;
}
@keyframes egRise { from { opacity: 0; transform: translateY(22px) scale(0.985); } to { opacity: 1; transform: none; } }
.eg-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--muted);
  cursor: pointer; transition: all 0.2s var(--ease);
}
.eg-modal-close:hover { color: var(--ink); border-color: var(--line-strong); transform: rotate(90deg); }

.eg-modal-head { margin-bottom: 26px; }
.eg-modal-head .eyebrow {
  font-family: 'Geist Mono', monospace; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.eg-modal-head h3 {
  font-size: clamp(28px, 4vw, 38px); font-weight: 600; letter-spacing: -0.03em;
  line-height: 1.04; color: var(--ink); margin: 0 0 12px;
}
.eg-modal-sub { font-size: 14px; line-height: 1.5; color: var(--muted); max-width: 46ch; margin: 0; }

.eg-field-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; margin-bottom: 22px;
}
@media (max-width: 540px) { .eg-field-grid { grid-template-columns: 1fr; } }
.eg-field { display: flex; flex-direction: column; gap: 8px; }
.eg-field > span { font-size: 13px; color: var(--ink); letter-spacing: -0.01em; }
.eg-field > span i { color: var(--green); font-style: normal; margin-left: 2px; }
.eg-field input, .eg-field textarea {
  width: 100%; padding: 12px 14px;
  background: rgba(0,0,0,0.32); border: 1px solid var(--line);
  border-radius: 10px; color: var(--ink); font-size: 14px; font-family: inherit;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.eg-field textarea { resize: vertical; min-height: 78px; line-height: 1.45; }
.eg-field input::placeholder, .eg-field textarea::placeholder { color: var(--muted-2); }
.eg-field input:focus, .eg-field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(87,255,135,0.12);
}
.eg-field-full { margin-bottom: 22px; }

.eg-services { margin-bottom: 22px; }
.eg-services-label { display: block; font-size: 13px; color: var(--ink); margin-bottom: 12px; }
.eg-services-grid { display: flex; flex-wrap: wrap; gap: 9px; }
.eg-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 14px 9px 11px;
  background: rgba(0,0,0,0.3); border: 1px solid var(--line);
  border-radius: 999px; color: var(--muted); font-size: 13px; font-family: inherit;
  cursor: pointer; transition: all 0.2s var(--ease);
}
.eg-chip:hover { color: var(--ink); border-color: var(--line-strong); }
.eg-chip-box {
  width: 18px; height: 18px; border-radius: 6px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong); color: transparent;
  transition: all 0.2s var(--ease);
}
.eg-chip.on { color: var(--ink); border-color: var(--green); background: rgba(87,255,135,0.08); }
.eg-chip.on .eg-chip-box { background: var(--green); border-color: var(--green); color: var(--bg); }

.eg-error { color: #ff7a7a; font-size: 12px; margin-bottom: 14px; letter-spacing: 0.02em; }

.eg-submit {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 22px; border: none; border-radius: 12px; cursor: pointer;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #042611; font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  box-shadow: 0 16px 40px -14px rgba(87,255,135,0.6);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
}
.eg-submit:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 22px 50px -14px rgba(87,255,135,0.7); }
.eg-submit:active { transform: translateY(0); }
.eg-modal-foot { text-align: center; margin: 16px 0 0; font-size: 12px; color: var(--muted); }
.eg-modal-foot a { color: var(--green); text-decoration: none; }
.eg-modal-foot a:hover { text-decoration: underline; }

/* ==========================================================================
   CLIENTS WALL — static logo grid with roaming spotlight (replaces marquee)
   ========================================================================== */
/* editorial split: big stat on the left, hairline logo mosaic on the right */
.clients-flex {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) 2.28fr;
  gap: 34px;
  align-items: stretch;
}
.cw-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 8px 0;
}
.cw-side-num {
  font-size: clamp(64px, 6.5vw, 100px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--ink);
}
.cw-side-num span { color: var(--green); text-shadow: 0 0 26px rgba(87,255,135,0.4); }
.cw-side-l { font-size: 10px; letter-spacing: 0.18em; color: var(--green); }
.cw-side-p { margin: 0; font-size: 13.5px; line-height: 1.65; color: var(--muted); max-width: 30ch; }
.cw-side-link {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-decoration: none;
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(87,255,135,0.4);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cw-side-link:hover { color: var(--green); border-color: var(--green); }

.clients-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  overflow: hidden;
  --tx: -999px;
  --ty: -999px;
}
/* cursor torch — a soft green flashlight that follows the mouse across the wall */
.clients-wall::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(240px circle at var(--tx) var(--ty), rgba(87,255,135,0.11), transparent 65%);
}
.cw-cell {
  position: relative;
  min-height: 118px;
  padding: 20px 14px 24px;
  background: #070A08;
  display: grid;
  place-items: center;
  transition: background 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
@media (prefers-reduced-motion: no-preference) {
  .cw-cell { opacity: 0; transform: translateY(14px) scale(0.97); animation: cwIn 0.6s var(--ease) forwards; animation-delay: var(--d, 0s); }
}
@keyframes cwIn { to { opacity: 1; transform: none; } }
.cw-tag {
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  text-align: center;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  pointer-events: none;
}
.cw-cell.lit .cw-tag, .cw-cell:hover .cw-tag { opacity: 0.9; transform: none; }
.cw-cell img {
  max-height: 54px;
  max-width: 82%;
  width: auto;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(0.25) brightness(0.95);
  transition: opacity 0.6s var(--ease), filter 0.6s var(--ease), transform 0.6s var(--ease);
}
.cw-name { font-size: 13px; color: var(--muted); }
.cw-mark span { color: rgba(87,255,135,0.45); font-size: 20px; text-shadow: 0 0 14px rgba(87,255,135,0.3); }
.cw-cell.lit {
  background: radial-gradient(90% 100% at 50% 12%, rgba(87,255,135,0.09), #070A08 72%);
  box-shadow: inset 0 0 0 1px rgba(87,255,135,0.32);
}
.cw-cell.lit img { opacity: 1; filter: none; transform: scale(1.07); }
.cw-cell:hover { background: radial-gradient(90% 100% at 50% 12%, rgba(87,255,135,0.11), #070A08 74%); box-shadow: inset 0 0 0 1px rgba(87,255,135,0.4); }
.cw-cell:hover img { opacity: 1; filter: none; transform: scale(1.09); }
@media (max-width: 1180px) {
  .clients-flex { grid-template-columns: 1fr; gap: 22px; }
  .cw-side { flex-direction: row; align-items: baseline; flex-wrap: wrap; gap: 10px 18px; }
  .cw-side-p { display: none; }
  .clients-wall { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 900px) { .clients-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) {
  .clients-wall { grid-template-columns: repeat(3, 1fr); border-radius: 14px; }
  .cw-cell { min-height: 88px; padding: 14px 10px 18px; }
  .cw-cell img { max-height: 40px; }
  .cw-side-num { font-size: 54px; }
  .clients-wall::after { display: none; }
}

/* mobile fixes: launch dashboard + globe HUD breathing room */
@media (max-width: 720px) {
  .lc-readouts { grid-template-columns: 1fr 1fr; row-gap: 14px; }
  .lc-gears { grid-column: 1 / -1; justify-content: flex-start; }
  .lc-done-row { flex-wrap: wrap; }
  .lc-done-row .btn { flex: 1 1 100%; }
}
@media (max-width: 480px) {
  .og-hud { grid-template-columns: 1fr 1fr; }
  .og-hud .og-stat:nth-child(3) { display: none; }
  .og-bf { font-size: 8.5px; padding: 7px 10px; }
}
.cw-mark span { display: inline-block; animation: cwSpin 16s linear infinite; }
@keyframes cwSpin { to { rotate: 360deg; } }

/* ==========================================================================
   COMMAND PALETTE (⌘K) + footer status
   ========================================================================== */
.cp-pill {
  position: fixed;
  left: 20px; bottom: 74px;
  z-index: 60;
  appearance: none; cursor: pointer;
  display: flex; align-items: center; gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(7,10,8,0.82);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--muted);
  font-size: 8.5px; letter-spacing: 0.14em;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cp-pill:hover { color: var(--ink); border-color: rgba(87,255,135,0.5); }
.cp-pill-k {
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  background: rgba(87,255,135,0.08);
  color: var(--green);
  font-size: 9px;
}
@media (max-width: 720px) { .cp-pill { display: none; } }
.cp-veil {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(3,5,3,0.62);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 14vh 20px 20px;
  animation: cpVeilIn 0.18s var(--ease);
}
@keyframes cpVeilIn { from { opacity: 0; } }
.cp-panel {
  width: min(560px, 100%);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: linear-gradient(170deg, rgba(14,20,15,0.98), rgba(6,9,7,0.99));
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.85), 0 0 0 1px rgba(87,255,135,0.06), 0 0 60px -20px rgba(87,255,135,0.25);
  overflow: hidden;
  animation: cpIn 0.22s var(--ease);
}
@keyframes cpIn { from { opacity: 0; transform: translateY(-10px) scale(0.985); } }
.cp-head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.cp-prompt { color: var(--green); font-size: 12px; }
.cp-input {
  flex: 1;
  appearance: none; border: none; outline: none; background: transparent;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.cp-input::placeholder { color: rgba(154,168,158,0.55); }
.cp-esc {
  font-size: 8.5px; letter-spacing: 0.1em; color: var(--muted);
  border: 1px solid var(--line); border-radius: 6px; padding: 3px 6px;
}
.cp-list { max-height: min(420px, 56vh); overflow: auto; padding: 8px; }
.cp-group {
  padding: 10px 10px 5px;
  font-size: 8px; letter-spacing: 0.2em; color: var(--muted);
}
.cp-item {
  appearance: none; cursor: pointer;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 12px;
  border: none; border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font-size: 13.5px;
  text-align: left;
  transition: background 0.15s var(--ease);
}
.cp-item.on { background: rgba(87,255,135,0.1); }
.cp-item.on span:first-child { color: var(--green); }
.cp-hint { font-size: 8.5px; letter-spacing: 0.12em; color: var(--muted); }
.cp-empty { padding: 22px 12px; text-align: center; font-size: 10px; letter-spacing: 0.1em; color: var(--muted); }

.footer-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: 0.14em; color: var(--muted);
}
.fs-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: fsPulse 2.4s ease-in-out infinite;
}
@keyframes fsPulse { 50% { opacity: 0.45; } }
@media (max-width: 720px) { .footer-status { order: 3; } }

/* ==========================================================================
   FOUNDERS (testimonials) — beam, avatar ring, compact mobile row
   ========================================================================== */
.testi-card { position: relative; overflow: hidden; }
.testi-beam {
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(87,255,135,0.75), transparent);
  opacity: 0.75;
  pointer-events: none;
}
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-ava {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--green);
  border: 1px solid rgba(87,255,135,0.42);
  background: radial-gradient(60% 60% at 50% 32%, rgba(87,255,135,0.15), rgba(87,255,135,0.03));
  box-shadow: 0 0 16px rgba(87,255,135,0.12);
}
.testi-mobile { display: none; }
@media (max-width: 820px) {
  .testi-grid { display: none; }
  .testi-mobile { display: block; }
  .testi-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
  }
  .testi-tab {
    appearance: none;
    cursor: pointer;
    padding: 13px 8px 11px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.015);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-family: 'Geist Mono', ui-monospace, monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  }
  .testi-tab img { height: 22px; max-width: 92%; object-fit: contain; opacity: 0.85; }
  .testi-tab.on { border-color: rgba(87,255,135,0.5); background: rgba(87,255,135,0.06); color: var(--green); }
  .testi-tab.on img { opacity: 1; }
  .testi-panel {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(0,0,0,0.1));
    animation: testiIn 0.35s var(--ease);
  }
  .testi-panel .testi-quote { font-size: 14.5px; line-height: 1.65; margin: 0 0 16px; }
  .testi-panel .who-meta { font-size: 12px; color: var(--muted); }
  .testi-panel .who-meta strong { display: block; color: var(--ink); font-size: 13px; }
}
@keyframes testiIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   LAUNCH CONTROL — the eGrowth car + acceleration dashboard
   ========================================================================== */
.lc-section { padding: 40px 0 130px; }
.lc-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items: stretch;
}
.lc-car {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(130% 100% at 50% 0%, #0E140F, #070A08 55%, #050705);
  min-height: 380px;
}
.lc-horizon { position: absolute; left: 0; right: 0; top: 52%; height: 1px; background: linear-gradient(90deg, transparent, rgba(87,255,135,0.3), transparent); transform: rotate(4deg); }
.lc-road {
  position: absolute; left: -6%; right: -6%; bottom: -3%; height: 40%;
  background: linear-gradient(180deg, rgba(87,255,135,0.05), transparent 22%), linear-gradient(180deg, #0B100C, #080B09);
  border-top: 1px solid rgba(87,255,135,0.14);
  transform: rotate(4deg);
  transform-origin: 50% 0;
}
.lc-road::before {
  content: "";
  position: absolute; left: -12%; right: -12%; top: 48%; height: 3px;
  background: repeating-linear-gradient(90deg, rgba(87,255,135,0.55) 0 46px, transparent 46px 110px);
  animation: lcRoadMove 3.4s linear infinite;
  opacity: 0.45;
}
@keyframes lcRoadMove { to { transform: translateX(-156px); } }
.lc-section.run .lc-road::before { animation-duration: 0.26s; opacity: 0.9; }
.lc-shadow {
  position: absolute; left: 50%; bottom: 8%;
  width: 66%; height: 26px; margin-left: -33%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.68), transparent 70%);
  filter: blur(7px);
  transform: rotate(4deg);
}
.lc-sprite {
  position: absolute; left: 50%; bottom: 6.5%;
  width: 76%; height: auto; margin-left: -38%;
  transform: translate(var(--mx, 0px), var(--my, 0px)) scale(var(--sc, 1)) skewX(var(--sk, 0deg));
  transition: transform 0.9s var(--ease);
  will-change: transform;
  animation: lcBob 5.5s ease-in-out infinite;
  filter: drop-shadow(0 16px 22px rgba(0,0,0,0.5));
}
@keyframes lcBob { 50% { translate: 0 -4px; } }
/* acceleration squat while running */
.lc-section.run .lc-sprite { --sc: 1.05; --sk: -1.2deg; --mx: 2%; transition-duration: 2.9s; animation: lcShake 0.16s linear infinite; }
/* the lap: exits right with motion blur, re-enters from the left */
.lc-section.done .lc-sprite {
  animation: carGo 0.85s cubic-bezier(0.55, 0, 0.85, 0.4) forwards, carBack 1.2s 1.5s cubic-bezier(0.16, 0.8, 0.3, 1) forwards;
}
.lc-section.done .lc-sprite.lapDone { animation: lcBob 5.5s ease-in-out infinite; }
@keyframes carGo {
  0% { transform: translateX(0) scale(1.05); filter: drop-shadow(0 16px 22px rgba(0,0,0,0.5)) blur(0); }
  100% { transform: translateX(160%) skewX(-5deg) scale(1.03); filter: drop-shadow(0 16px 22px rgba(0,0,0,0.5)) blur(7px); opacity: 0.85; }
}
@keyframes carBack {
  0% { transform: translateX(-160%) skewX(3deg) scale(1.02); filter: drop-shadow(0 16px 22px rgba(0,0,0,0.5)) blur(5px); opacity: 0.9; }
  60% { filter: drop-shadow(0 16px 22px rgba(0,0,0,0.5)) blur(1px); }
  100% { transform: translateX(0) scale(1); filter: drop-shadow(0 16px 22px rgba(0,0,0,0.5)) blur(0); opacity: 1; }
}
/* light sheen sweeping over the paint while running */
.lc-car::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,0.07) 46%, transparent 60%);
  transform: translateX(-130%);
  pointer-events: none;
}
.lc-section.run .lc-car::before { animation: lcSheen 0.75s linear infinite; }
@keyframes lcSheen { to { transform: translateX(130%); } }
.lc-car::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 90px;
  background: linear-gradient(180deg, transparent, rgba(5,7,5,0.7));
  pointer-events: none;
}
.lc-lines {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0;
  background: repeating-linear-gradient(100deg, transparent 0 34px, rgba(87,255,135,0.14) 34px 36px, transparent 36px 90px);
  transform: translateX(30%);
}
.lc-section.run .lc-lines { opacity: 1; animation: lcLines 0.5s linear infinite; }
@keyframes lcLines { to { transform: translateX(-30%); } }
@keyframes lcShake { 0%, 100% { translate: 0 0; } 25% { translate: 1px -1px; } 75% { translate: -1px 1px; } }

.lc-dash {
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(16,22,17,0.96), rgba(7,10,8,0.98));
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lc-dash-head { display: flex; align-items: center; gap: 8px; font-size: 9.5px; letter-spacing: 0.16em; color: var(--green); padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.lc-gauge { text-align: center; }
.lc-gauge svg { width: min(250px, 80%); display: block; margin: 0 auto; }
.lc-needle { transform-origin: 110px 118px; transition: none; will-change: transform; }
.lc-gauge-label { font-size: 8.5px; letter-spacing: 0.16em; color: var(--muted); margin-top: 2px; }
.lc-readouts { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 10px; align-items: end; }
.lc-read-v { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; color: var(--green); text-shadow: 0 0 14px rgba(87,255,135,0.3); white-space: nowrap; }
.lc-dim { color: var(--muted); font-size: 0.72em; font-weight: 400; }
.lc-read-l { margin-top: 3px; font-size: 8.5px; letter-spacing: 0.13em; color: var(--muted); }
.lc-gears { display: flex; gap: 5px; justify-content: flex-end; }
.lc-gear {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  transition: all 0.2s var(--ease);
}
.lc-gear.on { color: #0A130C; background: var(--green); border-color: var(--green); box-shadow: 0 0 12px rgba(87,255,135,0.45); }
.lc-btn {
  appearance: none; cursor: pointer;
  width: 100%;
  padding: 16px 20px;
  border: none; border-radius: 13px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #042611;
  font-family: 'Geist Mono', monospace;
  font-size: 14px; font-weight: 700; letter-spacing: 0.12em;
  box-shadow: 0 16px 40px -14px rgba(87,255,135,0.6);
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
}
.lc-btn:hover:not(:disabled) { transform: translateY(-2px); filter: brightness(1.06); }
.lc-btn:disabled { cursor: default; animation: lcBtnPulse 0.5s ease-in-out infinite; }
@keyframes lcBtnPulse { 50% { filter: brightness(1.16); } }
.lc-done { display: flex; flex-direction: column; gap: 12px; }
.lc-done-msg { font-size: 10px; letter-spacing: 0.14em; color: var(--green); text-align: center; animation: gcMeta 0.5s var(--ease); }
.lc-done-row { display: flex; gap: 10px; align-items: center; }
.lc-done-row .btn { flex: 1; justify-content: center; }
.lc-again {
  appearance: none; cursor: pointer;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  font-size: 10px; letter-spacing: 0.1em;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.lc-again:hover { color: var(--ink); border-color: rgba(87,255,135,0.5); }
.lc-hint { text-align: center; font-size: 8.5px; letter-spacing: 0.16em; color: var(--muted); }
@media (max-width: 1000px) {
  .lc-grid { grid-template-columns: 1fr; }
  .lc-car { min-height: 320px; aspect-ratio: auto; }
  .lc-sprite { width: 84%; margin-left: -42%; bottom: 9%; }
}
@media (max-width: 720px) {
  .lc-section { padding: 10px 0 90px; }
  .lc-car { min-height: 240px; aspect-ratio: auto; }
  .lc-sprite { width: 92%; margin-left: -46%; bottom: 11%; }
  .lc-read-v { font-size: 18px; }
}

/* ==========================================================================
   WHY — animated principles (icon draw) + sequential process fill
   ========================================================================== */
.why-principle { position: relative; transition: background 0.4s var(--ease); }
.js-ready .reveal.in .why-principle { animation: wpIn 0.7s var(--ease) both; animation-delay: calc(var(--i, 0) * 0.12s); }
@keyframes wpIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.wp-icon { width: 30px; height: 30px; color: var(--green); display: block; margin-bottom: 2px; filter: drop-shadow(0 0 10px rgba(87,255,135,0.35)); }
.wp-icon svg { width: 100%; height: 100%; display: block; }
.js-ready .reveal.in .wp-icon path, .js-ready .reveal.in .wp-icon circle {
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  animation: wpDraw 1.2s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 0.12s + 0.25s);
}
@keyframes wpDraw { to { stroke-dashoffset: 0; } }
.why-principle:hover { background: rgba(87,255,135,0.045); }
.why-principle:hover .wp-icon { animation: wpPop 0.45s var(--ease); }
@keyframes wpPop { 50% { transform: scale(1.18) rotate(-7deg); } }

.js-ready .process-track.reveal.in .process-step { animation: wpIn 0.7s var(--ease) both; animation-delay: calc(var(--i, 0) * 0.14s + 0.1s); }
.process-step .tick { transform-origin: left center; }
.js-ready .process-track.reveal.in .tick.active {
  animation: tickOn 0.5s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 0.14s + var(--j, 0) * 0.13s + 0.45s);
}
@keyframes tickOn { from { transform: scaleX(0); opacity: 0.2; } to { transform: scaleX(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal.in .why-principle, .js-ready .reveal.in .wp-icon path, .js-ready .reveal.in .wp-icon circle,
  .js-ready .process-track.reveal.in .process-step, .js-ready .process-track.reveal.in .tick.active { animation: none; }
}

/* ==========================================================================
   ORDERS GLOBE — hero panel (3D dot-matrix Earth, live order arcs)
   ========================================================================== */
.og-wrap { position: relative; width: 560px; max-width: 100%; justify-self: end; }
.og-stage { position: relative; height: 600px; }
.og-canvas { display: block; width: 100%; height: 100%; touch-action: pan-y; cursor: grab; }
.og-canvas:active { cursor: grabbing; }
.og-glow { display: none; }
/* circular halo behind the globe — a real circle element, so it can never clip into straight edges */
.og-stage::before {
  content: "";
  position: absolute;
  left: 50%; top: calc(50% - 8px);
  width: 108%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87,255,135,0.09) 48%, rgba(87,255,135,0.04) 62%, transparent 72%);
  pointer-events: none;
}
.og-top {
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(87,255,135,0.28);
  background: rgba(5,8,6,0.72);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: 9.5px; letter-spacing: 0.16em; color: var(--green);
  white-space: nowrap;
  pointer-events: none;
}
.og-led { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: gcLed 1.6s ease-in-out infinite; }
.og-toast {
  position: absolute; top: 52px; right: 0;
  display: flex; flex-direction: column; gap: 2px;
  padding: 11px 14px; border-radius: 13px;
  border: 1px solid rgba(87,255,135,0.35);
  background: rgba(6,10,7,0.85);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 44px -18px rgba(0,0,0,0.8), 0 0 24px rgba(87,255,135,0.08);
  animation: ogToast 0.45s var(--ease);
  pointer-events: none;
  min-width: 150px;
}
@keyframes ogToast { from { opacity: 0; transform: translateY(-8px) scale(0.95); } }
.og-toast-store { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.og-toast-meta { font-size: 9.5px; letter-spacing: 0.08em; color: var(--muted); }
.og-toast-amt { font-size: 15px; font-weight: 600; color: var(--green); text-shadow: 0 0 14px rgba(87,255,135,0.5); }
.og-hud {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: grid; grid-template-columns: 1.3fr 1fr 0.8fr; gap: 10px;
  padding: 13px 16px; border-radius: 15px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9,13,10,0.82), rgba(5,8,6,0.9));
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.og-stat { min-width: 0; }
.og-v { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); white-space: nowrap; }
.og-stat:first-child .og-v { color: var(--green); text-shadow: 0 0 16px rgba(87,255,135,0.35); }
.og-l { margin-top: 3px; font-size: 8.5px; letter-spacing: 0.13em; color: var(--muted); white-space: nowrap; }
.og-hint { margin-top: 10px; text-align: center; font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); opacity: 0.7; }
.og-board {
  position: absolute; top: 46px; left: 0;
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 12px; border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(5,8,6,0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  min-width: 118px;
}
.og-board-h { font-size: 8px; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 3px; }
.og-board-r { display: flex; justify-content: space-between; gap: 12px; font-size: 10.5px; color: rgba(230,240,232,0.8); }
.og-board-r b { color: var(--green); font-weight: 600; }
.og-bf {
  position: absolute; top: 46px; right: 0;
  appearance: none; cursor: pointer;
  padding: 8px 13px; border-radius: 999px;
  border: 1px solid rgba(87,255,135,0.35);
  background: rgba(5,8,6,0.75);
  color: var(--green);
  font-size: 9.5px; letter-spacing: 0.13em;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.og-bf:hover { border-color: rgba(87,255,135,0.7); box-shadow: 0 0 18px rgba(87,255,135,0.15); }
.og-bf.on {
  color: #0A130C;
  background: linear-gradient(135deg, var(--green), #B7FF5C);
  border-color: transparent;
  box-shadow: 0 0 26px rgba(87,255,135,0.5);
  animation: ogBfPulse 0.9s ease-in-out infinite;
}
@keyframes ogBfPulse { 50% { box-shadow: 0 0 40px rgba(87,255,135,0.75); } }
.og-stage.bf .og-led { animation-duration: 0.5s; }
.og-tip {
  position: absolute; left: 0; top: 0;
  display: flex; flex-direction: column; gap: 1px;
  padding: 7px 10px; border-radius: 10px;
  border: 1px solid rgba(87,255,135,0.35);
  background: rgba(5,8,6,0.88);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: 9.5px; letter-spacing: 0.06em; color: var(--muted);
  opacity: 0; transition: opacity 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
  z-index: 3;
}
.og-tip b { color: var(--green); font-size: 10.5px; letter-spacing: 0.04em; }
.og-toast { top: 92px; }
@media (max-width: 860px) {
  .og-board { display: none; }
  .og-bf { top: 42px; }
  .og-toast { top: 88px; }
}
@media (max-width: 1080px) { .og-wrap { justify-self: stretch; width: 100%; } .og-stage { height: 520px; } }
@media (max-width: 860px) {
  .og-stage { height: 460px; }
  .og-v { font-size: 16px; }
  .og-top { font-size: 8.5px; padding: 6px 11px; }
}

/* ==========================================================================
   GROWTH CONSOLE — hero panel (live terminal)
   ========================================================================== */
.gc-wrap { position: relative; width: 470px; max-width: 100%; perspective: 1100px; justify-self: end; }
.gc-glow { display: none; }
@keyframes gcPulse { 50% { opacity: 0.6; } }
.gc-panel {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(16,22,17,0.96), rgba(7,10,8,0.98));
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
  transition: transform 0.35s var(--ease);
  transform-style: preserve-3d;
}
.gc-panel::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.013) 0 1px, transparent 1px 3px);
}
.gc-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.02); }
.gc-dot { width: 10px; height: 10px; border-radius: 50%; }
.gc-dot.r { background: #FF5F57; } .gc-dot.y { background: #FEBC2E; } .gc-dot.g { background: #28C840; }
.gc-title { margin-left: 8px; font-size: 11px; letter-spacing: 0.08em; color: var(--muted); }
.gc-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 9.5px; letter-spacing: 0.16em; color: var(--green); }
.gc-led { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: gcLed 1.6s ease-in-out infinite; }
@keyframes gcLed { 50% { opacity: 0.35; } }
.gc-body { padding: 22px 20px; height: 256px; display: flex; flex-direction: column; gap: 13px; font-size: 13.5px; }
.gc-line { display: flex; align-items: center; gap: 9px; animation: gcIn 0.4s var(--ease) both; }
@keyframes gcIn { from { opacity: 0; transform: translateY(7px); } }
.gc-cmd { color: var(--ink); flex-wrap: wrap; }
.gc-ps { color: var(--green); }
.gc-caret { width: 8px; height: 15px; background: var(--green); display: inline-block; margin-left: 3px; animation: blink 1.1s steps(1) infinite; box-shadow: 0 0 8px rgba(87,255,135,0.7); }
.gc-ok { color: rgba(230,240,232,0.85); }
.gc-check { color: var(--green); }
.gc-barline { gap: 12px; }
.gc-barlabel { color: var(--muted); font-size: 11.5px; letter-spacing: 0.04em; white-space: nowrap; }
.gc-barwrap { flex: 1; height: 5px; border-radius: 99px; background: rgba(87,255,135,0.12); overflow: hidden; }
.gc-barfill {
  display: block; height: 100%; width: 0; border-radius: 99px;
  background: linear-gradient(90deg, var(--green), #B7FF5C);
  box-shadow: 0 0 12px rgba(87,255,135,0.5);
  animation: gcFill 1.4s var(--ease) 0.1s forwards;
}
@keyframes gcFill { to { width: 100%; } }
.gc-meta {
  display: inline-block; padding: 7px 13px; border-radius: 999px;
  border: 1px solid rgba(87,255,135,0.4); color: var(--green); background: rgba(87,255,135,0.07);
  font-size: 11px; letter-spacing: 0.14em;
  text-shadow: 0 0 12px rgba(87,255,135,0.4);
  animation: gcMeta 0.6s var(--ease);
}
@keyframes gcMeta { 0% { transform: scale(0.92); opacity: 0; } }
.gc-chips { display: flex; align-items: center; gap: 8px; padding: 14px 16px; border-top: 1px solid var(--line); background: rgba(0,0,0,0.25); }
.gc-hint { font-size: 10px; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }
.gc-chip {
  appearance: none; cursor: pointer;
  padding: 7px 16px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: transparent;
  color: var(--muted); font-size: 11.5px; letter-spacing: 0.06em;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.gc-chip:hover { color: var(--ink); border-color: rgba(87,255,135,0.5); }
.gc-chip.on { color: var(--green); border-color: rgba(87,255,135,0.6); background: rgba(87,255,135,0.08); box-shadow: 0 0 14px rgba(87,255,135,0.15); }
@media (max-width: 1080px) { .gc-wrap { justify-self: stretch; width: 100%; } }
@media (max-width: 860px) {
  .gc-body { height: 240px; font-size: 12px; padding: 18px 16px; }
  .gc-panel { transform: none !important; }
}





/* ======================================================================
   HOMEPAGE EXTRAS — intro counter, headline shimmer, live orders tape,
   before/after comparator, count-up results
   ====================================================================== */

/* --- 1. intro counter overlay (first visit) --- */
.eg-intro{position:fixed;inset:0;z-index:100000;display:flex;align-items:center;justify-content:center;background:radial-gradient(120% 90% at 50% 30%,#0b130c 0%,#050705 62%);opacity:1;transition:opacity .6s cubic-bezier(.4,0,.2,1);pointer-events:all}
.eg-intro.done{opacity:0;pointer-events:none}
.eg-intro-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(87,255,135,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(87,255,135,.05) 1px,transparent 1px);background-size:44px 44px;mask:radial-gradient(60% 60% at 50% 45%,#000,transparent 90%);-webkit-mask:radial-gradient(60% 60% at 50% 45%,#000,transparent 90%);opacity:.6}
.eg-intro-in{position:relative;display:flex;flex-direction:column;align-items:center;gap:16px;text-align:center;padding:0 24px}
.eg-intro-logo{height:30px;width:auto;opacity:.95;margin-bottom:4px}
.eg-intro-num{font-family:'Space Grotesk','Geist',system-ui,sans-serif;font-weight:700;letter-spacing:-.04em;color:#eafff0;line-height:1;display:flex;align-items:flex-start;gap:2px}
.eg-intro-num b{font-size:clamp(72px,14vw,140px);font-weight:700;text-shadow:0 0 42px rgba(87,255,135,.35)}
.eg-intro-num span{font-family:'Geist Mono',monospace;font-size:clamp(20px,4vw,34px);color:#57ff87;margin-top:.55em}
.eg-intro-line{font-family:'Geist Mono',monospace;font-size:12.5px;letter-spacing:.06em;color:#7a8a7d;min-height:1.2em;transition:color .3s}
.eg-intro-bar{width:min(280px,68vw);height:3px;border-radius:3px;background:rgba(255,255,255,.1);overflow:hidden;margin-top:2px}
.eg-intro-bar i{display:block;height:100%;width:0;border-radius:3px;background:linear-gradient(90deg,#57ff87,#c5ff5e);box-shadow:0 0 14px rgba(87,255,135,.6)}
.eg-intro-rev{font-family:'Geist Mono',monospace;font-size:11px;letter-spacing:.1em;color:#5d6b60;text-transform:uppercase;margin-top:6px}
.eg-intro-rev b{color:#57ff87;font-weight:500}

/* --- 2. headline shimmer sweep --- */
.hero .display{position:relative}
.hero .display.eg-shimmer::after{content:'';position:absolute;inset:-6% -4%;pointer-events:none;background:linear-gradient(105deg,transparent 34%,rgba(255,255,255,.22) 48%,rgba(197,255,94,.18) 52%,transparent 66%);transform:translateX(-130%);animation:egSheen 1.15s cubic-bezier(.4,0,.2,1) .15s 1 forwards;mix-blend-mode:screen}
@keyframes egSheen{to{transform:translateX(130%)}}

/* --- 3. live orders tape --- */
.eg-tape{position:relative;z-index:2;border-top:1px solid var(--line,rgba(255,255,255,.08));border-bottom:1px solid var(--line,rgba(255,255,255,.08));background:linear-gradient(180deg,#080b08,#060806);overflow:hidden}
.eg-tape-in{display:flex;align-items:center;gap:18px;height:46px;padding-left:clamp(16px,4vw,40px)}
.eg-tape-live{flex:0 0 auto;display:inline-flex;align-items:center;gap:7px;font-family:'Geist Mono',monospace;font-size:11px;font-weight:600;letter-spacing:.18em;color:#57ff87;padding-right:16px;border-right:1px solid var(--line,rgba(255,255,255,.1))}
.eg-tape-dot{width:7px;height:7px;border-radius:50%;background:#57ff87;box-shadow:0 0 8px #57ff87;animation:egPulse 1.4s ease-in-out infinite}
@keyframes egPulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.35;transform:scale(.7)}}
.eg-tape-feed{flex:1;display:flex;align-items:center;gap:30px;overflow:hidden;white-space:nowrap;-webkit-mask:linear-gradient(90deg,#000 88%,transparent);mask:linear-gradient(90deg,#000 88%,transparent);padding-right:24px}
.eg-tape-item{display:inline-flex;align-items:center;gap:9px;font-size:12.5px;color:#7a8a7d;flex:0 0 auto}
.eg-tape-cart{color:#57ff87;display:inline-flex;opacity:.8}
.eg-tape-b{color:#e8ffe8;font-weight:600}
.eg-tape-p{color:#9fb0a2}
.eg-tape-a{color:#57ff87;font-family:'Geist Mono',monospace;font-weight:500}
.eg-tape-c{color:#5d6b60;font-size:11.5px}
.eg-tape-t{color:#4e5a50;font-family:'Geist Mono',monospace;font-size:10.5px;letter-spacing:.04em}
.eg-tape-item.fresh{animation:egTapeIn .55s cubic-bezier(.2,.8,.2,1) both}
@keyframes egTapeIn{0%{opacity:0;transform:translateX(-14px)}60%{color:#57ff87}100%{opacity:1;transform:none}}
@media(max-width:640px){.eg-tape-in{height:42px;gap:12px}.eg-tape-item{font-size:11.5px;gap:7px}.eg-tape-c,.eg-tape-t{display:none}}

/* --- 4. before / after comparator --- */
.ba-section{padding:clamp(70px,10vw,130px) 0;position:relative}
.ba-lead{color:var(--muted,#7a8a7d);max-width:520px;margin-top:14px;font-size:16px;line-height:1.55}
.ba-illus{display:inline-block;font-family:'Geist Mono',monospace;font-size:10px;letter-spacing:.12em;text-transform:uppercase;color:#5d6b60;border:1px solid var(--line,rgba(255,255,255,.1));border-radius:999px;padding:2px 8px;margin-left:4px;vertical-align:middle}
.eg-ba{position:relative;width:100%;max-width:1000px;margin:44px auto 0;aspect-ratio:16/9.4;border-radius:18px;overflow:hidden;border:1px solid var(--line,rgba(255,255,255,.1));box-shadow:0 40px 90px rgba(0,0,0,.55),0 0 60px rgba(87,255,135,.06);cursor:ew-resize;user-select:none;-webkit-user-select:none;background:#0a0d0a;touch-action:pan-y}
.eg-ba-layer{position:absolute;inset:0}
.eg-ba-tag{position:absolute;top:14px;z-index:5;font-family:'Geist Mono',monospace;font-size:10.5px;font-weight:600;letter-spacing:.16em;padding:5px 11px;border-radius:999px;backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);pointer-events:none}
.eg-ba-tag-b{left:14px;background:rgba(70,66,58,.55);color:#efeadf;border:1px solid rgba(255,255,255,.18)}
.eg-ba-tag-a{right:14px;background:rgba(4,33,15,.6);color:#57ff87;border:1px solid rgba(87,255,135,.4)}
.eg-ba-handle{position:absolute;top:0;bottom:0;left:var(--pos,56%);width:46px;transform:translateX(-50%);z-index:6;display:flex;align-items:center;justify-content:center;cursor:ew-resize;outline:none}
.eg-ba-line{position:absolute;top:0;bottom:0;left:50%;width:2px;transform:translateX(-50%);background:linear-gradient(180deg,rgba(87,255,135,.2),#57ff87 30%,#57ff87 70%,rgba(87,255,135,.2));box-shadow:0 0 16px rgba(87,255,135,.6)}
.eg-ba-grip{position:relative;width:40px;height:40px;border-radius:50%;background:#050705;border:2px solid #57ff87;color:#57ff87;display:grid;place-items:center;box-shadow:0 0 22px rgba(87,255,135,.5),0 6px 18px rgba(0,0,0,.5);transition:transform .18s ease}
.eg-ba-handle:hover .eg-ba-grip,.eg-ba-handle:focus-visible .eg-ba-grip{transform:scale(1.12)}
body.eg-ba-dragging{cursor:ew-resize}
body.eg-ba-dragging *{cursor:ew-resize !important;user-select:none !important}
body.eg-ba-dragging .eg-ba-grip{transform:scale(.92)}

/* store mock — shared skeleton */
.eg-store{position:absolute;inset:0;display:flex;flex-direction:column;overflow:hidden}
.eg-store-bar{display:flex;align-items:center;gap:12px;padding:0 clamp(12px,2.4vw,20px);height:46px;flex:0 0 auto}
.eg-store-logo{font-size:15px;font-weight:700;letter-spacing:-.01em}
.eg-store-nav{display:flex;gap:12px;margin-left:6px}
.eg-store-nav i{display:block;width:30px;height:6px;border-radius:3px;background:currentColor;opacity:.28}
.eg-store-cartico{margin-left:auto;opacity:.6}
.eg-store-hero{flex:1;display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(12px,2.4vw,22px);padding:clamp(8px,1.6vw,14px) clamp(12px,2.4vw,20px);align-items:center;min-height:0}
.eg-store-htext{display:flex;flex-direction:column;gap:8px;min-width:0}
.eg-store-ey{font-size:10px;letter-spacing:.14em;text-transform:uppercase}
.eg-store-h1{font-size:clamp(18px,2.6vw,27px);font-weight:700;line-height:1.05;letter-spacing:-.02em}
.eg-store-desc{font-size:11.5px;line-height:1.45}
.eg-store-cta{align-self:flex-start;font-size:12px;font-weight:600;padding:9px 15px;border-radius:8px;white-space:nowrap}
.eg-store-trust{display:flex;gap:7px;flex-wrap:wrap;margin-top:3px}
.eg-store-trust i{font-style:normal;font-size:9.5px}
.eg-store-himg{position:relative;border-radius:12px;height:100%;min-height:96px}
.eg-store-badge{position:absolute;top:8px;right:8px;font-family:'Geist Mono',monospace;font-size:11px;font-weight:600;padding:4px 8px;border-radius:8px}
.eg-store-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(8px,1.6vw,12px);padding:0 clamp(12px,2.4vw,20px) clamp(12px,2.4vw,18px);flex:0 0 auto}
.eg-store-card{aspect-ratio:1.1;border-radius:10px}
/* BEFORE — drab template */
.eg-store--before{background:#eceae3;color:#54514a;font-family:"Times New Roman",Georgia,serif}
.eg-store--before .eg-store-logo{color:#8a5a34}
.eg-store--before .eg-store-nav i{background:#a29e93}
.eg-store--before .eg-store-cartico{color:#7d7a70}
.eg-store--before .eg-store-ey{color:#9a978d;letter-spacing:.02em;text-transform:none;font-style:italic}
.eg-store--before .eg-store-h1{color:#3c3a31;font-weight:700}
.eg-store--before .eg-store-desc{color:#817e74}
.eg-store--before .eg-store-cta{background:#cdc9be;color:#54514a;border:1px solid #b7b3a7;text-transform:lowercase;box-shadow:none;font-family:"Times New Roman",Georgia,serif}
.eg-store--before .eg-store-himg{background:#d9d6cc;border:1px solid #cbc7bc}
.eg-store--before .eg-store-card{background:#d9d6cc;border:1px solid #cbc7bc}
/* AFTER — premium eGrowth */
.eg-store--after{background:radial-gradient(130% 120% at 82% -10%,#0e1710,#070a08);color:#e8ffe8;font-family:'Geist',ui-sans-serif,system-ui,sans-serif}
.eg-store--after .eg-store-bar{border-bottom:1px solid rgba(87,255,135,.12)}
.eg-store--after .eg-store-logo{color:#57ff87;text-shadow:0 0 14px rgba(87,255,135,.4)}
.eg-store--after .eg-store-nav i{background:#9fb0a2;opacity:.4}
.eg-store--after .eg-store-cartico{color:#57ff87}
.eg-store--after .eg-store-ey{color:#57ff87;letter-spacing:.16em}
.eg-store--after .eg-store-h1{color:#eafff0}
.eg-store--after .eg-store-desc{color:#9fb0a2}
.eg-store--after .eg-store-cta{background:linear-gradient(180deg,#c5ff5e,#57ff87);color:#04210f;box-shadow:0 8px 24px rgba(87,255,135,.35)}
.eg-store--after .eg-store-trust i{color:#9fb0a2;border:1px solid rgba(87,255,135,.22);padding:3px 7px;border-radius:999px}
.eg-store--after .eg-store-himg{background:linear-gradient(135deg,#57ff87,#0fbf4c);box-shadow:inset 0 0 32px rgba(87,255,135,.28),0 12px 30px rgba(0,0,0,.4)}
.eg-store--after .eg-store-badge{background:#04210f;color:#c5ff5e;border:1px solid rgba(87,255,135,.4)}
.eg-store--after .eg-store-card{background:#0f150f;border:1px solid rgba(87,255,135,.14)}
@media(max-width:680px){.eg-ba{aspect-ratio:4/5;max-width:440px}.eg-store-hero{grid-template-columns:1fr;gap:8px}.eg-store-himg{min-height:78px}.eg-store-h1{font-size:19px}.eg-store-desc{font-size:11px;-webkit-line-clamp:2;display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}.eg-store-grid{grid-template-columns:repeat(3,1fr)}}

/* --- 5. before/after result chips (count-up) --- */
.ba-results{display:flex;justify-content:center;flex-wrap:wrap;gap:clamp(20px,5vw,72px);margin-top:44px}
.ba-res{display:flex;flex-direction:column;align-items:center;gap:2px;position:relative;padding:0 6px}
.ba-res b{position:absolute;top:2px;left:-14px;font-size:26px;font-weight:400;color:#57ff87;opacity:.7}
.ba-res-v{font-family:'Space Grotesk','Geist',system-ui,sans-serif;font-size:clamp(34px,5vw,50px);font-weight:700;letter-spacing:-.03em;color:#57ff87;text-shadow:0 0 26px rgba(87,255,135,.28);line-height:1}
.ba-res-l{font-size:12.5px;color:var(--muted,#7a8a7d);letter-spacing:.02em}
@media(prefers-reduced-motion:reduce){.hero .display.eg-shimmer::after{animation:none;display:none}.eg-tape-item.fresh{animation:none}.eg-tape-dot{animation:none}}

/* single-founder team layout */
.team-grid{grid-template-columns:minmax(0,420px);justify-content:center}
@media(max-width:760px){.team-grid{grid-template-columns:1fr}}
