:root {
  --bg:        #0a0a0a;
  --bg-2:      #111111;
  --ink:       #f3f3f1;
  --ink-dim:   #8a8a85;
  --ink-faint: #404040;
  --green:     #39ff14;
  --green-2:   #2bd60a;
  --green-glow:#39ff14;
  --violet:    #7e3bf2;
  --violet-2:  #a855f7;
  --magenta:   #ff2bd6;
  --line:      #1f1f1f;
  --radius:    14px;
  --pad:       clamp(20px, 4vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html, body { background: var(--bg); color: var(--ink); font-family: 'Unbounded', sans-serif; font-weight: 300; line-height: 1.45; overflow-x: hidden; }
body { position: relative; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--green); color: #000; }

.mono { font-family: 'Space Mono', monospace; font-weight: 400; }
.eyebrow {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-dim);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--green); }

body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1000; opacity: .35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

.wrap { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 var(--pad); }

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad); background: rgba(10,10,10,.7);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .left { display: flex; align-items: center; gap: 14px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo .mark { width: 28px; height: 28px; }
.logo .name { font-weight: 700; letter-spacing: .02em; font-size: 18px; }
.nav .links { display: none; gap: 28px; align-items: center; }
.nav .links a { font-size: 13px; color: var(--ink-dim); transition: color .2s; }
.nav .links a:hover { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px; font-size: 13px; font-weight: 500;
  background: var(--green); color: #000; transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--green);
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 0 0 6px rgba(57,255,20,.15); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink-faint); }
.btn.ghost:hover { border-color: var(--ink); box-shadow: none; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink-faint); }
.btn-ghost:hover { border-color: var(--ink); box-shadow: none; transform: translateY(-1px); }
.btn-lang {
  padding: 7px 12px; border-radius: 999px; font-size: 11px; font-weight: 500;
  font-family: 'Space Mono', monospace; letter-spacing: .1em; text-transform: uppercase;
  background: transparent; color: var(--ink-dim); border: 1px solid var(--ink-faint);
  cursor: pointer; transition: color .2s, border-color .2s;
}
.btn-lang:hover { color: var(--green); border-color: var(--green); }
@media (min-width: 920px) { .nav .links { display: flex; } }

.hero {
  position: relative; padding: clamp(60px, 11vw, 140px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.hero .bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero .bg .blob { position: absolute; border-radius: 50%; filter: blur(110px); opacity: .55; }
.hero .bg .blob.a { width: 520px; height: 520px; left: -160px; top: -120px; background: var(--violet); }
.hero .bg .blob.b { width: 440px; height: 440px; right: -120px; top: 90px; background: var(--green); opacity: .22; }
.hero .bg .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 95%, rgba(255,255,255,.04) 95%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,.04) 95%);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: end;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0,1.45fr) minmax(0,1fr); gap: 64px; }
  .phone-decorations { display: block; }
}

.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.tag {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--ink-faint); color: var(--ink-dim);
}
.tag.green { color: var(--green); border-color: rgba(57,255,20,.4); background: rgba(57,255,20,.06); }

h1.headline {
  font-weight: 800; letter-spacing: -0.035em; line-height: .92;
  font-size: clamp(38px, 9vw, 132px);
  text-wrap: balance;
}

/* Container query — font scales with column, not viewport */
.hero-text { container-type: inline-size; }
@container (min-width: 500px) {
  h1.headline { font-size: clamp(38px, 13.5cqw, 132px); }
}
h1.headline em { font-style: normal; color: var(--green); text-shadow: 0 0 32px rgba(57,255,20,.45); }
h1.headline .stroke { -webkit-text-stroke: 1.5px var(--ink); color: transparent; }
.lede { margin-top: 30px; max-width: 560px; font-size: clamp(15px, 1.55vw, 18px); color: var(--ink-dim); font-weight: 300; }
.lede strong { color: var(--ink); font-weight: 500; }

.cta-row { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.platform-row { margin-top: 16px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.platform {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase;
}
.platform.on { color: var(--green); }
.platform.off { color: var(--ink-faint); }
.scroll-cue {
  margin-top: 48px; display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink-dim); font-family: 'Space Mono', monospace; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
}
.scroll-cue .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 12px var(--green); animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

.hero-side { position: relative; }
.phone {
  position: relative; width: min(320px, 88%); margin: 0 auto;
  aspect-ratio: 659/1280; background: #000;
  border: 8px solid #1c1c1c; border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,.6), 0 0 0 1px #2a2a2a, inset 0 0 0 1px #050505;
  overflow: hidden;
}
.phone-screen {
  position: absolute; inset: 0; overflow: hidden;
}
.phone-screen--img {
  padding: 0;
}
.phone-top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Space Mono', monospace; font-size: 10px; color: var(--ink-dim); padding: 0 8px;
}
.phone-tabs { display: flex; gap: 6px; padding: 8px 0; align-items: center; justify-content: center; }
.phone-tab {
  font-size: 9px; padding: 5px 11px; border-radius: 999px;
  border: 1px solid var(--ink-faint); color: var(--ink-dim); font-family: 'Space Mono', monospace;
}
.phone-tab.on { background: var(--green); color: #000; border-color: var(--green); font-weight: 700; }
.phone-flow { display: flex; align-items: center; gap: 8px; justify-content: center; padding: 6px 10px; }
.flow-pill {
  background: var(--green); color: #000; font-weight: 700; font-size: 10px;
  padding: 5px 12px; border-radius: 999px; font-family: 'Space Mono', monospace;
}
.flow-line { flex: 1; height: 1px; border-top: 2px dashed var(--ink-faint); }
.feed { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 4px; flex: 1; }
.cardlet {
  position: relative; aspect-ratio: 1/1; border-radius: 10px;
  background: linear-gradient(135deg, #1a1a1a, #0c0c0c); overflow: hidden; border: 1px solid #1c1c1c;
}
.cardlet .ph { position: absolute; inset: 0; opacity: .6; }
.cardlet .label {
  position: absolute; left: 8px; bottom: 6px;
  font-family: 'Space Mono', monospace; font-size: 9px; color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
.cardlet .duration {
  position: absolute; right: 6px; top: 6px;
  font-family: 'Space Mono', monospace; font-size: 8px; color: #fff;
  background: rgba(0,0,0,.55); padding: 2px 5px; border-radius: 4px;
}
.player {
  position: absolute; left: 8px; right: 8px; bottom: 24px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(20,20,20,.85); backdrop-filter: blur(10px);
  border: 1px solid #232323; border-radius: 10px; padding: 6px 8px;
}
.player .cover { width: 28px; height: 28px; border-radius: 6px; background: var(--violet); flex: 0 0 auto; }
.player .meta { flex: 1; min-width: 0; }
.player .meta .t { font-size: 9px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player .meta .a { font-size: 8px; color: var(--ink-dim); }
.player .play { width: 22px; height: 22px; border-radius: 50%; background: var(--green); display: grid; place-items: center; }
.player .play svg { width: 10px; height: 10px; }

.phone-decorations {
  position: absolute; inset: auto; top: 50%; left: -30px; right: -30px; pointer-events: none;
  display: none;
}
.deco-tag {
  position: absolute; padding: 8px 14px; border-radius: 999px;
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; box-shadow: 0 12px 32px rgba(0,0,0,.4); white-space: nowrap;
}
.deco-tag.t1 { top: -220px; left: -14px; background: var(--green); color: #000; transform: rotate(-6deg); font-weight: 700; }
.deco-tag.t2 { top: -40px; right: -30px; background: #fff; color: #000; transform: rotate(5deg); font-weight: 700; }
.deco-tag.t3 { bottom: -140px; left: 0; background: var(--violet); color: #fff; transform: rotate(-3deg); font-weight: 700; }

.ticker {
  position: relative; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: #000; overflow: hidden; padding: 22px 0;
}
.ticker-track {
  display: flex; gap: 48px; align-items: center; white-space: nowrap;
  animation: scroll 40s linear infinite; width: max-content;
}
.ticker-track span {
  font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: clamp(28px, 4.5vw, 56px);
  letter-spacing: -0.02em; color: var(--ink); display: inline-flex; align-items: center; gap: 48px;
}
.ticker-track span::after { content: '★'; color: var(--green); font-size: .6em; }
.ticker-track span.outline { -webkit-text-stroke: 1.5px var(--ink); color: transparent; }
.ticker-track span.green { color: var(--green); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

section { position: relative; padding: clamp(80px, 12vw, 140px) 0; }
.section-head { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 60px; max-width: 900px; }
.section-head h2 {
  font-weight: 700; letter-spacing: -0.03em; line-height: 1; text-wrap: balance;
  font-size: clamp(36px, 6.5vw, 88px);
}
.section-head h2 em { font-style: normal; color: var(--green); }
.section-head p { color: var(--ink-dim); font-size: clamp(15px, 1.4vw, 17px); max-width: 640px; line-height: 1.55; }
.section-num {
  font-family: 'Space Mono', monospace; color: var(--ink-dim); font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase;
}

.problem { background: linear-gradient(180deg, #0a0a0a 0%, #0d0a14 100%); }
.problem .stack {
  display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
}
@media (min-width: 780px) { .problem .stack { grid-template-columns: repeat(3,1fr); } }
.problem .cell {
  background: var(--bg); padding: 36px 32px; min-height: 200px;
  display: flex; flex-direction: column; gap: 14px; justify-content: space-between;
  position: relative; overflow: hidden;
}
.problem .cell .num {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-faint);
}
.problem .cell h3 { font-weight: 600; font-size: clamp(18px, 2vw, 22px); letter-spacing: -0.01em; line-height: 1.2; text-wrap: balance; }
.problem .cell p { color: var(--ink-dim); font-size: 14px; line-height: 1.5; }
.problem .cell .num,
.problem .cell h3,
.problem .cell p { position: relative; z-index: 1; }
.problem .cell .glyph {
  position: absolute; right: -20px; bottom: -20px; font-weight: 900; font-size: 140px;
  color: var(--ink-faint); opacity: .4; line-height: 1; letter-spacing: -0.05em; pointer-events: none; z-index: 0;
  font-variant-emoji: text;
}
.problem .verdict {
  margin-top: 48px; padding: 36px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(126,59,242,.18), rgba(57,255,20,.06));
  border: 1px solid rgba(126,59,242,.3);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.problem .verdict .big {
  font-weight: 700; letter-spacing: -0.02em; font-size: clamp(22px, 3vw, 36px);
  line-height: 1.1; flex: 1; min-width: 280px;
}
.problem .verdict .big em { font-style: normal; color: var(--green); }

.solution { position: relative; }
.solution .split { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
@media (min-width: 980px) { .solution .split { grid-template-columns: 1.05fr 1fr; gap: 80px; } }
.steps { list-style: none; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.steps li {
  border-bottom: 1px solid var(--line); padding: 24px 0;
  display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: start;
  transition: padding .2s;
}
.steps li:hover { padding-left: 8px; }
.steps li .n { font-family: 'Space Mono', monospace; color: var(--green); font-size: 13px; padding-top: 4px; letter-spacing: .05em; }
.steps li h4 { font-weight: 500; font-size: clamp(20px, 2.4vw, 28px); letter-spacing: -0.015em; line-height: 1.15; margin-bottom: 6px; }
.steps li p { color: var(--ink-dim); font-size: 14px; line-height: 1.5; }

.demo-mock { position: relative; aspect-ratio: 1/1; max-width: 520px; margin: 0 auto; }
.demo-mock .ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.08); animation: rot 80s linear infinite;
}
.demo-mock .ring.r2 { inset: 60px; animation-direction: reverse; animation-duration: 60s; }
.demo-mock .ring.r3 { inset: 120px; animation-duration: 40s; }
@keyframes rot { to { transform: rotate(360deg); } }
.demo-mock .core { position: absolute; inset: 0; display: grid; place-items: center; }
.demo-mock .core svg { width: 62%; height: 62%; }
.demo-mock .float {
  position: absolute; padding: 10px 14px; border-radius: 12px;
  background: rgba(20,20,20,.85); backdrop-filter: blur(10px);
  border: 1px solid #232323; display: flex; align-items: center; gap: 10px;
  font-family: 'Space Mono', monospace; font-size: 11px; box-shadow: 0 12px 40px rgba(0,0,0,.6);
}
.demo-mock .float .ic {
  width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center;
  background: var(--green); color: #000; font-weight: 700; font-size: 11px; flex: 0 0 auto;
}
.demo-mock .float.f1 { top: 8%; left: -4%; animation: bob 5s ease-in-out infinite; }
.demo-mock .float.f2 { top: 36%; right: -2%; animation: bob 6s ease-in-out infinite reverse; }
.demo-mock .float.f3 { bottom: 14%; left: 6%; animation: bob 7s ease-in-out infinite .5s; }
.demo-mock .float.f4 { bottom: 4%; right: 8%; animation: bob 5.5s ease-in-out infinite 1s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.audiences { background: #000; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audiences .grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
}
@media (min-width: 880px) { .audiences .grid { grid-template-columns: 1fr 1fr; } }
.aud {
  padding: clamp(36px, 5vw, 64px); position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 28px; min-height: 420px;
}
.aud.left { background: linear-gradient(180deg, rgba(126,59,242,.15), transparent); border-right: 1px solid var(--line); }
.aud.right { background: linear-gradient(180deg, rgba(57,255,20,.08), transparent); }
@media (max-width: 879px) { .aud.left { border-right: 0; border-bottom: 1px solid var(--line); } }
.aud h3 { font-weight: 700; letter-spacing: -0.02em; line-height: 1; font-size: clamp(36px, 5.5vw, 60px); }
.aud h3 .for {
  display: block; font-family: 'Space Mono', monospace; font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 14px; font-weight: 400;
}
.aud ul { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: auto; }
.aud li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: clamp(15px, 1.6vw, 18px); font-weight: 300; color: var(--ink);
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.aud li:last-child { border-bottom: 0; }
.aud li::before { content: '→'; color: var(--green); font-weight: 700; flex: 0 0 auto; }
.aud.left li::before { color: var(--violet-2); }
.soon {
  font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-faint);
  border: 1px solid var(--ink-faint); border-radius: 999px;
  padding: 2px 8px; vertical-align: middle; white-space: nowrap;
}

.studio { position: relative; }
.studio .columns { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 1000px) { .studio .columns { grid-template-columns: 1fr 1.1fr; gap: 80px; } }

.flow { position: relative; padding: 24px 0; display: flex; flex-direction: column; gap: 8px; }
.flow-step {
  position: relative; padding: 22px 24px; border-radius: 14px;
  background: #0f0f0f; border: 1px solid var(--line);
  display: grid; grid-template-columns: 42px 1fr; gap: 18px; align-items: center;
}
.flow-step .badge {
  width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: #000;
  display: grid; place-items: center; font-weight: 700; font-size: 14px;
  font-family: 'Space Mono', monospace; box-shadow: 0 0 24px rgba(57,255,20,.35);
}
.flow-step h5 { font-weight: 500; font-size: 17px; letter-spacing: -0.01em; margin-bottom: 4px; }
.flow-step p { color: var(--ink-dim); font-size: 13px; line-height: 1.5; }
.flow .conn { width: 1px; height: 18px; background: var(--ink-faint); margin-left: 45px; }

.screens {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; perspective: 1400px;
}
.screen {
  background: #0c0c0c; border: 1px solid var(--line); border-radius: 18px;
  padding: 18px; min-height: 360px; position: relative; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.screen.s1 { transform: rotate(-2deg) translateY(0); }
.screen.s2 { transform: rotate(1.5deg) translateY(28px); }
.screen.s3 { transform: none; padding: 0; }
.screen.s4 { transform: none; padding: 0; }
.screen .head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
  font-family: 'Space Mono', monospace; font-size: 11px; color: var(--ink-dim);
}
.screen .head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.stat { background: #0a0a0a; border: 1px solid #1a1a1a; border-radius: 10px; padding: 14px 12px; }
.stat .v { font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.stat .v.green { color: var(--green); }
.stat .l { font-family: 'Space Mono', monospace; font-size: 9px; color: var(--ink-dim); margin-top: 4px; letter-spacing: .05em; }

.studio-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.studio-btn {
  background: var(--green); color: #000; padding: 12px; border-radius: 10px;
  text-align: center; font-size: 11px; font-weight: 600; font-family: 'Space Mono', monospace;
  letter-spacing: .05em; text-transform: uppercase;
}
.studio-btn.ghost { background: transparent; border: 1px solid var(--ink-faint); color: var(--ink); }

.tracklist { display: flex; flex-direction: column; gap: 8px; }
.track {
  display: grid; grid-template-columns: 32px 1fr auto; gap: 12px; align-items: center;
  padding: 8px; border-radius: 8px; background: #0a0a0a; border: 1px solid #1a1a1a;
}
.track .cv { width: 32px; height: 32px; border-radius: 6px; }
.track .nm { font-size: 11px; }
.track .nm .a { color: var(--ink-dim); font-size: 9px; font-family: 'Space Mono', monospace; }
.track .pp { width: 18px; height: 18px; border-radius: 50%; background: var(--green); display: grid; place-items: center; }
.track .pp svg { width: 8px; height: 8px; }

.cv.c1 { background: linear-gradient(135deg, #7e3bf2, #39ff14); }
.cv.c2 { background: linear-gradient(135deg, #ff2bd6, #7e3bf2); }
.cv.c3 { background: linear-gradient(135deg, #39ff14, #0a0a0a); }
.cv.c4 { background: linear-gradient(135deg, #ffaa00, #ff2bd6); }

.manifesto {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(126,59,242,.25), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(57,255,20,.18), transparent 50%),
    #050505;
  border-top: 1px solid var(--line);
}
.manifesto-inner { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 920px) { .manifesto-inner { grid-template-columns: 1.4fr 1fr; gap: 64px; } }
.manifesto h2 {
  font-weight: 800; letter-spacing: -0.035em; line-height: .95;
  font-size: clamp(40px, 7vw, 96px); text-wrap: balance;
}
.manifesto h2 em { font-style: normal; color: var(--green); }
.manifesto h2 .stroke { -webkit-text-stroke: 1.5px var(--ink); color: transparent; }
.manifesto p { color: var(--ink-dim); margin-top: 24px; font-size: clamp(15px,1.5vw,18px); max-width: 600px; line-height: 1.6; }
.manifesto p strong { color: var(--ink); font-weight: 500; }

.why-card { background: #0a0a0a; border: 1px solid var(--line); border-radius: 18px; padding: 28px; }
.why-card h4 {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--green); margin-bottom: 18px;
}
.why-card .row {
  display: grid; grid-template-columns: 1fr; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.why-card .row:last-child { border-bottom: 0; }
.why-card .row .l { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--ink-dim); letter-spacing: .05em; }
.why-card .row .v { font-weight: 500; font-size: 15px; line-height: 1.4; }

.cta-final { background: #000; border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(57,255,20,.04) 0 12px, transparent 12px 24px);
  pointer-events: none;
}
.cta-box { position: relative; text-align: center; max-width: 880px; margin: 0 auto; }
.cta-box h2 { font-weight: 800; letter-spacing: -0.04em; line-height: .92; font-size: clamp(48px, 9vw, 128px); }
.cta-box h2 em { font-style: normal; color: var(--green); }
.cta-box p { color: var(--ink-dim); margin: 24px auto 36px; max-width: 560px; font-size: 16px; }
.cta-row.center { justify-content: center; }

.footer {
  border-top: 1px solid var(--line); padding: 48px var(--pad) 32px;
  display: flex; flex-direction: column; gap: 32px;
}
.footer-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.footer-top .word {
  font-weight: 900; letter-spacing: -0.05em; line-height: .85;
  font-size: clamp(64px, 14vw, 220px);
  -webkit-text-stroke: 1.5px var(--ink-faint); color: transparent;
}
.footer-top .word .acc { -webkit-text-stroke: 0; color: var(--green); }
.footer-meta { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; text-align: right; }
.footer-meta .label { font-family: 'Space Mono', monospace; color: var(--ink-dim); font-size: 12px; letter-spacing: .1em; }
.footer-meta .status { font-family: 'Space Mono', monospace; color: var(--green); font-size: 12px; }
.footer-cols {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
@media (min-width: 680px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }
.fcol h6 {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-dim); margin-bottom: 14px;
}
.fcol a { display: block; padding: 6px 0; color: var(--ink); font-size: 14px; transition: color .15s; }
.fcol a:hover { color: var(--green); }
.legal {
  display: flex; justify-content: space-between; align-items: center; padding-top: 24px;
  border-top: 1px solid var(--line); font-family: 'Space Mono', monospace; font-size: 11px;
  color: var(--ink-dim); flex-wrap: wrap; gap: 14px;
}

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }

@media (max-width: 780px) {
  h1.headline { font-size: clamp(30px, 11vw, 54px); line-height: 1.05; }

  .demo-mock { max-width: 320px; }
  .demo-mock .float { font-size: 10px; padding: 8px 10px; }
  .demo-mock .float.f1 { left: 2%; }
  .demo-mock .float.f2 { right: 2%; }
  .demo-mock .float.f3 { left: 2%; bottom: 20%; }
  .demo-mock .float.f4 { display: none; }

  .problem .cell { padding: 24px 20px; }
  .problem .verdict { padding: 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .problem .verdict .big { min-width: 0; }

  .aud { min-height: 0; padding: clamp(28px, 5vw, 48px); }

  .screens { grid-template-columns: 1fr; perspective: none; }
  .screen.s1 { transform: none; }
  .screen.s2 { display: none; }

  .manifesto h2 { line-height: 1.05; font-size: clamp(26px, 7vw, 96px); }

  .cta-box h2 { font-size: clamp(34px, 10vw, 128px); line-height: 1.05; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { justify-content: center; }

  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-meta { align-items: flex-start; text-align: left; }
}

@media (max-width: 520px) {
  .nav .right { display: flex; align-items: center; }
  .nav .right .btn:not(#lang-toggle),
  .nav .right .btn-ghost { display: none; }
}

@media (max-width: 480px) {
  .phone { width: min(260px, 84%); }

  .steps li { grid-template-columns: 44px 1fr; gap: 12px; }
  .steps li h4 { font-size: 18px; }

  section { padding: clamp(56px, 10vw, 100px) 0; }
  .section-head { margin-bottom: 40px; }

  .scroll-cue { margin-top: 32px; }
}

/* ==============================================
   BRAND ASSETS — Manrope, Logo, Icons, Cassette
   ============================================== */

/* Manrope — self-hosted */
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-SemiBold.otf') format('opentype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-ExtraBold.otf') format('opentype');
  font-weight: 800; font-style: normal; font-display: swap;
}

/*
  Unbounded + SpaceMono — папки готовы: fonts/Unbounded/ и fonts/SpaceMono/
  Скачать woff2-файлы с Google Fonts и раскомментировать:

@font-face {
  font-family: 'Unbounded';
  src: url('../fonts/Unbounded/Unbounded-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Unbounded';
  src: url('../fonts/Unbounded/Unbounded-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Unbounded';
  src: url('../fonts/Unbounded/Unbounded-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Unbounded';
  src: url('../fonts/Unbounded/Unbounded-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Unbounded';
  src: url('../fonts/Unbounded/Unbounded-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Unbounded';
  src: url('../fonts/Unbounded/Unbounded-ExtraBold.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Unbounded';
  src: url('../fonts/Unbounded/Unbounded-Black.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}

@font-face {
  font-family: 'Space Mono';
  src: url('../fonts/SpaceMono/SpaceMono-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('../fonts/SpaceMono/SpaceMono-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('../fonts/SpaceMono/SpaceMono-Italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}

  После добавления файлов — удалить <link> Google Fonts из index.html
*/

.lede,
.section-head p,
.aud li,
.flow-step p,
.steps li p,
.manifesto p,
.cta-box p,
.why-card .row .v,
.footer-meta .label {
  font-family: 'Manrope', 'Unbounded', sans-serif;
}

/* Real logo image */
.logo-img {
  height: 26px; width: auto; display: block;
}

/* Cassette decoration in hero */
.hero-cassette {
  position: absolute; bottom: -40px; right: -80px;
  width: 360px; pointer-events: none; z-index: 1;
  opacity: 0.14;
  animation: cassette-float 9s ease-in-out infinite;
}
@keyframes cassette-float {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-16px) rotate(-2deg); }
}
@media (max-width: 980px) { .hero-cassette { display: none; } }

/* Phone — real bottom nav */
.phone-nav {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-around; align-items: center;
  padding: 6px 0 10px;
  background: rgba(8,8,8,.97);
  border-top: 1px solid #1c1c1c;
  z-index: 4;
}
.pnav-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; flex: 1;
}
.pnav-ico {
  width: 18px; height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.35;
}
.pnav-item.active .pnav-ico { opacity: 0.9; }
.pnav-item.active::after {
  content: ''; display: block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--green);
}

/* Move player up to make room for nav bar */
.player { bottom: 54px; }

/* Player control icons */
.pctl { display: flex; align-items: center; gap: 5px; }
.pic  { width: 14px; height: 14px; filter: brightness(0) invert(1); opacity: 0.6; }
.pbtn {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); display: grid; place-items: center; flex: 0 0 auto;
}
.pic.pb { width: 10px; height: 10px; opacity: 1; filter: brightness(0); }

/* CTA logo */
.cta-anim-logo {
  width: 140px; height: 140px; object-fit: contain;
  display: block; margin: 0 auto 28px;
  filter: drop-shadow(0 0 24px rgba(57,255,20,.45));
}

/* Icon showcase in solution floats — use real icons */
.demo-mock .float .ic img {
  width: 14px; height: 14px;
  filter: brightness(0);
  display: block;
}
