/* ════════════════════════════════════════════════════════════════
 * turboEbay — Landing · Mechanischer Katalog
 * Editorial dark-violet tech-journal
 * ════════════════════════════════════════════════════════════════ */

:root {
  --ink:      #09090c;
  --ink-2:    #0d0d12;
  --ink-3:    #111117;
  --panel:    #131319;
  --panel-2:  #17171e;
  --line:     #23232d;
  --line-2:   #2c2c38;
  --fg:       #f5f4f9;
  --fg-2:     #c9c9d4;
  --fg-3:     #8a8a98;
  --fg-4:     #5a5a66;
  --fg-5:     #3a3a44;

  --accent:     #c9a7ff;
  --accent-2:   #8b5cf6;
  --accent-3:   #b586ff;
  --accent-ink: #130a24;
  --accent-soft: rgba(201,167,255,0.10);
  --accent-glow: rgba(139,92,246,0.35);

  --ok:      #7ee2b1;
  --warn:    #ffb878;
  --bad:     #ff8a8d;

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --f-sans: "Geist", "Inter", ui-sans-serif, system-ui, sans-serif;
  --f-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --f-serif: "Fraunces", "Times New Roman", serif;

  --easing: cubic-bezier(.2,.7,.2,1);
  --easing-smooth: cubic-bezier(.65,.01,.35,1);

  --wrap: 1240px;
}

/* ── reset ───────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-sans);
  background: var(--ink);
  color: var(--fg);
  line-height: 1.55;
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  cursor: default;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
em { font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: -0.015em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; position: relative; }

/* ── ambient layers ──────────────────────────────── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.spotlight {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background:
    radial-gradient(600px 600px at var(--mx,50%) var(--my,30%),
      rgba(201,167,255,0.06), transparent 60%);
  transition: background .4s var(--easing);
}
.crosshair {
  position: fixed; inset: 0; pointer-events: none; z-index: 99;
  mix-blend-mode: screen; opacity: 0;
  transition: opacity .25s var(--easing);
}
.crosshair.on { opacity: .35; }
.crosshair .cx-x, .crosshair .cx-y {
  position: absolute; background: rgba(201,167,255,0.4);
}
.crosshair .cx-x { left: 0; right: 0; height: 1px; top: var(--cy, 0); }
.crosshair .cx-y { top: 0; bottom: 0; width: 1px; left: var(--cx, 0); }
.crosshair .cx-label {
  position: absolute;
  left: calc(var(--cx, 0) + 10px);
  top: calc(var(--cy, 0) + 10px);
  font: 500 10px/1 var(--f-mono);
  color: var(--accent);
  background: rgba(19,19,25,0.85);
  border: 1px solid var(--line);
  padding: 4px 8px; border-radius: 4px;
  letter-spacing: 0.04em;
}

/* ── scroll rail ─────────────────────────────────── */
.rail {
  position: fixed; top: 0; bottom: 0; left: 22px;
  width: 28px; z-index: 40;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  pointer-events: none;
}
.rail-line {
  position: relative;
  width: 1px; height: 55vh;
  background: linear-gradient(180deg, transparent 0%, var(--line) 15%, var(--line) 85%, transparent 100%);
}
.rail-fill {
  position: absolute; top: 15%; left: -0.5px;
  width: 2px; height: 0;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 8px var(--accent-glow);
  transition: height .2s linear;
}
.rail-marks {
  position: absolute; list-style: none; padding: 0; margin: 0;
  top: 15%; height: 70%;
  display: flex; flex-direction: column; justify-content: space-between;
  pointer-events: auto;
}
.rail-marks li {
  font: 500 9px/1 var(--f-mono);
  color: var(--fg-5);
  letter-spacing: 0.08em;
  padding: 2px 4px;
  cursor: pointer;
  transition: color .2s var(--easing), transform .2s var(--easing);
  position: relative;
}
.rail-marks li::before {
  content: ""; position: absolute;
  left: -16px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 1px; background: var(--line-2);
  transition: background .2s var(--easing), width .2s var(--easing);
}
.rail-marks li:hover { color: var(--fg-2); }
.rail-marks li.active {
  color: var(--accent);
  transform: translateX(2px);
}
.rail-marks li.active::before {
  background: var(--accent);
  width: 12px;
}
@media (max-width: 1100px) { .rail { display: none; } }

/* ── nav ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  background: rgba(9,9,12,0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--easing), background .3s var(--easing);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(9,9,12,0.88);
}
.nav-inner {
  max-width: var(--wrap); margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; gap: 28px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 16px;
  letter-spacing: -0.02em;
}
.brand-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px var(--accent-glow);
  animation: brand-pulse 2.4s ease-in-out infinite;
}
.brand-mark { font-family: var(--f-serif); font-style: italic; color: var(--accent); }
.brand-img {
  height: 20px; width: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(139,92,246,0.25));
  transition: filter .35s var(--easing), transform .35s var(--easing);
}
.brand:hover .brand-img {
  filter: drop-shadow(0 0 22px rgba(139,92,246,0.55));
  transform: translateY(-1px);
}
.foot-brand .brand-img {
  height: 26px;
  filter: drop-shadow(0 0 18px rgba(139,92,246,0.3));
}
@keyframes brand-pulse {
  0%, 100% { box-shadow: 0 0 8px var(--accent-glow); }
  50%      { box-shadow: 0 0 18px var(--accent-glow), 0 0 4px var(--accent); }
}

.nav-links {
  display: flex; gap: 28px;
  margin-left: 24px;
  font-size: 13.5px;
  color: var(--fg-3);
}
.nav-links a {
  position: relative;
  transition: color .2s var(--easing);
}
.nav-links a:hover { color: var(--fg); }
.nav-links a::after {
  content: ""; position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 1px; background: var(--accent);
  transition: right .25s var(--easing);
}
.nav-links a:hover::after { right: 0; }

.nav-meta {
  margin-left: auto;
  display: flex; align-items: center; gap: 14px;
}
.nav-clock {
  display: inline-flex; align-items: center; gap: 8px;
  font: 500 11px/1 var(--f-mono);
  color: var(--fg-3);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(19,19,25,0.4);
  letter-spacing: 0.04em;
}
.nav-clock-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 6px rgba(126,226,177,0.6);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

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

/* ── buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  font-size: 13.5px; font-weight: 500;
  border-radius: 999px;
  transition: transform .15s var(--easing), background .2s var(--easing), border-color .2s var(--easing), box-shadow .2s var(--easing);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(0.97); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--fg-2);
  background: rgba(19,19,25,0.4);
}
.btn-ghost:hover {
  border-color: var(--line-2);
  color: var(--fg);
  background: rgba(23,23,30,0.8);
}
.btn-solid {
  background: var(--fg);
  color: var(--ink);
  border: 1px solid var(--fg);
}
.btn-solid:hover {
  background: var(--fg-2);
  border-color: var(--fg-2);
  box-shadow: 0 8px 24px rgba(255,255,255,0.12);
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: var(--accent-ink);
  border: 1px solid var(--accent);
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(139,92,246,0.22), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-accent:hover {
  box-shadow: 0 14px 36px rgba(139,92,246,0.38), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(-1px);
}
.arr-svg { width: 14px; height: 10px; transition: transform .2s var(--easing); }
.btn:hover .arr-svg { transform: translateX(3px); }
.btn-ico { width: 16px; height: 16px; }

/* ── section heads ───────────────────────────────── */
.section-head {
  max-width: 680px;
  margin: 0 0 64px;
}
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 11px/1 var(--f-mono);
  color: var(--fg-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(19,19,25,0.5);
  margin-bottom: 24px;
}
.s-num {
  color: var(--accent);
  font-weight: 600;
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0 0 20px;
}
.section-head p {
  font-size: 17px;
  color: var(--fg-3);
  line-height: 1.6;
  max-width: 580px;
  margin: 0;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
  min-height: 92vh;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(35,35,45,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,35,45,0.4) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 80%);
  opacity: 0.7;
}
.hero-glow {
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 55%);
  filter: blur(40px);
  opacity: 0.55;
  animation: hero-glow 14s ease-in-out infinite;
}
@keyframes hero-glow {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
  50%      { transform: translateX(-50%) scale(1.1); opacity: 0.7; }
}
.hero-orbit {
  position: absolute;
  top: -80px; right: -240px;
  width: 780px; height: 780px;
  opacity: 0.45;
  animation: spin 120s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}
.hero-inner { position: relative; z-index: 2; padding-top: 40px; }

.hero-cols {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.hero-text { min-width: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font: 500 11.5px/1 var(--f-mono);
  color: var(--fg-2);
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(19,19,25,0.5);
  margin-bottom: 28px;
}
.eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.55; }
}
.eb-sep { color: var(--fg-5); }
.eb-ver { color: var(--accent); font-weight: 600; }
.eyebrow em { color: var(--accent); }

.hero-title {
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin: 0 0 24px;
  max-width: 560px;
}
.hero-title .ln {
  display: block;
  overflow: hidden;
}
.hero-title .ln > * {
  display: inline-block;
}

.lede {
  font-size: 16.5px;
  color: var(--fg-2);
  max-width: 540px;
  margin: 0 0 32px;
  line-height: 1.55;
}
.lede strong { color: var(--fg); font-weight: 600; }

.hero-ctas {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-ctas .btn { padding: 13px 20px; font-size: 14px; }

/* hero KPI strip — replaces long meta list under hero */
.hero-kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 520px;
}
.kpi {
  padding: 18px 0;
  border-right: 1px solid var(--line);
}
.kpi:last-child { border-right: 0; padding-left: 20px; }
.kpi:not(:first-child) { padding-left: 20px; }
.kpi-val {
  font-size: 28px; font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--fg);
  display: inline-flex; align-items: baseline; gap: 4px;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.kpi-val em {
  font-family: var(--f-serif);
  color: var(--accent);
  font-size: 34px;
}
.kpi-val i {
  font-style: normal;
  font: 500 11px/1 var(--f-mono);
  color: var(--fg-4);
  letter-spacing: 0.04em;
  margin-left: 2px;
}
.kpi-lbl {
  font: 500 10.5px/1.3 var(--f-mono);
  color: var(--fg-4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-meta {
  display: flex; gap: 24px;
  flex-wrap: wrap;
  font: 500 11.5px/1 var(--f-mono);
  color: var(--fg-4);
  letter-spacing: 0.04em;
  margin-bottom: 60px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 4px var(--accent-glow);
}

/* ── marquee ─────────────────────────────────────── */


@media (max-width: 720px) {
  .hero-head .hero-title { font-size: clamp(40px, 11vw, 72px); }
}
.marquee {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink-2), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--ink-2), transparent); }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  font: 500 13px/1 var(--f-mono);
  color: var(--fg-3);
  letter-spacing: 0.04em;
  animation: marquee-scroll 55s linear infinite;
  width: max-content;
  min-height: 24px;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  line-height: 24px;
  min-height: 24px;
  flex-shrink: 0;
}
.marquee-track span::after {
  content: "§";
  color: var(--accent);
  opacity: 0.5;
  margin-left: 48px;
}
.marquee-track em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--accent);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── §01 PROBLEM ─────────────────────────────────── */
.problem { padding: 120px 0; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.problem-card {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--panel), var(--ink-3));
  transition: transform .3s var(--easing), border-color .3s var(--easing), box-shadow .3s var(--easing);
}
.problem-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(201,167,255,0.04) 100%);
  border-radius: inherit;
  opacity: 0; transition: opacity .3s var(--easing);
  pointer-events: none;
}
.problem-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.problem-card:hover::before { opacity: 1; }
.pc-num {
  font: 500 11px/1 var(--f-mono);
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.pc-ico {
  width: 56px; height: 56px;
  color: var(--fg-2);
  margin-bottom: 20px;
  opacity: 0.8;
}
.pc-blink { animation: blink 2s ease-in-out infinite; }
.problem-card h3 {
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.problem-card p {
  color: var(--fg-3);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.pc-foot {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.pc-mono {
  font: 500 11.5px/1 var(--f-mono);
  color: var(--bad);
  letter-spacing: 0.04em;
}

.problem-totals {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--panel);
}
.pt-row {
  display: grid;
  grid-template-columns: 220px 1fr 120px;
  gap: 20px;
  align-items: center;
  padding: 14px 0;
}
.pt-label {
  font-size: 14px; font-weight: 500;
  color: var(--fg-2);
}
.pt-bar {
  position: relative;
  height: 10px;
  background: var(--ink-3);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.pt-fill {
  position: absolute; inset: 0;
  width: 0;
  border-radius: 999px;
  transition: width 1.6s var(--easing-smooth);
}
.pt-val {
  font: 500 12px/1 var(--f-mono);
  color: var(--fg-3);
  letter-spacing: 0.04em;
  text-align: right;
}
.pt-note {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--fg-3);
}
.pt-note em { color: var(--accent); font-weight: 500; }

@media (max-width: 880px) {
  .problem-grid { grid-template-columns: 1fr; }
  .pt-row { grid-template-columns: 1fr; gap: 8px; }
  .pt-val { text-align: left; }
}

/* ── §02 HOW ─────────────────────────────────────── */
.how { padding: 120px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.step {
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--panel);
  position: relative;
  overflow: hidden;
  transition: border-color .3s var(--easing), transform .3s var(--easing);
}
.step::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  opacity: 0; transition: opacity .4s var(--easing);
}
.step:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.step:hover::before { opacity: 0.5; }
.step-num {
  font: 500 11px/1 var(--f-mono);
  color: var(--fg-4);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.step-num em { color: var(--accent); font-style: normal; font-family: var(--f-mono); }
.step-ico {
  width: 64px; height: 64px;
  color: var(--fg-2);
  margin-bottom: 24px;
  opacity: 0.85;
}
.step-dot {
  animation: pulse 2s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.step h3 {
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  line-height: 1.2;
}
.step p {
  color: var(--fg-3);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 22px;
}
.step-tech {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.step-tech span {
  font: 500 10.5px/1 var(--f-mono);
  color: var(--fg-3);
  padding: 5px 9px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.flow { padding: 0 24px; }
.flow-svg { width: 100%; height: auto; }
.flow-path {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  transition: stroke-dashoffset 3.5s var(--easing-smooth);
}
.flow.in-view .flow-path { stroke-dashoffset: 0; }

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

/* ── §03 DEMO ────────────────────────────────────── */
.demo {
  padding: 120px 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.demo-shell {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--panel);
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.03);
}
.demo-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--ink-3);
}
.demo-tabs { display: flex; gap: 4px; }
.demo-tab {
  padding: 8px 14px;
  font: 500 11.5px/1 var(--f-mono);
  color: var(--fg-4);
  letter-spacing: 0.05em;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: color .2s var(--easing), background .2s var(--easing), border-color .2s var(--easing);
}
.demo-tab:hover { color: var(--fg-2); background: var(--panel-2); }
.demo-tab.active {
  color: var(--accent);
  background: rgba(139,92,246,0.12);
  border-color: var(--accent-2);
}
.demo-status {
  display: inline-flex; align-items: center; gap: 8px;
  font: 500 11px/1 var(--f-mono);
  color: var(--fg-3);
  letter-spacing: 0.04em;
}
.ds-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--fg-4);
  transition: background .3s var(--easing), box-shadow .3s var(--easing);
}
.ds-dot.working {
  background: var(--warn);
  box-shadow: 0 0 8px rgba(255,184,120,0.6);
  animation: pulse 1.2s ease-in-out infinite;
}
.ds-dot.done {
  background: var(--ok);
  box-shadow: 0 0 8px rgba(126,226,177,0.6);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.demo-left, .demo-right {
  background: var(--panel);
  padding: 28px;
  min-height: 440px;
}
.demo-drop {
  border: 2px dashed var(--line-2);
  border-radius: var(--r-md);
  padding: 40px 28px;
  text-align: center;
  background: var(--ink-3);
  transition: border-color .3s var(--easing), background .3s var(--easing);
  position: relative;
  overflow: hidden;
}
.demo-drop.active {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(139,92,246,0.08), rgba(139,92,246,0.02));
}
.dd-ico {
  width: 60px; height: 60px;
  color: var(--fg-3);
  margin: 0 auto 16px;
  opacity: 0.7;
}
.dd-title { font-size: 16px; font-weight: 500; margin-bottom: 4px; }
.dd-sub {
  font-size: 13px;
  color: var(--fg-3);
  margin-bottom: 20px;
}
.dd-sub u { color: var(--accent); text-decoration: none; border-bottom: 1px dashed var(--accent); }
.dd-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  font-size: 13px; font-weight: 500;
  background: var(--fg);
  color: var(--ink);
  border-radius: 999px;
  transition: transform .15s var(--easing), box-shadow .2s var(--easing);
}
.dd-btn:hover { box-shadow: 0 8px 20px rgba(255,255,255,0.15); }
.dd-btn:active { transform: scale(0.97); }
.dd-btn svg { width: 12px; height: 12px; }
.dd-progress {
  margin-top: 20px;
  height: 2px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  opacity: 0;
  transition: opacity .3s var(--easing);
}
.dd-progress.on { opacity: 1; }
.dd-progress span {
  display: block;
  width: 0; height: 100%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transition: width .3s linear;
}

.demo-files {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  min-height: 60px;
}
.demo-file {
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: opacity .3s var(--easing), transform .3s var(--easing), border-color .3s var(--easing);
  position: relative;
  overflow: hidden;
}
.demo-file.on { opacity: 1; transform: none; }
.demo-file.sorted { border-color: var(--accent-2); }
.demo-file::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
}
.demo-file[data-c="1"] { background: linear-gradient(135deg, #6a3fb3, #c9a7ff); }
.demo-file[data-c="2"] { background: linear-gradient(135deg, #5c5cb3, #8ab8ff); }
.demo-file[data-c="3"] { background: linear-gradient(135deg, #a0672d, #ffb878); }
.demo-file[data-c="4"] { background: linear-gradient(135deg, #2a7a4f, #7ee2b1); }

.dr-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.dr-title { font-size: 15px; font-weight: 500; color: var(--fg-2); }
.dr-mono {
  font: 500 11.5px/1 var(--f-mono);
  color: var(--accent);
  letter-spacing: 0.05em;
}
.dr-listing {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--ink-3);
  overflow: hidden;
}
.drl-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px; align-items: baseline;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--easing);
}
.drl-row:last-child { border-bottom: 0; }
.drl-row.filled { background: rgba(139,92,246,0.06); }
.drl-key {
  font: 500 10.5px/1 var(--f-mono);
  color: var(--fg-4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.drl-val {
  font-size: 13px;
  color: var(--fg-3);
  font-weight: 500;
  min-height: 16px;
  transition: color .3s var(--easing);
}
.drl-row.filled .drl-val { color: var(--fg); }
.dr-publish {
  margin-top: 18px;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 500;
  color: var(--fg-3);
  transition: all .3s var(--easing);
}
.dr-publish .mp-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--fg-4);
}
.dr-publish.ready {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--accent-ink);
  border-color: var(--accent);
  box-shadow: 0 10px 28px rgba(139,92,246,0.3);
}
.dr-publish.ready .mp-dot { background: var(--accent-ink); animation: pulse 1.4s ease-in-out infinite; }
.dr-publish svg { margin-left: auto; width: 14px; height: 10px; }

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

/* ── §04 FEATURES ────────────────────────────────── */
.features { padding: 120px 0; }
.features.features-bento-linear {
  padding-top: 96px;
  padding-bottom: 120px;
  border-top: 1px solid var(--line);
}
.features.features-bento-linear .section-head {
  margin-bottom: 52px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.feature {
  padding: 36px 30px;
  background: var(--panel);
  transition: background .3s var(--easing);
  position: relative;
}
.feature:hover { background: var(--panel-2); }
.feature-ico-wrap {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--ink-3);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s var(--easing);
}
.feature-ico-wrap::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,167,255,0.12), transparent 60%);
  opacity: 0; transition: opacity .3s var(--easing);
}
.feature:hover .feature-ico-wrap { border-color: var(--accent-2); }
.feature:hover .feature-ico-wrap::before { opacity: 1; }
.feature-ico {
  width: 32px; height: 32px;
  color: var(--fg-2);
  position: relative; z-index: 1;
  transition: color .3s var(--easing);
}
.feature:hover .feature-ico { color: var(--accent); }
.feature h3 {
  font-size: 19px; font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.feature p {
  color: var(--fg-3);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.feature-spec {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.feature-spec span {
  font: 500 10.5px/1 var(--f-mono);
  color: var(--fg-4);
  padding: 4px 8px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  letter-spacing: 0.04em;
}

@media (max-width: 960px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .features-grid { grid-template-columns: 1fr; } }

/* ── §05 VS ──────────────────────────────────────── */
.vs {
  padding: 120px 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.vs-table {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--panel);
  overflow: hidden;
}
.vs-head, .vs-row, .vs-total {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
}
.vs-head {
  padding: 18px 24px;
  background: var(--ink-3);
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.vs-col-label, .vs-col-a, .vs-col-b {
  display: flex; flex-direction: column; gap: 4px;
}
.vs-col-label {
  font: 500 11px/1 var(--f-mono);
  color: var(--fg-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vs-col-tag {
  font-size: 14px; font-weight: 500;
  color: var(--fg-2);
}
.vs-col-tag.accent { color: var(--accent); }
.vs-col-sub {
  font: 500 10.5px/1 var(--f-mono);
  color: var(--fg-4);
  letter-spacing: 0.04em;
}

.vs-row {
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
  transition: background .2s var(--easing);
}
.vs-row:hover { background: var(--panel-2); }
.vs-cell { font-size: 14px; font-weight: 500; color: var(--fg-2); }
.vs-cell.label { color: var(--fg-3); font-size: 13.5px; }
.vs-cell.accent {
  color: var(--accent);
  font-family: var(--f-mono);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 10px;
}
.vs-row .vs-cell:nth-child(2) {
  font-family: var(--f-mono);
  font-size: 13.5px;
  color: var(--fg-4);
  letter-spacing: 0.04em;
  text-decoration: line-through;
  text-decoration-color: rgba(255,138,141,0.5);
}
.vs-total {
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(139,92,246,0.05), transparent);
  border-top: 1px solid var(--line);
  gap: 20px;
}
.vs-total .vs-cell strong { font-size: 16px; font-weight: 600; color: var(--fg); }
.vs-total .vs-cell.accent strong { color: var(--accent); font-family: var(--f-mono); letter-spacing: 0.02em; }
.vs-save {
  font: 500 10.5px/1 var(--f-mono);
  color: var(--ok);
  padding: 4px 8px;
  background: rgba(126,226,177,0.1);
  border: 1px solid rgba(126,226,177,0.3);
  border-radius: 4px;
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .vs-head, .vs-row, .vs-total {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    padding: 14px 16px;
  }
}

/* ── §06 METRICS ─────────────────────────────────── */
.metrics { padding: 120px 0; }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.metric {
  padding: 36px 30px;
  background: var(--panel);
  text-align: left;
  transition: background .3s var(--easing);
  display: flex; flex-direction: column;
  gap: 16px;
  min-height: 220px;
}
.metric:hover { background: var(--panel-2); }
.m-label {
  font: 500 10.5px/1.4 var(--f-mono);
  color: var(--fg-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.m-big {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
  font-family: var(--f-sans);
  font-variant-numeric: tabular-nums;
  margin: auto 0;
}
.m-big em { font-family: var(--f-serif); }
.m-note {
  font-size: 12.5px;
  color: var(--fg-3);
  line-height: 1.5;
}

@media (max-width: 960px) { .metrics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .metrics-grid { grid-template-columns: 1fr; } }

/* ── §07 PRICING ─────────────────────────────────── */
.pricing { padding: 120px 0; }
.pricing-toggle {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  margin-bottom: 48px;
  position: relative;
}
.pt-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  font: 500 12.5px/1 var(--f-mono);
  color: var(--fg-3);
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: color .25s var(--easing), background .25s var(--easing);
  position: relative;
  z-index: 2;
}
.pt-btn:hover { color: var(--fg); }
.pt-btn.active {
  color: var(--accent-ink);
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  box-shadow: 0 4px 16px rgba(139,92,246,0.3);
}
.pt-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}
.pt-btn.active .pt-dot { opacity: 1; }
.pt-badge {
  font: 500 9.5px/1 var(--f-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 6px;
  background: rgba(19,10,36,0.2);
  color: currentColor;
  border-radius: 3px;
  margin-left: 2px;
}
.pt-btn:not(.active) .pt-badge {
  background: var(--ink-3);
  color: var(--accent);
  border: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.pricing-grid[hidden] { display: none; }
.plan {
  position: relative;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--panel);
  display: flex; flex-direction: column;
  transition: transform .3s var(--easing), border-color .3s var(--easing);
}
.plan:hover { transform: translateY(-3px); border-color: var(--line-2); }
.plan-featured {
  border-color: var(--accent-2);
  background: linear-gradient(180deg, rgba(139,92,246,0.08) 0%, var(--panel) 50%);
  box-shadow:
    0 20px 48px rgba(139,92,246,0.18),
    inset 0 1px 0 rgba(201,167,255,0.1);
}
.plan-badge {
  position: absolute;
  top: -12px; right: 24px;
  font: 500 10.5px/1 var(--f-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: var(--accent-ink);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(139,92,246,0.3);
}
.plan-head {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.plan-name {
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.plan-note {
  font: 500 11.5px/1 var(--f-mono);
  color: var(--fg-4);
  letter-spacing: 0.04em;
}
.plan-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 28px;
}
.pp-cur {
  font-size: 22px;
  color: var(--fg-3);
  font-weight: 500;
}
.pp-val {
  font-size: 60px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.plan-featured .pp-val { color: var(--accent); }
.pp-per {
  font: 500 12px/1 var(--f-mono);
  color: var(--fg-4);
  letter-spacing: 0.04em;
  margin-left: 4px;
}
.plan-list {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.plan-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px; align-items: baseline;
  font-size: 13.5px;
  color: var(--fg-2);
}
.plan-list li i {
  position: relative;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(139,92,246,0.12);
  border: 1px solid var(--accent-2);
  transform: translateY(2px);
}
.plan-list li i::before {
  content: ""; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%) rotate(45deg);
  width: 3px; height: 6px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
}
.plan-list li b {
  color: var(--fg);
  font-weight: 600;
  font-family: var(--f-mono);
  font-size: 12.5px;
}
.plan-cta {
  margin-top: auto;
  justify-content: center;
  width: 100%;
}

.pricing-note {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--ink-3);
  color: var(--fg-3);
  font-size: 13.5px;
  line-height: 1.5;
}
.pricing-note svg { width: 16px; height: 16px; flex: none; color: var(--accent); }
.pricing-note em { color: var(--accent); }

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

/* ── §08 VOICES ──────────────────────────────────── */
.voices { padding: 120px 0; }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.voice {
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--panel);
  margin: 0;
  display: flex; flex-direction: column;
  gap: 24px;
  position: relative;
  transition: border-color .3s var(--easing), transform .3s var(--easing);
}
.voice:hover { border-color: var(--line-2); transform: translateY(-2px); }
.voice::before {
  content: "„";
  position: absolute;
  top: 16px; right: 28px;
  font-family: var(--f-serif);
  font-size: 72px;
  font-style: italic;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
}
.voice blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg);
  position: relative;
  z-index: 1;
}
.voice figcaption {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.v-ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--c) 20%, var(--ink-3));
  border: 1px solid color-mix(in srgb, var(--c) 40%, transparent);
  color: var(--c);
  font: 500 12px/1 var(--f-mono);
  letter-spacing: 0.08em;
  flex: none;
}
.v-name { font-size: 14px; font-weight: 500; }
.v-role {
  font: 500 11px/1 var(--f-mono);
  color: var(--fg-4);
  letter-spacing: 0.04em;
  margin-top: 3px;
}

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

/* ── §09 FAQ ─────────────────────────────────────── */
.faq {
  padding: 120px 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  transition: padding .3s var(--easing);
}
.faq-item[open] { padding-bottom: 28px; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  font-size: 16.5px; font-weight: 500;
  color: var(--fg);
  cursor: pointer;
  padding: 4px 0;
  transition: color .2s var(--easing);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-icon {
  position: relative;
  width: 20px; height: 20px;
  flex: none;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--fg-3);
  transition: background .3s var(--easing), transform .3s var(--easing), opacity .3s var(--easing);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }
.faq-item[open] .faq-icon::after  { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item[open] .faq-icon::before { background: var(--accent); }
.faq-body {
  padding-top: 14px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-3);
  max-width: 720px;
}

@media (max-width: 960px) {
  .faq-wrap { grid-template-columns: 1fr; gap: 48px; }
}

/* ── §10 CTA ─────────────────────────────────────── */
.cta { padding: 120px 0 100px; }
.cta-card {
  position: relative;
  padding: 80px 60px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(139,92,246,0.18), transparent 60%),
    linear-gradient(180deg, var(--panel) 0%, var(--ink-3) 100%);
  text-align: center;
  overflow: hidden;
}
.cta-card::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(35,35,45,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,35,45,0.3) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 80%);
  pointer-events: none;
}
.cta-corner {
  position: absolute;
  width: 20px; height: 20px;
  border: 1.5px solid var(--accent);
  opacity: 0.6;
}
.cta-corner.tl { top: 20px; left: 20px; border-right: 0; border-bottom: 0; }
.cta-corner.tr { top: 20px; right: 20px; border-left: 0; border-bottom: 0; }
.cta-corner.bl { bottom: 20px; left: 20px; border-right: 0; border-top: 0; }
.cta-corner.br { bottom: 20px; right: 20px; border-left: 0; border-top: 0; }
.cta-label {
  position: relative;
  display: inline-block;
  font: 500 11px/1 var(--f-mono);
  color: var(--accent);
  letter-spacing: 0.14em;
  margin-bottom: 28px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--accent-2);
  border-radius: 999px;
  background: rgba(139,92,246,0.1);
}
.cta-card h2 {
  position: relative;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin: 0 0 24px;
}
.cta-card p {
  position: relative;
  max-width: 580px;
  margin: 0 auto 40px;
  color: var(--fg-3);
  font-size: 16px;
  line-height: 1.6;
}
.cta-ctas {
  position: relative;
  display: flex; gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-ctas .btn { padding: 14px 24px; font-size: 14.5px; }
.cta-trust {
  position: relative;
  display: flex; justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font: 500 11.5px/1 var(--f-mono);
  color: var(--fg-4);
  letter-spacing: 0.04em;
}
.cta-trust span { display: inline-flex; align-items: center; gap: 8px; }
.cta-trust span::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* ── footer ──────────────────────────────────────── */
.foot {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--ink);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.foot-brand-col { max-width: 320px; }
.foot-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 18px;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.foot-tag {
  font-size: 14px;
  color: var(--fg-3);
  margin: 0 0 20px;
  line-height: 1.5;
}
.foot-mono {
  font: 500 11px/1 var(--f-mono);
  color: var(--fg-4);
  letter-spacing: 0.06em;
}
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-h {
  font: 500 11px/1 var(--f-mono);
  color: var(--fg-4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.foot-col a {
  font-size: 13.5px;
  color: var(--fg-2);
  transition: color .2s var(--easing);
}
.foot-col a:hover { color: var(--accent); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-size: 12px;
  color: var(--fg-4);
  flex-wrap: wrap; gap: 12px;
}

@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ── reveal ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.992);
  backface-visibility: hidden;
  transition:
    opacity .56s cubic-bezier(.22, 1, .36, 1),
    transform .88s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--d, 0s);
}
[data-reveal].in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

[data-reveal-words] .ln > .w {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 1.18em, 0) scale(0.985);
  backface-visibility: hidden;
  transition:
    opacity .42s cubic-bezier(.22, 1, .36, 1),
    transform .86s cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--d, 0s) + var(--i, 0) * 0.02s);
}
[data-reveal-words].in .ln > .w {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* ── reduce-motion ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .hero-orbit, .hero-glow { animation: none !important; }
  .spotlight, .crosshair { display: none !important; }
  [data-reveal] {
    transition-duration: .32s, .5s !important;
  }
  [data-reveal-words] .ln > .w {
    transition-duration: .24s, .44s !important;
  }
}

/* ══ Beta Banner + Coming Soon Pricing CTAs ══════════════════════ */
.beta-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 820px;
  margin: 24px auto 40px;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(201,167,255,0.08), rgba(139,92,246,0.04));
  border: 1px solid rgba(201,167,255,0.22);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.beta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 120% at 0% 50%, rgba(201,167,255,0.10), transparent 60%);
  pointer-events: none;
}
.beta-banner .bb-pill {
  flex: 0 0 auto;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9a7ff, #8b5cf6);
  color: #0b0b10;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.beta-banner .bb-text {
  font-size: 14px;
  color: #c6c5d1;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.beta-banner .bb-text strong { color: #fff; font-weight: 500; }

.plan-cta-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 10px;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #9898a6;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.14);
  cursor: not-allowed;
  user-select: none;
  transition: border-color .3s, color .3s;
}
.plan-cta-soon:hover {
  border-color: rgba(201,167,255,0.35);
  color: #c9a7ff;
}
.plan-cta-soon-accent {
  color: #c9a7ff;
  border-color: rgba(201,167,255,0.35);
  background: rgba(201,167,255,0.05);
}
.plan-cta-soon-accent:hover {
  border-color: rgba(201,167,255,0.55);
  color: #fff;
}
.soon-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9a7ff;
  box-shadow: 0 0 0 0 rgba(201,167,255,0.6);
  animation: soon-pulse 2.4s ease-in-out infinite;
}
@keyframes soon-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,167,255,0.55); }
  50%      { box-shadow: 0 0 0 5px rgba(201,167,255,0); }
}

@media (max-width: 640px) {
  .beta-banner { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* Taste pass: clearer landing (ohne Mockup-Chrome) */
.hero { padding-bottom: 84px; }
.hero-title { max-width: 780px; }

.hero-kpi {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018)),
    rgba(13,13,18,0.72);
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}
.hero-kpi .kpi-val {
  font-size: clamp(24px, 2.3vw, 34px);
  letter-spacing: -0.045em;
}
.hero-kpi .kpi-val em {
  font-family: var(--f-sans);
  font-style: normal;
  font-weight: 650;
  color: var(--fg);
}
.hero-kpi .kpi-lbl { color: var(--fg-3); }

.hero-meta {
  justify-content: center;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 0 0;
  color: var(--fg-2);
}
.hero-meta span {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.hero-meta i {
  background: var(--ok);
  box-shadow: 0 0 10px rgba(126,226,177,0.65);
}

.marquee {
  background:
    linear-gradient(90deg, rgba(126,226,177,0.06), transparent 28%, rgba(201,167,255,0.06)),
    var(--ink-2);
}
.marquee-track { color: var(--fg-2); }
.marquee-track span::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}

.metrics {
  position: relative;
  overflow: hidden;
}
.metrics::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126,226,177,0.32), transparent);
}
.metric {
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(126,226,177,0.13), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.014)),
    var(--panel);
}
.metric:hover {
  transform: translateY(-4px);
  border-color: rgba(126,226,177,0.22);
}
.m-big {
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.07em;
}
.m-big em {
  font-family: var(--f-sans);
  font-style: normal;
  font-size: clamp(36px, 4vw, 56px);
}

.voices {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,167,255,0.08), transparent 42%),
    var(--ink);
}
.voices::before,
.voices::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,167,255,0.42), rgba(126,226,177,0.34), transparent);
  opacity: 0.7;
  animation: voice-rail 7s ease-in-out infinite;
}
.voices::before { top: 72px; }
.voices::after { bottom: 72px; animation-delay: -3.5s; }
@keyframes voice-rail {
  0%, 100% { transform: translateX(-12%); opacity: 0.18; }
  50% { transform: translateX(12%); opacity: 0.82; }
}
.voices-grid {
  position: relative;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
}
.voice {
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
    rgba(17,17,23,0.92);
}
.voice:nth-child(1) { grid-row: span 2; }
.voice::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.11) 42%, transparent 58%);
  transform: translateX(-120%);
  opacity: 0;
}
.voice:hover::after {
  animation: voice-sweep 1.1s var(--easing) forwards;
}
@keyframes voice-sweep {
  0% { transform: translateX(-120%); opacity: 0; }
  35% { opacity: 0.5; }
  100% { transform: translateX(120%); opacity: 0; }
}
.voice blockquote {
  font-size: clamp(17px, 1.65vw, 23px);
  letter-spacing: -0.025em;
}
.voice:nth-child(1) blockquote {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.18;
}

@media (max-width: 720px) {
  .hero-kpi,
  .voices-grid { grid-template-columns: 1fr; }
  .voice:nth-child(1) { grid-row: auto; }
}

/* Landing rescue pass: less wall-text, more stage. */
:root {
  --wrap: 1360px;
}

.hero {
  min-height: auto;
  padding: 104px 0 118px;
}

.hero-inner {
  padding-top: 64px;
}

.hero-cols {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 54px;
  margin-bottom: 38px;
}

.hero-text {
  width: min(100%, 1080px);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.11);
}

.hero-title {
  max-width: 1120px !important;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(58px, 7vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.hero-title .ln {
  display: inline;
  overflow: visible;
}

.hero-title .ln:first-child::after {
  content: " ";
}

.lede {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
  color: var(--fg-2);
}

.hero-ctas {
  justify-content: center;
  margin-bottom: 30px;
}

.hero-ctas .btn {
  min-height: 52px;
  padding: 14px 24px;
}

.hero-kpi {
  max-width: 880px !important;
  margin: 0 auto;
}

.kpi {
  padding: 18px 24px !important;
}

.hero-meta {
  width: min(100%, 1080px);
  margin-bottom: 36px;
  justify-content: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 170px;
  width: min(980px, 88vw);
  height: 380px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(126,226,177,0.11), rgba(201,167,255,0.08) 38%, transparent 70%);
  filter: blur(12px);
}

.section-label {
  border-radius: 0;
  border: 0;
  border-left: 2px solid var(--accent);
  padding: 2px 0 2px 12px;
  background: transparent;
}

.section-label .s-num {
  display: none;
}

.metrics-grid,
.feature-grid,
.pricing-grid,
.faq-grid {
  gap: 18px;
}

.metric,
.feature-card,
.price-card,
.faq-item {
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
}

@media (max-width: 760px) {
  .hero {
    padding-top: 72px;
  }

  .hero-title {
    font-size: clamp(44px, 13vw, 68px);
    letter-spacing: -0.06em;
  }

  .hero-title .ln {
    display: block;
  }

  .hero-title .ln:first-child::after {
    content: "";
  }

  .hero-kpi {
    grid-template-columns: 1fr !important;
  }
}

/* Premium minimal hero pass. */
.hero {
  min-height: 92vh;
  padding: 96px 0 96px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.055), transparent 30%),
    radial-gradient(circle at 70% 64%, rgba(126,226,177,0.07), transparent 34%),
    linear-gradient(180deg, #08080b 0%, #0b0b0f 62%, #09090c 100%);
}

.hero-bg {
  opacity: 0.72;
}

.hero-grid {
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255,255,255,0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.075) 1px, transparent 1px),
    linear-gradient(rgba(126,226,177,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,226,177,0.055) 1px, transparent 1px);
  background-size: 72px 72px, 72px 72px, 288px 288px, 288px 288px;
  background-position: center top;
  mask-image:
    radial-gradient(ellipse 74% 56% at 50% 28%, #000 0%, rgba(0,0,0,0.72) 48%, transparent 82%),
    linear-gradient(to bottom, transparent, #000 16%, #000 68%, transparent 94%);
  -webkit-mask-image:
    radial-gradient(ellipse 74% 56% at 50% 28%, #000 0%, rgba(0,0,0,0.72) 48%, transparent 82%),
    linear-gradient(to bottom, transparent, #000 16%, #000 68%, transparent 94%);
  animation: hero-grid-drift 22s linear infinite;
}

.hero-glow,
.hero-orbit,
.hero-bg::after {
  display: none !important;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, transparent 0 18%, rgba(8,8,11,0.22) 44%, rgba(8,8,11,0.88) 84%),
    linear-gradient(90deg, rgba(8,8,11,0.86), transparent 22%, transparent 78%, rgba(8,8,11,0.86));
}

@keyframes hero-grid-drift {
  from { background-position: center 0, center 0, center 0, center 0; }
  to { background-position: center 72px, center 72px, center 288px, center 288px; }
}

.hero-inner {
  padding-top: clamp(52px, 7vh, 92px);
}

.hero-cols {
  gap: clamp(36px, 5vw, 58px);
}

.hero-text {
  width: min(100%, 1120px);
}

.hero-title {
  max-width: 1120px !important;
  margin-bottom: 22px;
  font-size: clamp(46px, 6.2vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.066em;
  font-weight: 520;
  text-wrap: balance;
}

.hero-title em {
  color: var(--fg);
  font-family: var(--f-sans);
  font-style: normal;
  font-weight: 520;
}

.hero-title .ln {
  display: block;
}

.hero-title .ln:first-child::after {
  content: "";
}

.lede {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.7;
  color: rgba(236,236,242,0.68);
  text-wrap: pretty;
}

.lede strong {
  color: rgba(255,255,255,0.92);
  font-weight: 560;
}

.hero-ctas {
  gap: 10px;
  margin-bottom: 0;
}

.hero-ctas .btn {
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 20px;
}

.hero-ctas .btn-accent {
  color: #08080b;
  background: #f4f1ea;
  box-shadow:
    0 18px 48px rgba(244,241,234,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.16);
}

.hero-ctas .btn-ghost {
  color: rgba(255,255,255,0.84);
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.11);
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding: 82px 0 72px;
  }

  .hero-title {
    font-size: clamp(42px, 12vw, 62px);
    letter-spacing: -0.055em;
  }

  .lede {
    font-size: 16px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Review marquee pass. */
.voices {
  padding: 128px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(244,241,234,0.06), transparent 38%),
    linear-gradient(180deg, #09090c, #0d0d11 48%, #09090c);
}

.voices::before,
.voices::after {
  display: none;
}

.voices .section-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.voices .section-head h2 {
  text-wrap: balance;
}

.voices .section-head p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.review-marquee-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  overflow: hidden;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
}

.review-marquee-row {
  display: flex;
  width: max-content;
}

.review-marquee {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: review-marquee 34s linear infinite;
}

.review-marquee-row.reverse .review-marquee {
  animation-direction: reverse;
  animation-duration: 39s;
}

.review-marquee-wrap:hover .review-marquee {
  animation-play-state: paused;
}

.review-card {
  position: relative;
  flex: 0 0 auto;
  width: 318px;
  min-height: 166px;
  margin: 0;
  padding: 18px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.070), rgba(255,255,255,0.026)),
    rgba(14,14,18,0.92);
  box-shadow: 0 22px 70px rgba(0,0,0,0.24);
  transition:
    transform 420ms var(--easing),
    border-color 420ms var(--easing),
    background 420ms var(--easing);
}

.review-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.10) 44%, transparent 58%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 300ms var(--easing);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244,241,234,0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.095), rgba(255,255,255,0.034)),
    rgba(18,18,22,0.96);
}

.review-card:hover::after {
  opacity: 1;
  animation: review-card-sheen 920ms var(--easing) forwards;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.review-person img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
}

.review-person figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-person strong {
  font-size: 13px;
  line-height: 1.1;
  color: rgba(255,255,255,0.92);
  font-weight: 620;
}

.review-person span {
  font: 500 11px/1.2 var(--f-mono);
  color: rgba(255,255,255,0.42);
}

.review-card blockquote {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.012em;
  color: rgba(255,255,255,0.72);
}

@keyframes review-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

@keyframes review-card-sheen {
  from { transform: translateX(-120%); opacity: 0; }
  35% { opacity: 0.55; }
  to { transform: translateX(120%); opacity: 0; }
}

@media (max-width: 760px) {
  .voices {
    padding: 88px 0;
  }

  .review-marquee-wrap {
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .review-card {
    width: 282px;
    min-height: 174px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ★  HERO — Headline, CTAs, KPIs
   ═══════════════════════════════════════════════════════════════ */

/* Override hero layout — single column, dense composition */
.hero-inner { padding-top: 28px; }

/* Hero ohne Forge-Mockup (hero--linear auf <header>) */
.hero--linear {
  min-height: 0;
  padding: 68px 0 48px;
}
.hero--linear .hero-orbit {
  display: none;
}
.hero--linear .hero-glow {
  opacity: 0.28;
  filter: blur(56px);
}
.hero--linear .hero-grid {
  opacity: 0.45;
}
.hero--linear .hero-head {
  margin-bottom: 0;
  max-width: 720px;
}
.hero--linear .hero-head .hero-title .ln em,
.hero--linear .hero-head .hero-title .ln em.cycle {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--accent);
  filter: none;
}
.hero--linear .hero-ctas {
  margin-top: 8px;
  margin-bottom: 32px;
}
.hero--linear .hero-kpi {
  max-width: 560px;
}

/* ── Hero Split: Copy links, Premium-Vorschau rechts ── */
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 580px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: 40px;
  text-align: left;
}
.hero-split .hero-head {
  margin: 0;
  max-width: 640px;
}
.hero-visual {
  position: relative;
  z-index: 3;
  justify-self: end;
  width: 100%;
  max-width: 580px;
}
.hero-visual-glow {
  position: absolute;
  inset: -14% -24% 18% 6%;
  background:
    radial-gradient(ellipse 72% 58% at 72% 28%, rgba(201,167,255,0.26), transparent 56%),
    radial-gradient(ellipse 48% 44% at 18% 78%, rgba(126,226,177,0.14), transparent 52%);
  filter: blur(48px);
  opacity: 0.88;
  pointer-events: none;
  z-index: 0;
}
/* Hero rechts: Outcome-Liste + Vertrauen (Klarheit statt Mockup) */
.hero-prove {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 22px 22px 20px;
  max-width: 28rem;
  border-radius: 20px;
  text-align: left;
  background:
    linear-gradient(150deg, rgba(255,255,255,0.07) 0%, rgba(12,12,16,0.4) 55%, rgba(8,8,11,0.75) 100%),
    rgba(10,10,14,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 28px 56px -24px rgba(0,0,0,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.hero-prove::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(120% 80% at 88% 8%, rgba(201,167,255,0.12), transparent 50%);
  opacity: 0.9;
}
.hero-prove > * { position: relative; z-index: 1; }

.hero-prove-kicker {
  margin: 0 0 16px;
  font: 600 10px/1.2 var(--f-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
}

.hero-prove-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hero-prove-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: rgba(245,244,249,0.86);
}
.hero-prove-list strong {
  font-weight: 600;
  color: rgba(245,244,249,0.95);
}
.hero-prove-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--ok);
  flex-shrink: 0;
}
.hero-prove-svg {
  width: 20px;
  height: 20px;
  display: block;
}

.hero-prove-trust {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-prove-pill {
  display: inline-block;
  font: 600 9px/1 var(--f-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding: 5px 9px 4px;
  border-radius: 7px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-prove-trust-txt {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--fg-4);
  max-width: 32ch;
}

.hero-prove-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,167,255,0.25);
  padding-bottom: 1px;
  width: max-content;
  transition: color 0.2s var(--easing), border-color 0.2s var(--easing);
}
.hero-prove-link:hover {
  color: var(--fg);
  border-bottom-color: rgba(201,167,255,0.45);
}
.hero-prove-link:active {
  transform: translateY(1px);
}
.hero-prove-link-arr {
  width: 12px;
  height: 8px;
  flex-shrink: 0;
  opacity: 0.75;
  transition: transform 0.2s var(--easing);
}
.hero-prove-link:hover .hero-prove-link-arr {
  transform: translateX(3px);
}

@media (max-width: 980px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    justify-self: center;
    max-width: min(100%, 460px);
    order: 2;
  }
  .hero-split .hero-head {
    order: 1;
    max-width: none;
  }
  .hero-prove {
    max-width: 100%;
  }
}
@media (max-width: 520px) {
  .hero-prove {
    padding: 18px 16px 16px;
  }
  .hero-prove-list li {
    font-size: 13px;
  }
}

.hero-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto 56px;
  text-align: left;
  z-index: 3;
}
.hero-head .hero-title {
  font-size: clamp(42px, 5.6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 400;
  margin: 0;
  max-width: none;
}
.hero-head .hero-title .ln {
  display: block;
  position: relative;
}
/* Eine Zeile festhalten: kurze data-cycle-Texte + kein Höhensprung beim Wechsel */
.hero-head .hero-title .ln--cycle {
  min-height: 1em;
}
@media (min-width: 480px) {
  .hero-head .hero-title .ln--cycle {
    white-space: nowrap;
  }
}
.hero-head .hero-title .ln em {
  display: inline-block;
  position: relative;
  padding-right: 0.06em;
  background: linear-gradient(120deg, var(--accent) 0%, #f0e2ff 50%, var(--accent-2) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(201,167,255,0.18));
}
.hero-head .lede {
  max-width: 640px;
  font-size: 18px;
  margin: 6px 0 0;
}

/* Top release-note bar — uses original eyebrow font treatment */
.hero-marker {
  display: inline-flex; align-items: center; gap: 12px;
  font: 500 11.5px/1 var(--f-mono);
  letter-spacing: 0.06em;
  color: var(--fg-2);
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    rgba(19,19,25,0.55);
  width: max-content;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 6px 24px rgba(0,0,0,0.4);
  margin-bottom: 8px;
  transition: border-color .25s var(--easing), background .25s var(--easing), transform .25s var(--easing);
}
.hero-marker:hover {
  border-color: rgba(201,167,255,0.45);
  background:
    linear-gradient(180deg, rgba(201,167,255,0.06), rgba(255,255,255,0)),
    rgba(19,19,25,0.7);
  transform: translateY(-1px);
}
.hero-marker .hm-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 8px rgba(126,226,177,0.6);
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-marker .hm-badge {
  font-weight: 600;
  color: var(--accent);
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.32);
  font-size: 10.5px;
  letter-spacing: 0.04em;
}
.hero-marker .hm-sep { color: var(--fg-5); }
.hero-marker .hm-news {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--fg);
  position: relative;
  overflow: hidden;
}
.hero-marker .hm-news-rot {
  display: inline-block;
  transition: transform .5s var(--easing-smooth), opacity .35s ease;
  will-change: transform, opacity;
}
.hero-marker .hm-news-rot.is-out { transform: translateY(-110%); opacity: 0; }
.hero-marker .hm-news-rot.is-in  { animation: hm-news-in 0.55s var(--easing-smooth) both; }
@keyframes hm-news-in {
  0%   { transform: translateY(110%); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.hero-marker .hm-arr {
  width: 12px; height: 8px;
  color: var(--accent);
  transition: transform .25s var(--easing);
  flex-shrink: 0;
}
.hero-marker:hover .hm-arr { transform: translateX(3px); }
.hero-marker .hm-stamp {
  color: var(--fg-3);
  font-variant-numeric: tabular-nums;
  font-size: 10.5px;
}

/* Cycle word (replaces static italic in title) */
.cycle {
  position: relative;
  transition: transform .55s var(--easing-smooth), opacity .35s ease;
  will-change: transform, opacity;
}
.cycle.is-out { transform: translateY(-22%) skewY(-2deg); opacity: 0; }
.cycle.is-in  { animation: cycle-in 0.6s var(--easing-smooth) both; }
@keyframes cycle-in {
  0%   { transform: translateY(40%) skewY(2deg); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: translateY(0) skewY(0); opacity: 1; }
}

/* Workflow proof replacement for the old metric wall. */
.workflow-proof {
  position: relative;
  overflow: hidden;
  padding: clamp(118px, 13vw, 190px) 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(126,226,177,0.10), transparent 29%),
    radial-gradient(circle at 84% 34%, rgba(201,167,255,0.11), transparent 31%),
    linear-gradient(180deg, rgba(8,8,12,0.96), rgba(7,8,11,1));
  border-top: 1px solid rgba(255,255,255,0.075);
  border-bottom: 1px solid rgba(255,255,255,0.075);
}

.workflow-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(circle at 50% 42%, #000 0%, transparent 68%);
  opacity: 0.38;
}

.workflow-proof::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126,226,177,0.38), rgba(201,167,255,0.28), transparent);
  opacity: 0.64;
}

.workflow-proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.86fr) minmax(460px, 1.34fr) minmax(250px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.workflow-copy,
.workflow-console,
.workflow-side article {
  border: 1px solid rgba(255,255,255,0.095);
  box-shadow: 0 40px 120px rgba(0,0,0,0.34);
}

.workflow-copy {
  position: relative;
  min-height: 540px;
  padding: clamp(28px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 10%, rgba(126,226,177,0.14), transparent 30%),
    linear-gradient(155deg, rgba(255,255,255,0.090), rgba(255,255,255,0.030) 48%, rgba(255,255,255,0.060));
}

.workflow-copy::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,167,255,0.20), transparent 64%);
  filter: blur(4px);
}

.workflow-kicker {
  position: relative;
  width: fit-content;
  color: rgba(244,241,234,0.58);
  font: 650 12px/1.2 var(--f-mono);
  letter-spacing: 0.08em;
}

.workflow-kicker::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: #7ee2b1;
  box-shadow: 0 0 24px rgba(126,226,177,0.72);
}

.workflow-copy h2 {
  max-width: 9ch;
  margin: 44px 0 22px;
  color: #f4f1ea;
  font: 650 clamp(42px, 5vw, 74px)/0.88 var(--f-sans);
  letter-spacing: -0.075em;
}

.workflow-copy p {
  max-width: 34ch;
  margin: 0;
  color: rgba(244,241,234,0.67);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.62;
}

.workflow-rail {
  display: grid;
  gap: 9px;
  margin-top: 42px;
}

.workflow-rail span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px 0 42px;
  border-radius: 999px;
  color: rgba(244,241,234,0.62);
  background: rgba(255,255,255,0.050);
  border: 1px solid rgba(255,255,255,0.070);
  font: 650 12px/1 var(--f-mono);
  letter-spacing: 0.02em;
}

.workflow-rail span::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(244,241,234,0.28);
}

.workflow-rail .is-active {
  color: #08100c;
  background: linear-gradient(135deg, #7ee2b1, #f4f1ea);
  border-color: rgba(126,226,177,0.50);
}

.workflow-rail .is-active::before {
  background: #08100c;
}

.workflow-console {
  position: relative;
  min-height: 540px;
  padding: 18px;
  overflow: hidden;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.030) 44%, rgba(126,226,177,0.045)),
    rgba(12,13,18,0.92);
}

.workflow-console::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    conic-gradient(from 110deg, transparent, rgba(126,226,177,0.16), transparent 26%, rgba(201,167,255,0.15), transparent 52%);
  animation: workflow-orbit 15s linear infinite;
  opacity: 0.72;
}

.workflow-console::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(5,6,9,0.70), rgba(5,6,9,0.88));
  border: 1px solid rgba(255,255,255,0.080);
}

.console-topbar,
.console-stage {
  position: relative;
  z-index: 1;
}

.console-topbar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,0.075);
}

.console-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(244,241,234,0.28);
}

.console-topbar span:first-child {
  background: #7ee2b1;
  box-shadow: 0 0 18px rgba(126,226,177,0.70);
}

.console-topbar strong {
  margin-left: auto;
  color: rgba(244,241,234,0.62);
  font: 650 11px/1 var(--f-mono);
  letter-spacing: 0.08em;
}

.console-stage {
  height: calc(100% - 48px);
  min-height: 470px;
}

.console-stage::before,
.console-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.72;
}

.console-stage::before {
  left: 232px;
  top: 168px;
  width: 154px;
  height: 1px;
  transform: rotate(-7deg);
  background: linear-gradient(90deg, rgba(126,226,177,0.02), rgba(126,226,177,0.56), rgba(244,241,234,0.0));
  box-shadow: 0 0 22px rgba(126,226,177,0.18);
}

.console-stage::after {
  right: 190px;
  bottom: 126px;
  width: 1px;
  height: 146px;
  background: linear-gradient(180deg, rgba(244,241,234,0.0), rgba(201,167,255,0.38), rgba(126,226,177,0.18));
  box-shadow: 0 0 26px rgba(201,167,255,0.16);
}

.proof-photo-stack {
  position: absolute;
  left: 24px;
  top: 46px;
  width: 260px;
  height: 226px;
}

.proof-photo {
  position: absolute;
  width: 178px;
  height: 122px;
  display: flex;
  align-items: flex-end;
  padding: 13px;
  border-radius: 24px;
  overflow: hidden;
  color: rgba(244,241,234,0.76);
  font: 700 11px/1.1 var(--f-mono);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 54px rgba(0,0,0,0.30);
  transition: transform 700ms var(--easing), filter 700ms var(--easing);
}

.proof-photo::before {
  content: "";
  position: absolute;
  inset: 14px 14px 36px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at 42% 42%, rgba(244,241,234,0.45), transparent 18%),
    radial-gradient(circle at 58% 46%, rgba(126,226,177,0.28), transparent 20%),
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.020));
}

.proof-photo span {
  position: relative;
  z-index: 1;
}

.proof-photo-a {
  left: 0;
  top: 0;
  transform: rotate(-8deg);
  background: linear-gradient(145deg, rgba(60,65,74,0.92), rgba(23,25,31,0.96));
}

.proof-photo-b {
  right: 2px;
  top: 54px;
  transform: rotate(7deg);
  background: linear-gradient(145deg, rgba(51,58,62,0.92), rgba(20,24,27,0.96));
}

.proof-photo-c {
  left: 42px;
  top: 112px;
  transform: rotate(-1deg);
  background: linear-gradient(145deg, rgba(44,64,57,0.96), rgba(14,23,20,0.98));
}

.proof-photo-c::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 19px;
  border: 1px solid rgba(126,226,177,0.48);
  box-shadow: inset 0 0 0 1px rgba(126,226,177,0.16), 0 0 34px rgba(126,226,177,0.18);
}

.workflow-console:hover .proof-photo-a {
  transform: translate(-8px, -7px) rotate(-11deg);
}

.workflow-console:hover .proof-photo-b {
  transform: translate(12px, -3px) rotate(10deg);
}

.workflow-console:hover .proof-photo-c {
  transform: translateY(-10px) rotate(0deg) scale(1.03);
}

.proof-editor {
  position: absolute;
  right: 22px;
  top: 70px;
  width: min(56%, 360px);
  padding: 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(244,241,234,0.96), rgba(232,228,218,0.91));
  color: #111216;
  box-shadow: 0 36px 90px rgba(0,0,0,0.40);
}

.proof-editor-head {
  display: grid;
  gap: 8px;
}

.proof-editor-head small {
  color: rgba(17,18,22,0.48);
  font: 800 10px/1 var(--f-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-editor-head strong {
  max-width: 14ch;
  color: #111216;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.proof-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0;
}

.proof-field-grid span {
  min-height: 56px;
  padding: 11px;
  border-radius: 16px;
  background: rgba(17,18,22,0.065);
  color: rgba(17,18,22,0.54);
  font: 700 10px/1.1 var(--f-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proof-field-grid b {
  display: block;
  margin-top: 8px;
  color: #111216;
  font: 760 13px/1.1 var(--f-sans);
  letter-spacing: -0.02em;
  text-transform: none;
}

.proof-lines {
  display: grid;
  gap: 8px;
}

.proof-lines i {
  display: block;
  width: var(--w);
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17,18,22,0.18), rgba(126,226,177,0.68));
}

.proof-release {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  align-items: center;
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 18%, rgba(201,167,255,0.20), transparent 32%),
    rgba(255,255,255,0.060);
  border: 1px solid rgba(255,255,255,0.095);
  backdrop-filter: blur(18px);
}

.proof-release span {
  grid-column: 1 / -1;
  color: rgba(126,226,177,0.82);
  font: 760 10px/1 var(--f-mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proof-release strong {
  max-width: 26ch;
  color: rgba(244,241,234,0.92);
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.proof-release-action {
  min-width: 132px;
  padding: 13px 16px;
  border-radius: 999px;
  color: #09100d;
  text-align: center;
  font: 800 12px/1 var(--f-sans);
  background: linear-gradient(135deg, #7ee2b1, #f4f1ea);
  box-shadow: 0 16px 36px rgba(126,226,177,0.18);
}

.workflow-side {
  display: grid;
  gap: 18px;
}

.workflow-side article {
  position: relative;
  min-height: 168px;
  padding: 24px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201,167,255,0.12), transparent 34%),
    linear-gradient(160deg, rgba(255,255,255,0.080), rgba(255,255,255,0.028));
  transition: transform 650ms var(--easing), border-color 650ms var(--easing), background 650ms var(--easing);
}

.workflow-side article::after {
  content: "";
  position: absolute;
  inset: auto 24px 20px 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(126,226,177,0.42), transparent);
  opacity: 0.62;
}

.workflow-side article:hover {
  transform: translateY(-8px);
  border-color: rgba(126,226,177,0.22);
  background:
    radial-gradient(circle at 92% 12%, rgba(126,226,177,0.14), transparent 34%),
    linear-gradient(160deg, rgba(255,255,255,0.095), rgba(255,255,255,0.034));
}

.workflow-side b {
  display: block;
  margin-bottom: 18px;
  color: rgba(126,226,177,0.76);
  font: 800 12px/1 var(--f-mono);
  letter-spacing: 0.12em;
}

.workflow-side strong {
  display: block;
  max-width: 17ch;
  color: rgba(244,241,234,0.94);
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.workflow-side span {
  display: block;
  max-width: 28ch;
  margin-top: 14px;
  color: rgba(244,241,234,0.58);
  font-size: 13px;
  line-height: 1.52;
}

@keyframes workflow-orbit {
  to { transform: rotate(1turn); }
}

@media (max-width: 1120px) {
  .workflow-proof-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .workflow-copy {
    min-height: 420px;
  }

  .workflow-copy h2 {
    max-width: 14ch;
  }

  .workflow-side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .workflow-proof {
    padding: 92px 0;
  }

  .workflow-console {
    min-height: 690px;
  }

  .console-stage {
    height: auto;
    min-height: 620px;
  }

  .console-stage::before,
  .console-stage::after {
    display: none;
  }

  .proof-photo-stack,
  .proof-editor,
  .proof-release {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .proof-photo-stack {
    margin: 22px 0 8px;
  }

  .proof-editor {
    margin-top: 18px;
  }

  .proof-release {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .proof-release-action {
    width: 100%;
  }

  .workflow-side {
    grid-template-columns: 1fr;
  }
}

/* Publish readiness pass: calmer SaaS surface, stronger product proof. */
.rail,
.crosshair,
.spotlight {
  display: none !important;
}

.section-label {
  border-radius: 12px;
  border-color: rgba(255,255,255,0.075);
  background: rgba(255,255,255,0.032);
  color: rgba(244,241,234,0.54);
  letter-spacing: 0.09em;
}

.s-num {
  display: none;
}

.hero--linear {
  padding-bottom: clamp(72px, 8vw, 118px);
}

.hero-split {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 680px);
  align-items: center;
}

.hero-split .hero-head {
  max-width: 720px;
}

.hero-head .hero-title {
  max-width: 660px;
  font-size: clamp(54px, 5.7vw, 88px);
  line-height: 0.91;
  letter-spacing: -0.078em;
}

.hero--linear .hero-head .hero-title .ln em,
.hero--linear .hero-head .hero-title .ln em.cycle {
  color: #f4f1ea;
}

.hero-head .lede {
  max-width: 610px;
  color: rgba(244,241,234,0.70);
}

.hero-product {
  position: relative;
  z-index: 2;
  width: min(100%, 660px);
  min-height: 480px;
  margin: 0;
  padding: 18px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.11);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.095), rgba(255,255,255,0.026) 45%, rgba(126,226,177,0.040)),
    rgba(9,10,14,0.90);
  box-shadow:
    0 42px 110px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.10);
}
.hero-product.hero-product--img {
  padding: 0;
  min-height: unset;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  width: min(180%, 1600px);
  max-width: none;
  margin-right: -45%;
  transform: translateX(-15%) scale(1.15);
  transform-origin: left center;
}
.hero-product--img::before { display: none; }
.hero-product--img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 50px 90px rgba(0,0,0,0.55));
}

.hero-cockpit {
  position: relative;
  z-index: 2;
  width: min(116%, 780px);
  margin-right: -10%;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 18%, rgba(201,167,255,0.18), transparent 34%),
    radial-gradient(circle at 17% 72%, rgba(159,128,255,0.15), transparent 35%),
    linear-gradient(145deg, rgba(24,24,31,0.98), rgba(8,9,13,0.98));
  box-shadow:
    0 48px 120px rgba(0,0,0,0.54),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transform: perspective(1200px) rotateY(-4deg) translateX(-3%);
  transform-origin: center;
  transition: transform 420ms cubic-bezier(.2,.8,.2,1), border-color 420ms ease, box-shadow 420ms ease;
}

.hero-cockpit:hover {
  border-color: rgba(201,167,255,0.34);
  box-shadow:
    0 58px 140px rgba(0,0,0,0.58),
    0 0 0 1px rgba(201,167,255,0.09),
    inset 0 1px 0 rgba(255,255,255,0.14);
  transform: perspective(1200px) rotateY(-1.5deg) translateX(-2%) translateY(-6px);
}

.hc-scan {
  position: absolute;
  inset: -45% 0 auto;
  height: 46%;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(201,167,255,0.13), transparent);
  filter: blur(1px);
  opacity: 0.76;
  animation: hc-scan 5.8s ease-in-out infinite;
}

.hc-topbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  background: rgba(7,8,12,0.72);
}

.hc-topbar img {
  width: 78px;
  height: auto;
  opacity: 0.92;
}

.hc-tabs {
  justify-self: center;
  display: inline-flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  color: rgba(244,241,234,0.52);
  font: 620 10px/1 var(--f-mono);
}

.hc-tabs span {
  padding: 8px 10px;
  border-radius: 999px;
}

.hc-tabs .active {
  color: rgba(244,241,234,0.96);
  background: rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.hc-ebay {
  padding: 9px 11px;
  border: 1px solid rgba(201,167,255,0.22);
  border-radius: 999px;
  background: rgba(201,167,255,0.09);
  color: rgba(234,224,255,0.94);
  font: 740 10px/1 var(--f-mono);
  white-space: nowrap;
}

.hc-shell {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
    rgba(14,15,20,0.88);
}

.hc-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
}

.hc-kicker,
.hc-card-head span,
.hc-quality small,
.hc-product-copy small,
.hc-form span {
  color: rgba(244,241,234,0.48);
  font: 660 9px/1.35 var(--f-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hc-head h3 {
  max-width: 460px;
  margin: 5px 0 0;
  color: #f4f1ea;
  font: 780 23px/1.02 var(--f-sans);
  letter-spacing: -0.045em;
}

.hc-head p {
  max-width: 430px;
  margin: 8px 0 0;
  color: rgba(244,241,234,0.58);
  font: 450 12px/1.55 var(--f-sans);
}

.hc-actions {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hc-actions span {
  padding: 9px 10px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: rgba(244,241,234,0.72);
  font: 700 10px/1 var(--f-sans);
}

.hc-actions .primary {
  color: #120d1f;
  background: linear-gradient(135deg, #f0e8ff, #c9a7ff);
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(201,167,255,0.26);
}

.hc-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.hc-metrics div {
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 15px;
  background: rgba(255,255,255,0.035);
}

.hc-metrics span {
  display: block;
  color: rgba(244,241,234,0.42);
  font: 680 8px/1 var(--f-mono);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.hc-metrics b {
  display: block;
  margin-top: 5px;
  color: #f4f1ea;
  font: 760 18px/1 var(--f-sans);
  letter-spacing: -0.04em;
}

.hc-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 10px;
  margin-top: 10px;
}

.hc-card {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: rgba(9,10,14,0.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055);
}

.hc-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.hc-card-head strong {
  color: #f4f1ea;
  font: 780 13px/1 var(--f-sans);
  letter-spacing: -0.02em;
}

.hc-product {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.hc-product + .hc-product {
  margin-top: 8px;
}

.hc-product:hover,
.hero-cockpit:hover .hc-product.active {
  transform: translateY(-3px);
  border-color: rgba(201,167,255,0.32);
  background: linear-gradient(135deg, rgba(201,167,255,0.13), rgba(255,255,255,0.035));
}

.hc-thumbs {
  position: relative;
  width: 48px;
  height: 40px;
}

.hc-thumbs span {
  position: absolute;
  width: 30px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background:
    radial-gradient(circle at 58% 34%, rgba(255,255,255,0.22), transparent 24%),
    linear-gradient(145deg, var(--tone), rgba(10,10,14,0.9));
  box-shadow: 0 12px 24px rgba(0,0,0,0.22);
}

.hc-thumbs span:nth-child(1) { left: 0; top: 4px; transform: rotate(-8deg); }
.hc-thumbs span:nth-child(2) { left: 10px; top: 1px; transform: rotate(4deg); }
.hc-thumbs span:nth-child(3) { left: 19px; top: 7px; transform: rotate(10deg); }

.hc-product-copy {
  min-width: 0;
}

.hc-product-copy b {
  display: block;
  overflow: hidden;
  color: rgba(244,241,234,0.95);
  font: 760 11.5px/1.15 var(--f-sans);
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hc-product-copy small {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: none;
}

.hc-progress {
  position: relative;
  height: 4px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.075);
}

.hc-progress i {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #8f6dff, #c9a7ff, #f0e8ff);
  animation: hc-bar 2.8s ease-in-out infinite;
}

.hc-status {
  padding: 6px 7px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 999px;
  font: 780 8px/1 var(--f-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hc-status.ready {
  color: #eadfff;
  background: rgba(201,167,255,0.12);
  border-color: rgba(201,167,255,0.28);
}

.hc-status.edit {
  color: #e5d7ff;
  background: rgba(201,167,255,0.10);
  border-color: rgba(201,167,255,0.24);
}

.hc-status.live {
  color: #f4f1ea;
  background: rgba(255,255,255,0.08);
}

.hc-quality {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(201,167,255,0.22);
  border-radius: 16px;
  background:
    radial-gradient(circle at 84% 12%, rgba(201,167,255,0.18), transparent 36%),
    rgba(201,167,255,0.065);
}

.hc-quality b {
  display: block;
  color: rgba(244,241,234,0.96);
  font: 760 12px/1 var(--f-sans);
}

.hc-quality small {
  display: block;
  margin-top: 5px;
  text-transform: none;
}

.hc-quality > strong {
  color: #d8c4ff;
  font: 820 24px/1 var(--f-sans);
  letter-spacing: -0.05em;
}

.hc-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.hc-form label {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
}

.hc-form span {
  display: block;
}

.hc-form b {
  display: block;
  margin-top: 6px;
  overflow: hidden;
  color: rgba(244,241,234,0.94);
  font: 760 11px/1.2 var(--f-sans);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hc-description {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.hc-description span {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.075);
}

.hc-description span::before {
  content: "";
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(244,241,234,0.42), rgba(201,167,255,0.66));
  animation: hc-type 3.5s ease-in-out infinite;
}

.hc-description span:nth-child(2)::before { width: 88%; animation-delay: .25s; }
.hc-description span:nth-child(3)::before { width: 56%; animation-delay: .5s; }

.hc-statusbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 18px;
  background: rgba(7,8,12,0.78);
  color: rgba(244,241,234,0.66);
  font: 670 10px/1.2 var(--f-mono);
}

.hc-statusbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9a7ff;
  box-shadow: 0 0 0 5px rgba(201,167,255,0.12), 0 0 20px rgba(201,167,255,0.68);
  animation: hc-pulse 1.8s ease-in-out infinite;
}

@keyframes hc-scan {
  0%, 34% { transform: translateY(-40%); opacity: 0; }
  50% { opacity: 0.75; }
  76%, 100% { transform: translateY(315%); opacity: 0; }
}

@keyframes hc-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.35); opacity: 1; }
}

@keyframes hc-bar {
  0%, 100% { filter: saturate(1); opacity: 0.76; }
  50% { filter: saturate(1.35); opacity: 1; }
}

@keyframes hc-type {
  0%, 100% { transform: translateX(-4%); opacity: 0.62; }
  50% { transform: translateX(14%); opacity: 1; }
}

@media (max-width: 1180px) {
  .hero-cockpit {
    width: 100%;
    margin-right: 0;
    transform: none;
  }

  .hero-cockpit:hover {
    transform: translateY(-4px);
  }

  .hc-head {
    grid-template-columns: 1fr;
  }

  .hc-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .hero-cockpit {
    border-radius: 22px;
    padding: 8px;
  }

  .hc-topbar {
    grid-template-columns: 1fr auto;
  }

  .hc-tabs {
    display: none;
  }

  .hc-shell {
    padding: 12px;
  }

  .hc-head h3 {
    font-size: 20px;
  }

  .hc-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hc-grid {
    grid-template-columns: 1fr;
  }

  .hc-editor {
    display: none;
  }

  .hc-statusbar {
    align-items: flex-start;
    line-height: 1.45;
  }
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.075);
  background:
    radial-gradient(circle at 18% 18%, rgba(126,226,177,0.11), transparent 25%),
    radial-gradient(circle at 86% 22%, rgba(201,167,255,0.14), transparent 29%),
    rgba(3,4,7,0.68);
}

.hero-product > * {
  position: relative;
  z-index: 1;
}

.hp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px 18px;
  color: rgba(244,241,234,0.54);
  font: 650 11px/1 var(--f-mono);
  letter-spacing: 0.08em;
}

.hp-top span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: #7ee2b1;
  box-shadow: 0 0 18px rgba(126,226,177,0.70);
}

.hp-top strong {
  color: rgba(244,241,234,0.84);
  font-weight: 650;
}

.hp-workspace {
  position: relative;
  min-height: 388px;
}

.hp-photos {
  position: absolute;
  left: 20px;
  top: 36px;
  width: 250px;
  height: 206px;
}

.hp-photo {
  position: absolute;
  display: grid;
  align-content: space-between;
  width: 160px;
  height: 112px;
  padding: 12px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 48% 38%, rgba(244,241,234,0.40), transparent 13%),
    radial-gradient(circle at 62% 42%, rgba(126,226,177,0.20), transparent 18%),
    linear-gradient(140deg, rgba(66,70,78,0.86), rgba(17,19,24,0.98));
  box-shadow: 0 20px 42px rgba(0,0,0,0.32);
}

.hp-photo span {
  width: fit-content;
  padding: 4px 6px;
  border-radius: 8px;
  color: rgba(244,241,234,0.78);
  background: rgba(0,0,0,0.30);
  font: 800 10px/1 var(--f-mono);
}

.hp-photo b {
  color: rgba(244,241,234,0.86);
  font: 750 12px/1.1 var(--f-mono);
  letter-spacing: -0.02em;
}

.hp-photo-main {
  left: 0;
  top: 0;
  transform: rotate(-8deg);
}

.hp-photo-side {
  right: 0;
  top: 58px;
  transform: rotate(7deg);
}

.hp-photo-detail {
  left: 46px;
  top: 118px;
  transform: rotate(-1deg);
  border-color: rgba(126,226,177,0.44);
  background:
    radial-gradient(circle at 48% 38%, rgba(244,241,234,0.40), transparent 13%),
    radial-gradient(circle at 62% 42%, rgba(126,226,177,0.28), transparent 18%),
    linear-gradient(140deg, rgba(39,61,54,0.88), rgba(12,20,18,0.98));
}

.hp-connector {
  position: absolute;
  left: 250px;
  top: 164px;
  width: 92px;
  height: 1px;
  background: linear-gradient(90deg, rgba(126,226,177,0.0), rgba(126,226,177,0.60), rgba(244,241,234,0.0));
  box-shadow: 0 0 22px rgba(126,226,177,0.26);
}

.hp-listing {
  position: absolute;
  right: 20px;
  top: 28px;
  width: min(320px, 54%);
  padding: 22px;
  border-radius: 28px;
  color: #111216;
  background: linear-gradient(180deg, rgba(244,241,234,0.98), rgba(226,222,212,0.94));
  box-shadow: 0 34px 84px rgba(0,0,0,0.44);
}

.hp-listing-head {
  display: grid;
  gap: 8px;
}

.hp-listing-head small {
  color: rgba(17,18,22,0.48);
  font: 850 10px/1 var(--f-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hp-listing-head strong {
  max-width: 11ch;
  color: #111216;
  font-size: clamp(28px, 3vw, 39px);
  line-height: 0.90;
  letter-spacing: -0.070em;
}

.hp-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.hp-fields span {
  padding: 10px;
  border-radius: 15px;
  background: rgba(17,18,22,0.070);
  color: rgba(17,18,22,0.52);
  font: 800 10px/1.1 var(--f-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hp-fields b {
  display: block;
  margin-top: 8px;
  color: #111216;
  font: 780 13px/1.1 var(--f-sans);
  letter-spacing: -0.02em;
  text-transform: none;
}

.hp-copy-lines {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.hp-copy-lines i {
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(17,18,22,0.18), rgba(126,226,177,0.66));
}

.hp-copy-lines i:nth-child(1) { width: 92%; }
.hp-copy-lines i:nth-child(2) { width: 74%; }
.hp-copy-lines i:nth-child(3) { width: 86%; }

.hp-review {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  align-items: center;
  margin: 8px 6px 0;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.095);
  background:
    radial-gradient(circle at 86% 18%, rgba(126,226,177,0.18), transparent 30%),
    rgba(255,255,255,0.055);
}

.hp-review span {
  grid-column: 1 / -1;
  color: rgba(126,226,177,0.84);
  font: 820 10px/1 var(--f-mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hp-review strong {
  color: rgba(244,241,234,0.92);
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hp-review a {
  padding: 13px 16px;
  border-radius: 999px;
  color: #08100c;
  background: linear-gradient(135deg, #7ee2b1, #f4f1ea);
  font: 820 12px/1 var(--f-sans);
  text-decoration: none;
  transition: transform 520ms var(--easing);
}

.hp-review a:hover {
  transform: translateY(-2px);
}

.proof-strip {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.075);
  border-bottom: 1px solid rgba(255,255,255,0.075);
  background:
    radial-gradient(ellipse 38% 160% at 100% 50%, rgba(201,167,255,0.18), transparent 68%),
    linear-gradient(90deg, rgba(126,226,177,0.095), rgba(255,255,255,0.018) 36%, rgba(201,167,255,0.11) 100%),
    rgba(10,11,15,0.92);
}

.proof-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
}

.proof-strip-inner span {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  color: rgba(244,241,234,0.62);
  font-size: 13px;
  line-height: 1.35;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.010)),
    rgba(255,255,255,0.018);
}

.proof-strip-inner span:last-child {
  background:
    radial-gradient(ellipse 82% 180% at 100% 50%, rgba(201,167,255,0.22), transparent 72%),
    linear-gradient(180deg, rgba(201,167,255,0.070), rgba(255,255,255,0.012)),
    rgba(255,255,255,0.018);
}

.proof-strip-inner b {
  color: rgba(244,241,234,0.94);
  font-weight: 720;
}

.hero--linear .hero-head .hero-title {
  max-width: 680px;
  line-height: 0.92;
}

.hero--linear .hero-head .hero-title .ln:first-child {
  color: #f4f1ea;
  font-family: var(--f-sans);
  font-style: normal;
  font-weight: 520;
  letter-spacing: -0.078em;
}

.hero--linear .hero-head .hero-title .ln--cycle {
  min-height: 1em;
}

.hero--linear .hero-head .hero-title .ln--cycle em,
.hero--linear .hero-head .hero-title .ln--cycle em.cycle {
  color: #f4f1ea;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.02;
  font-size: 0.86em;
}

.demo {
  background:
    radial-gradient(circle at 18% 18%, rgba(126,226,177,0.065), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(201,167,255,0.080), transparent 34%),
    var(--ink-2);
}

.demo-shell {
  border-radius: 34px;
  border-color: rgba(255,255,255,0.10);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.024)),
    rgba(10,11,16,0.94);
}

.demo-head {
  background: rgba(255,255,255,0.028);
}

.demo-left,
.demo-right {
  background:
    radial-gradient(circle at 50% 0%, rgba(244,241,234,0.030), transparent 44%),
    rgba(8,9,13,0.84);
}

.demo-drop {
  border-radius: 26px;
  border-color: rgba(255,255,255,0.11);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.014)),
    rgba(0,0,0,0.20);
}

.dd-btn,
.dr-publish {
  box-shadow: 0 16px 36px rgba(126,226,177,0.12);
}

.drl-row {
  border-radius: 15px;
}

@media (max-width: 980px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-product {
    width: min(100%, 680px);
  }

  .proof-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .hero-head .hero-title {
    font-size: clamp(44px, 13vw, 64px);
  }

  .hero-product {
    min-height: auto;
    padding: 14px;
    border-radius: 28px;
  }

  .hero-product::before {
    inset: 14px;
  }

  .hp-workspace {
    min-height: 600px;
  }

  .hp-photos,
  .hp-listing,
  .hp-review {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
  }

  .hp-photos {
    margin: 18px 0 28px;
  }

  .hp-connector {
    display: none;
  }

  .hp-review {
    grid-template-columns: 1fr;
    margin: 14px 0 0;
  }

  .hp-review a {
    text-align: center;
  }

  .proof-strip-inner {
    grid-template-columns: 1fr;
  }
}
