:root {
  --bg: #000000;
  --surface: #0a0a0a;
  --surface-2: #121212;
  --line: #1e1e1e;
  --line-2: #2a2a2a;
  --text: #f4f4f4;
  --muted: #a3a3a3;
  --dim: #5f5f5f;
  --green: #00e639;
  --green-hover: #00ff44;
  --green-soft: rgba(0,230,57, 0.1);
  --green-line: rgba(0,230,57, 0.35);
  --red: #ff4d4d;

  --font-display: "Raleway", system-ui, sans-serif;
  --font-body: "Raleway", system-ui, sans-serif;
  --font-mono: "Raleway", system-ui, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --wrap: 1180px;
  --gutter: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: lining-nums;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; margin: 0; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.center { text-align: center; }
.center-row { justify-content: center; }
.hl { color: var(--green); }

/* ───── Buttons (same motion as the live site) ───── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 28px;
  border-radius: 8px; border: 1px solid transparent;
  font-family: var(--font-body); font-weight: 700; font-size: 16px; white-space: nowrap;
  transition: all .3s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green); color: #000; box-shadow: 0 4px 15px rgba(0,230,57,.3); }
.btn-primary:hover { transform: scale(1.05); background: var(--green-hover); box-shadow: 0 8px 30px rgba(0,230,57,.7); }
.btn-ghost { border-color: var(--line-2); color: var(--text); background: rgba(255,255,255,.02); }
.btn-ghost:hover { transform: scale(1.05); border-color: var(--green); color: var(--green); box-shadow: 0 8px 30px rgba(0,230,57,.25); }
.btn-sm { height: 42px; padding: 0 20px; font-size: 15px; }

/* ───── Labels & headings ───── */
.label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px; font-weight: 500;
}
.h2 { font-size: clamp(32px, 4.6vw, 52px); }
.sub { color: var(--muted); max-width: 620px; margin: 18px auto 0; font-size: 18px; }
.section { padding: 120px 0; border-top: 1px solid var(--line); }

/* ───── Card ───── */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.mock-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--dim); margin-bottom: 14px; }
.av {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line-2);
  font-family: var(--font-mono); font-size: 11px; color: var(--green);
}
.tag { font-family: var(--font-mono); font-size: 11px; padding: 3px 9px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--muted); white-space: nowrap; }
.tag-live { color: var(--green); border-color: var(--green-line); background: var(--green-soft); }
.ok { color: var(--green); font-family: var(--font-mono); font-size: 12px; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: inline-block; box-shadow: 0 0 0 0 rgba(0,230,57,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(0,230,57,0); } 100% { box-shadow: 0 0 0 0 rgba(0,230,57,0); } }

/* ───── Nav ───── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.logo { display: inline-flex; align-items: center; flex: none; }
.logo img { height: 34px; width: auto; }
.footer .logo img { height: 40px; }
.nav-links { display: flex; gap: 28px; margin-right: auto; }
.nav-links a, .nav-text { font-size: 14px; color: var(--muted); transition: color .15s; }
.nav-links a:hover, .nav-text:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid var(--line-2); border-radius: 8px; font-size: 13px; font-weight: 700; letter-spacing: .04em; }
.lang-switch > * { padding: 5px 9px; border-radius: 5px; line-height: 1; }
.lang-switch .is-current { background: var(--green); color: #000; }
.lang-switch a { color: var(--muted); transition: all .3s ease; }
.lang-switch a:hover { color: var(--green); }
.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; position: relative; margin-left: auto; }
.nav-toggle span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--text); transition: transform .2s; }
.nav-toggle span:first-child { top: 15px; }
.nav-toggle span:last-child { top: 23px; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { display: none; }

/* ───── Hero ───── */
.hero { position: relative; padding: 56px 0 96px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.dynamic-bg { position: absolute; inset: 0; background: radial-gradient(circle at 50% 45%, rgba(0,230,57,.08) 0%, rgba(3,3,3,0) 70%); z-index: 1; }
.tech-grid {
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background-image: radial-gradient(rgba(0,230,57,.2) 1px, transparent 1px);
  background-size: 40px 40px; opacity: .6; z-index: 2;
  animation: panGrid 20s linear infinite;
}
@keyframes panGrid { to { transform: translate(40px, 40px); } }
.map-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 120vw; height: 120vh; z-index: 2; pointer-events: none; opacity: .4; }
.latam-svg { width: 100%; height: 100%; }
.country-path { fill: transparent; stroke: #02661b; stroke-width: 1px; stroke-miterlimit: 10; pointer-events: visiblePainted; transition: all .3s ease; cursor: pointer; }
.country-path:hover { fill: rgba(0,255,64,.1); stroke-width: 4px; filter: drop-shadow(0 0 15px rgba(0,230,57,.8)); }

.network-nodes, .cta-nodes { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.node { position: absolute; display: flex; justify-content: center; align-items: center; }
.node-core { background: var(--green); border-radius: 50%; box-shadow: 0 0 15px rgba(0,230,57,.6), 0 0 30px rgba(0,230,57,.3); }
.connection-line { position: absolute; height: 1px; transform-origin: center left; }
.node-1 { top: 30%; left: 15%; animation: orbitOne 25s ease-in-out infinite; }
.node-1 .node-core { width: 12px; height: 12px; }
.line-1 { width: 250px; background: linear-gradient(90deg, rgba(0,230,57,.5), transparent); animation: sweepRadar 15s linear infinite; }
.node-2 { top: 60%; right: 20%; animation: erraticFly 12s cubic-bezier(.25,.1,.25,1) infinite; }
.node-2 .node-core { width: 4px; height: 4px; box-shadow: 0 0 8px rgba(0,230,57,1); animation: blink 2s infinite; }
.node-3 { top: 80%; left: -5%; animation: deepCross 40s linear infinite; opacity: .4; }
.node-3 .node-core { width: 40px; height: 40px; filter: blur(2px); }
.line-3 { width: 600px; background: linear-gradient(90deg, rgba(0,230,57,.3), transparent); transform: rotate(-15deg); }
.node-4 { top: 15%; right: 10%; animation: orbitTwo 30s ease-in-out infinite reverse; }
.node-4 .node-core { width: 18px; height: 18px; }
.line-4 { width: 300px; left: -300px; transform-origin: right center; background: linear-gradient(-90deg, rgba(0,230,57,.4), transparent); animation: sweepRadarReverse 20s linear infinite; }
.node-5 { top: 50%; left: 50%; animation: lazyDrift 20s ease-in-out infinite; }
.node-5 .node-core { width: 8px; height: 8px; }
@keyframes orbitOne { 33% { transform: translate(15vw, -10vh); } 66% { transform: translate(5vw, 20vh); } }
@keyframes erraticFly { 25% { transform: translate(-10vw, -15vh); } 50% { transform: translate(-20vw, 5vh); } 75% { transform: translate(-5vw, 15vh); } }
@keyframes deepCross { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(60vw, -40vh) scale(1.5); } 100% { transform: translate(110vw, -10vh) scale(1); } }
@keyframes orbitTwo { 33% { transform: translate(-15vw, 15vh); } 66% { transform: translate(10vw, 25vh); } }
@keyframes lazyDrift { 0%, 100% { transform: translate(-10vw, -10vh); } 50% { transform: translate(10vw, 10vh); } }
@keyframes sweepRadar { 0%, 100% { transform: rotate(0deg); opacity: .2; } 50% { transform: rotate(45deg); opacity: .8; } }
@keyframes sweepRadarReverse { 0%, 100% { transform: rotate(180deg); opacity: .6; } 50% { transform: rotate(140deg); opacity: .1; } }
@keyframes blink { 50% { opacity: .2; } }
.hero-copy, .hero-visual { pointer-events: auto; }
.hero-grid { pointer-events: none; position: relative; z-index: 10; display: grid; grid-template-columns: 1.35fr .65fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(38px, 4.8vw, 64px); font-weight: 400; margin: 0 0 22px; }
.hero h1 .hl { font-weight: 700; }
.lead { font-size: 19px; color: var(--muted); max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.micro { margin-top: 16px; font-size: 13px; color: var(--dim); font-family: var(--font-mono); }
.micro span { margin: 0 6px; color: var(--line-2); }
.proof { display: flex; align-items: center; gap: 14px; margin-top: 36px; }
.proof p { font-size: 14px; color: var(--muted); }
.proof strong { color: var(--text); font-weight: 500; }
.avatars { display: flex; }
.avatars span {
  width: 34px; height: 34px; border-radius: 50%; margin-left: -9px;
  display: grid; place-items: center;
  background: var(--surface-2); border: 2px solid var(--bg);
  font-family: var(--font-mono); font-size: 10px; color: var(--green);
}
.avatars span:first-child { margin-left: 0; }

.hero-visual { display: flex; justify-content: flex-end; }
.video-frame {
  position: relative;
  height: clamp(420px, calc(100svh - 68px - 112px), 640px);
  aspect-ratio: 9 / 16;
  border-radius: 28px; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--green-line);
  box-shadow: 0 0 0 6px rgba(255,255,255,.03), 0 30px 80px -30px rgba(0,230,57,.45);
}
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.sound-toggle {
  position: absolute; right: 14px; bottom: 14px;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: all .3s ease;
}
.sound-toggle:hover { transform: scale(1.05); border-color: var(--green); box-shadow: 0 0 20px rgba(0,230,57,.4); }
.sound-toggle svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sound-toggle svg path:first-child { fill: #fff; }
.sound-toggle .icon-sound { display: none; }
.sound-toggle[aria-pressed="true"] .icon-sound { display: block; }
.sound-toggle[aria-pressed="true"] .icon-muted { display: none; }

/* ───── Logos ───── */
.logos { padding: 56px 0 64px; border-top: 1px solid var(--line); }
.logos .label { color: var(--dim); margin-bottom: 28px; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 96px; width: max-content; animation: marquee 45s linear infinite; }
.client-logo { display: block; flex: none; width: auto; height: 34px; opacity: .6; transition: opacity .3s ease, filter .3s ease; }
.client-logo:hover { opacity: 1; filter: drop-shadow(0 0 12px rgba(0,230,57,.35)); }
.logo-kast { height: 30px; }
.logo-munify { height: 34px; }
.logo-mbw { height: 58px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ───── Stats ───── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
.stat {
  padding: 36px 28px; border-radius: var(--radius); border: 1px solid var(--line);
  background: radial-gradient(120% 90% at 0% 0%, rgba(0,230,57,.08), transparent 55%), var(--surface);
  display: flex; flex-direction: column; gap: 10px; min-height: 190px; justify-content: flex-end;
}
.stat-num { font-family: var(--font-display); font-size: clamp(40px, 4.4vw, 56px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat-label { color: var(--muted); font-size: 15px; }

/* ───── Testimonials ───── */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; }
.carousel-nav { display: flex; gap: 8px; }
.icon-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); background: none; font-size: 18px; transition: border-color .15s, background .15s; }
.icon-btn:hover { border-color: var(--green-line); background: var(--green-soft); }
.carousel { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 32px) / 2.4); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
.carousel::-webkit-scrollbar { display: none; }
.quote { margin: 0; padding: 32px; scroll-snap-align: start; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; }
.quote blockquote { margin: 0; font-size: 19px; line-height: 1.5; }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.quote b { display: block; font-size: 15px; font-weight: 600; }
.quote small { color: var(--dim); font-size: 13px; }

/* ───── Who it's for ───── */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.audience { padding: 32px; display: flex; flex-direction: column; gap: 22px; }
.audience:first-child { border-color: var(--green-line); background: radial-gradient(100% 70% at 0% 0%, rgba(0,230,57,.09), transparent 60%), var(--surface); }
.audience-tag { align-self: flex-start; font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--green); padding: 5px 11px; border: 1px solid var(--green-line); border-radius: 999px; }
.audience h3 { font-size: 24px; }
.audience .checks { flex: 1; color: var(--muted); font-size: 15px; }
.audience .btn { align-self: flex-start; }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; align-content: start; }
.checks li { position: relative; padding-left: 30px; }
.checks li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--green-soft); border: 1px solid var(--green-line); }
.checks li::after { content: ""; position: absolute; left: 6px; top: 8px; width: 6px; height: 9px; border: solid var(--green); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ───── Steps ───── */
.platform { position: relative; overflow: hidden; }
.platform > .wrap { position: relative; z-index: 1; }
.ambient-glow {
  position: absolute; top: 30%; left: 20%; width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, rgba(0,230,57,.15) 0%, transparent 70%);
  filter: blur(80px); border-radius: 50%; pointer-events: none;
  animation: floatGlow 12s ease-in-out infinite alternate;
}
@keyframes floatGlow {
  0% { transform: translate(-10%, -20%) scale(.8); opacity: .5; }
  50% { opacity: 1; }
  100% { transform: translate(30%, 20%) scale(1.2); opacity: .8; }
}
.steps { list-style: none; margin: 72px 0 0; padding: 0; display: grid; gap: 96px; }
.step { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.step:nth-child(even) .step-copy { order: 2; }
.step-num { font-family: var(--font-mono); font-size: 13px; color: var(--green); display: inline-block; padding: 4px 10px; border: 1px solid var(--green-line); border-radius: 999px; margin-bottom: 20px; }
.step h3 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 16px; }
.step p { color: var(--muted); font-size: 17px; max-width: 460px; }
.step-visual { padding: 28px; min-height: 280px; display: flex; flex-direction: column; justify-content: center; background: radial-gradient(90% 80% at 100% 0%, rgba(0,230,57,.07), transparent 60%), var(--surface); }
.mock-form .field { display: flex; justify-content: space-between; gap: 12px; padding: 13px 14px; margin-bottom: 8px; border-radius: var(--radius-sm); background: var(--surface-2); border: 1px solid var(--line); }
.mock-form small { color: var(--dim); }
.mock-form b { font-weight: 500; font-size: 14px; text-align: right; }
.mock-btn { display: inline-block; margin-top: 10px; padding: 10px 18px; border-radius: 8px; background: var(--green); color: #000; font-weight: 600; font-size: 14px; }
.mock-table .tr { display: grid; grid-template-columns: 1.4fr 1fr .6fr; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.mock-table .tr span:last-child { text-align: right; font-family: var(--font-mono); font-size: 13px; }
.mock-table .th { color: var(--dim); font-size: 12px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .06em; }
.mock-table .tr:last-child { border-bottom: 0; }
.mock-table .tag { justify-self: start; }
.pay-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; color: var(--muted); font-size: 14px; }
.pay-total b { font-family: var(--font-display); font-size: 34px; color: var(--text); }
.pay-row { display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 13px; font-family: var(--font-mono); color: var(--muted); }
.pay-row i { display: block; height: 8px; width: var(--w); border-radius: 8px; background: var(--green); }
.mock-pay .ok { display: block; margin-top: 8px; }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.kpis div { padding: 14px; border-radius: var(--radius-sm); background: var(--surface-2); border: 1px solid var(--line); }
.kpis b { display: block; font-family: var(--font-display); font-size: 24px; }
.kpis small { color: var(--dim); font-size: 12px; }
.spark { width: 100%; height: 70px; }
.spark polyline { fill: none; stroke: var(--green); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; vector-effect: non-scaling-stroke; }

/* ───── Compare ───── */
.table-wrap { margin: 56px 0 40px; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
/* Branded scrollbar (Chromium/Safari use ::-webkit-scrollbar, Firefox uses scrollbar-color) */
.table-wrap::-webkit-scrollbar { height: 10px; }
.table-wrap::-webkit-scrollbar-button { display: none; }
.table-wrap::-webkit-scrollbar-track { background: var(--surface); border-top: 1px solid var(--line); }
.table-wrap::-webkit-scrollbar-thumb { background: var(--green); border-radius: 8px; border: 3px solid var(--surface); }
.table-wrap::-webkit-scrollbar-thumb:hover { background: var(--green-hover); }
@supports (-moz-appearance: none) {
  .table-wrap { scrollbar-width: thin; scrollbar-color: var(--green) var(--surface); }
}
.cmp { width: 100%; border-collapse: collapse; min-width: 760px; font-size: 15px; }
.cmp th, .cmp td { padding: 20px 22px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }
.cmp thead th { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--muted); background: var(--surface); }
.cmp thead th.us { color: var(--green); }
.cmp tbody th { font-weight: 500; color: var(--text); width: 20%; }
.cmp td { color: var(--muted); }
.cmp td.us { color: var(--text); background: rgba(0,230,57,.04); }
.cmp thead th.us { background: rgba(0,230,57,.08); }
.cmp i { display: inline-block; width: 18px; height: 18px; border-radius: 50%; margin-right: 10px; vertical-align: -3px; position: relative; }
.cmp i.y { background: var(--green); }
.cmp i.y::after { content: ""; position: absolute; left: 6px; top: 3px; width: 5px; height: 9px; border: solid #000; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.cmp i.n { border: 1px solid var(--line-2); }
.cmp i.n::before, .cmp i.n::after { content: ""; position: absolute; left: 4px; top: 8px; width: 8px; height: 1.5px; background: var(--dim); transform: rotate(45deg); }
.cmp i.n::after { transform: rotate(-45deg); }

/* ───── Creators ───── */
.filters { display: grid; gap: 12px; justify-items: center; margin: 44px 0 36px; }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pill { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line-2); background: none; font-size: 14px; color: var(--muted); transition: all .15s; }
.pill:hover { color: var(--text); border-color: var(--dim); }
.pill.is-on { background: var(--text); color: #000; border-color: var(--text); font-weight: 500; }
.creator-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; min-height: 200px; }
.creator { padding: 22px; display: flex; flex-direction: column; gap: 18px; animation: fadeUp .35s ease both; }
.creator-top { display: flex; align-items: center; gap: 12px; }
.creator-top .av { width: 46px; height: 46px; font-size: 13px; }
.creator-top b { display: block; font-weight: 600; }
.creator-top small { color: var(--dim); font-size: 13px; }
.creator-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.creator-stats div { padding: 10px; border-radius: var(--radius-sm); background: var(--surface-2); }
.creator-stats b { display: block; font-family: var(--font-display); font-size: 17px; }
.creator-stats small { font-size: 11px; color: var(--dim); }
.creator-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.empty { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 48px 0; }
.note { font-size: 13px; color: var(--dim); margin: 20px 0 32px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ───── Why ───── */
.why-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: center; }
.why-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 5; background: var(--surface); }
.why-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.why-copy .h2 { margin-bottom: 28px; }
.why-copy p:not(.label) { color: var(--muted); font-size: 18px; margin-bottom: 18px; max-width: 580px; }
.why-copy strong { color: var(--green); font-weight: 600; }
.sign { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.sign b { display: block; font-family: var(--font-display); font-size: 20px; }
.sign small { color: var(--dim); }

/* ───── CTA ───── */
.cta-box {
  text-align: center; padding: 96px 32px; border-radius: 24px; border: 1px solid var(--green-line);
  background: radial-gradient(60% 80% at 50% 0%, rgba(0,230,57,.16), transparent 70%), var(--surface);
}
.cta-box h2 { font-size: clamp(38px, 5.6vw, 72px); }
.cta-box p { color: var(--muted); font-size: 18px; max-width: 560px; margin: 22px auto 0; }

.cta-box { position: relative; overflow: hidden; --mouse-x: 50%; --mouse-y: 50%; }
.cta-box > h2, .cta-box > p, .cta-box > .hero-ctas { position: relative; z-index: 3; }
.interactive-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(rgba(0,230,57,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(0,230,57,.15) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(circle 350px at var(--mouse-x) var(--mouse-y), #000 10%, transparent 100%);
  mask-image: radial-gradient(circle 350px at var(--mouse-x) var(--mouse-y), #000 10%, transparent 100%);
}
.cta-nodes .node-core { box-shadow: 0 0 15px rgba(0,230,57,.8), 0 0 30px rgba(0,230,57,.4); animation: pulseNode 2s infinite alternate; }
.cta-nodes .connection-line { background: linear-gradient(90deg, rgba(0,230,57,.5), transparent); }
.cta-node-1 { top: 20%; left: 15%; animation: floatY 6s ease-in-out infinite; }
.cta-node-1 .node-core { width: 12px; height: 12px; }
.cta-line-1 { width: 200px; transform: rotate(35deg); }
.cta-node-2 { bottom: 25%; right: 10%; animation: floatX 5s ease-in-out infinite alternate; }
.cta-node-2 .node-core { width: 18px; height: 18px; filter: blur(1px); }
.cta-node-3 { top: 70%; left: 10%; animation: floatY 8s ease-in-out infinite reverse; }
.cta-node-3 .node-core { width: 6px; height: 6px; }
.cta-line-3 { width: 300px; transform: rotate(-25deg); }
@keyframes pulseNode { from { transform: scale(.8); opacity: .6; } to { transform: scale(1.2); opacity: 1; } }
@keyframes floatY { from { transform: translateY(-20px); } to { transform: translateY(20px); } }
@keyframes floatX { from { transform: translateX(-20px); } to { transform: translateX(20px); } }

/* ───── FAQ ───── */
.faq-wrap { max-width: 820px; }
.faq-list { margin-top: 48px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; padding: 24px 44px 24px 0; font-family: var(--font-display); font-size: 19px; font-weight: 500; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 26px; font-weight: 300; color: var(--green); transition: transform .2s; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { color: var(--muted); padding: 0 44px 24px 0; }
.faq-more { margin-top: 36px; color: var(--muted); }
.faq-more a { color: var(--green); font-weight: 500; }

/* ───── Footer ───── */
.footer { border-top: 1px solid var(--line); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--muted); margin-top: 14px; max-width: 260px; }
.footer h3 { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--dim); font-weight: 500; margin-bottom: 16px; }
.footer-grid a:not(.logo) { display: block; color: var(--muted); font-size: 14px; padding: 5px 0; }
.footer-grid a:not(.logo):hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--dim); font-family: var(--font-mono); }

/* ───── Reveal ───── */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .pulse, .creator, .tech-grid, .node, .node-core, .connection-line, .ambient-glow { animation: none; }
  .btn:hover { transform: none; }
}

/* ───── Responsive ───── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-actions { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { justify-content: center; }
  .video-frame { height: auto; width: min(100%, 340px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel { grid-auto-columns: calc((100% - 16px) / 1.6); }
  .audience-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .creator-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1.3fr; gap: 48px; }
}

@media (max-width: 760px) {
  .marquee-track { gap: 56px; }
  .client-logo, .logo-munify { height: 26px; }
  .logo-kast { height: 22px; }
  .logo-mbw { height: 44px; }
  :root { --gutter: 16px; }
  .section { padding: 80px 0; }
  .nav-actions { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu { display: grid; gap: 4px; max-height: 0; overflow: hidden; padding: 0 var(--gutter); transition: max-height .3s ease, padding .3s ease; }
  .mobile-menu.is-open { max-height: 480px; padding: 8px var(--gutter) 20px; }
  .mobile-menu > a:not(.btn) { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
  .mobile-menu .lang-switch { justify-self: start; margin-top: 12px; }
  .mobile-menu .btn { margin-top: 12px; }
  .hero { padding: 56px 0 80px; }
  .lead { font-size: 17px; }
  .hero-ctas .btn { flex: 1 1 auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat { padding: 24px 18px; min-height: 150px; }
  .sec-head { align-items: flex-start; flex-direction: column; }
  .carousel { grid-auto-columns: 88%; }
  .quote { padding: 24px; }
  .quote blockquote { font-size: 17px; }
  .logo img { height: 30px; }
  .audience { padding: 24px; }
  .audience h3 { font-size: 21px; }
  .steps { gap: 64px; margin-top: 48px; }
  .step { grid-template-columns: 1fr; gap: 28px; }
  .step:nth-child(even) .step-copy { order: 0; }
  .step-visual { padding: 20px; min-height: 0; }
  .creator-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-photo { max-width: 320px; }
  .cta-box { padding: 64px 20px; }
  .faq-list summary { font-size: 17px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
