:root {
  --bg: #F2EEE3; --bg2: #EAE5D6; --ink: #111111; --paper: #FFFFFF;
  --mut: rgba(17,17,17,0.6); --mut2: rgba(17,17,17,0.4);
  --yellow: #FFD400; --violet: #7C5CFF; --pink: #FF77B0; --lime: #C2F24A;
  --red: #FF3B30; --blue: #5AA7FF;
  --display: "Archivo Black", "Oswald", "Impact", sans-serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
}
html[lang="ar"] body { --sans: "Noto Sans Arabic", "Inter", system-ui, sans-serif; --display: "Inter", system-ui, sans-serif; }
html[lang="ja"] body { --sans: "Noto Sans JP", "Inter", system-ui, sans-serif; --display: "Inter", system-ui, sans-serif; }
html[lang="hi"] body { --sans: "Noto Sans Devanagari", "Inter", system-ui, sans-serif; --display: "Inter", system-ui, sans-serif; }
html[lang="ar"] body h1, html[lang="ar"] body h2, html[lang="ja"] body h1, html[lang="ja"] body h2, html[lang="hi"] body h1, html[lang="hi"] body h2 { font-weight: 800; letter-spacing: -1px; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
body.dirty { --yellow: #FFB800; --pink: #FF3A7A; --lime: #8BFF3A; --violet: #5A1CFF; --red: #FF1500; }
.halftone { position: fixed; inset: 0; pointer-events: none; opacity: 0.14; z-index: 1; background-image: radial-gradient(var(--ink) 0.7px, transparent 0.7px); background-size: 6px 6px; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
@media (max-width: 600px) { .wrap { padding: 0 18px; } }

.gate { position: fixed; inset: 0; z-index: 1000; background: rgba(17,17,17,0.85); display: flex; align-items: center; justify-content: center; padding: 24px; backdrop-filter: blur(6px); }
.gate.hidden { display: none; }
.gate-card { background: var(--bg); border: 3px solid var(--ink); border-radius: 14px; box-shadow: 10px 10px 0 var(--red); max-width: 520px; width: 100%; padding: 36px 32px; position: relative; text-align: center; }
.gate-card .stamp-corner { position: absolute; top: -16px; left: 20px; background: var(--yellow); border: 2px solid var(--ink); font-family: var(--display); font-size: 12px; letter-spacing: 1.4px; padding: 6px 12px; border-radius: 6px; transform: rotate(-4deg); box-shadow: 3px 3px 0 var(--ink); text-transform: uppercase; }
.gate-card h2 { font-family: var(--display); font-size: clamp(28px, 4vw, 40px); line-height: 0.95; letter-spacing: -1px; margin: 8px 0 18px; text-transform: uppercase; }
.gate-card p { font-size: 15px; line-height: 1.5; margin: 0 0 22px; color: var(--mut); }
.gate-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
@media (max-width: 480px) { .gate-options { grid-template-columns: 1fr; } }
.gate-opt { background: var(--paper); border: 2px solid var(--ink); border-radius: 10px; padding: 22px 16px; cursor: pointer; transition: transform .12s, box-shadow .12s; box-shadow: 4px 4px 0 var(--ink); text-align: left; font-family: inherit; }
.gate-opt:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.gate-opt.dirty-opt { background: var(--ink); color: var(--paper); box-shadow: 4px 4px 0 var(--red); }
.gate-opt.dirty-opt:hover { box-shadow: 6px 6px 0 var(--red); }
.gate-opt .badge { display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: 1.4px; padding: 3px 8px; border: 1.5px solid var(--ink); border-radius: 4px; background: var(--lime); margin-bottom: 10px; font-weight: 700; }
.gate-opt.dirty-opt .badge { background: var(--red); color: var(--paper); border-color: var(--paper); }
.gate-opt .ttl { font-family: var(--display); font-size: 22px; line-height: 1; text-transform: uppercase; margin-bottom: 6px; letter-spacing: -0.3px; }
.gate-opt .desc { font-size: 12.5px; line-height: 1.4; opacity: 0.8; }
.gate-leave { background: transparent; border: none; color: var(--mut); font-family: var(--mono); font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; cursor: pointer; padding: 6px 10px; text-decoration: underline; }
.gate-leave:hover { color: var(--red); }

nav.top { position: sticky; top: 0; z-index: 50; background: var(--bg); border-bottom: 2px solid var(--ink); }
nav.top .row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
@media (max-width: 780px) { nav.top .nav-links { display: none; } nav.top .row { padding: 10px 0; } nav.top .btn { padding: 10px 14px; font-size: 12px; } .logo { font-size: 22px; } }
.logo { font-family: var(--display); font-size: 28px; letter-spacing: -1px; display: inline-flex; align-items: baseline; gap: 4px; text-transform: uppercase; }
.logo .dot { width: 14px; height: 14px; background: var(--red); border: 2px solid var(--ink); border-radius: 4px; transform: rotate(12deg); display: inline-block; }
.logo-icon { width: 28px; height: 28px; border-radius: 6px; vertical-align: middle; margin-right: 6px; border: 2px solid currentColor; object-fit: cover; }
@media (max-width: 600px) { .logo-icon { width: 24px; height: 24px; margin-right: 4px; } }
@media (max-width: 600px) {
  nav.top .row { gap: 10px; }
  nav.top .row > div:last-child { gap: 6px !important; flex-shrink: 1; min-width: 0; }
  nav.top .btn.red-cta { padding: 10px 10px; font-size: 11px; box-shadow: 3px 3px 0 var(--ink); white-space: nowrap; }
  .logo { font-size: 0; gap: 0; flex-shrink: 0; }
  .logo-icon { margin-right: 0; transform: translateX(10px); }
  .lang-pick { padding: 5px 6px; font-size: 10px; box-shadow: 2px 2px 0 var(--ink); }
  .mode { box-shadow: 2px 2px 0 var(--ink); }
  .mode span { padding: 8px 12px; }
}
.nav-links { display: flex; gap: 24px; font-family: var(--mono); font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; font-weight: 700; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--red); }
.lang-pick { display: inline-flex; align-items: center; gap: 4px; background: var(--paper); border: 2px solid var(--ink); padding: 6px 8px; border-radius: 6px; box-shadow: 3px 3px 0 var(--ink); font-family: var(--mono); font-size: 11px; letter-spacing: 1.1px; text-transform: uppercase; font-weight: 700; }
.lang-pick select { border: none; background: transparent; font: inherit; letter-spacing: inherit; text-transform: inherit; cursor: pointer; padding: 0; outline: none; }
.mode { display: inline-flex; align-items: center; background: var(--paper); border: 2px solid var(--ink); border-radius: 999px; box-shadow: 3px 3px 0 var(--ink); padding: 3px; position: relative; font-family: var(--display); font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; cursor: pointer; user-select: none; }
.mode .slider { position: absolute; top: 3px; bottom: 3px; left: 3px; width: calc(50% - 3px); background: var(--ink); border-radius: 999px; transition: left .25s cubic-bezier(.5,0,.2,1), background .15s; }
body.dirty .mode .slider { background: var(--red); left: calc(50% + 0px); }
.mode span { flex: 1; text-align: center; padding: 8px 18px; z-index: 1; position: relative; transition: color .2s; }
body:not(.dirty) .mode .s1 { color: var(--paper); }
body:not(.dirty) .mode .s2 { color: var(--ink); }
body.dirty .mode .s1 { color: var(--ink); }
body.dirty .mode .s2 { color: var(--paper); }

.btn { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: var(--paper); border: 2px solid var(--ink); font-family: var(--display); font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase; padding: 12px 20px; border-radius: 6px; cursor: pointer; box-shadow: 4px 4px 0 var(--yellow); text-decoration: none; transition: transform .1s, box-shadow .1s; }
.btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--yellow); }
.btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--yellow); }
.btn.ghost { background: var(--paper); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.btn.ghost:hover { box-shadow: 6px 6px 0 var(--ink); }
.btn.ghost:active { box-shadow: 1px 1px 0 var(--ink); }
.btn.big { padding: 16px 28px; font-size: 18px; }
.btn.red-cta { background: var(--red); color: var(--paper); border-color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.btn.red-cta:hover { box-shadow: 6px 6px 0 var(--ink); }
.tag { display: inline-flex; align-items: center; padding: 3px 8px; border: 1.5px solid var(--ink); background: var(--paper); font-family: var(--mono); font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; border-radius: 4px; }

.hero { padding: 50px 0 70px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero { padding: 28px 0 48px; } .hero-grid { grid-template-columns: 1fr; gap: 28px; } .hero-grid > div:last-child { order: 2; } }
.kicker { display: inline-flex; align-items: center; gap: 10px; background: var(--lime); border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); padding: 6px 14px; border-radius: 999px; font-family: var(--mono); font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 700; transform: rotate(-1.5deg); margin-bottom: 24px; }
.kicker .blink { width: 8px; height: 8px; border-radius: 999px; background: var(--red); animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0.3; } }
h1 { font-family: var(--display); font-weight: 900; font-size: clamp(44px, 8.2vw, 116px); line-height: 0.88; letter-spacing: -3px; text-transform: uppercase; margin: 0 0 22px; text-wrap: balance; }
@media (max-width: 600px) { h1 { font-size: clamp(38px, 11vw, 56px); letter-spacing: -1.8px; line-height: 0.92; } h1 .hl { box-shadow: 3px 3px 0 var(--ink); padding: 0 6px; } }
h1 .hl { background: var(--yellow); padding: 0 10px; display: inline-block; transform: rotate(-1deg); border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); }
body.dirty h1 .hl { background: var(--red); color: var(--paper); }
.rotor { display: inline-block; vertical-align: baseline; position: relative; min-width: 1ch; }
.rotor .item { background: var(--ink); color: var(--paper); padding: 0 12px 0 10px; display: inline-block; transform: rotate(-1deg); border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--red); text-decoration: line-through; text-decoration-thickness: 5px; text-decoration-color: var(--red); }
body.dirty .rotor .item { box-shadow: 5px 5px 0 var(--yellow); }
.rotor.swap .item { animation: pop .35s cubic-bezier(.5,0,.2,1); }
@keyframes pop { 0% { transform: rotate(-1deg) translateY(8px); opacity: 0; } 100% { transform: rotate(-1deg) translateY(0); opacity: 1; } }
.hero-sub { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.5; max-width: 540px; color: var(--ink); margin-bottom: 28px; text-wrap: pretty; }
.hero-sub b { background: var(--ink); color: var(--paper); padding: 1px 6px; }
body.dirty .hero-sub b { background: var(--red); }
@media (max-width: 600px) { .cta-row .btn.big { flex: 1; justify-content: center; padding: 14px 16px; font-size: 15px; } .stat-row { gap: 16px; flex-wrap: wrap; } .stat-row > div { flex: 1; min-width: 110px; } .stat-row b { font-size: 17px; } }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 26px; }
.stat-row { display: flex; gap: 28px; font-family: var(--mono); font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--mut); font-weight: 700; }
.stat-row > div { border-left: 2px solid var(--ink); padding-left: 12px; }
.stat-row b { color: var(--ink); font-family: var(--display); font-size: 22px; display: block; letter-spacing: -0.4px; line-height: 1.05; margin-bottom: 4px; }
.hero-stage { position: relative; padding: 18px; }
.hero-stage::before { content: ""; position: absolute; inset: 30px 0 30px 30px; background: repeating-linear-gradient(45deg, transparent 0 8px, rgba(17,17,17,0.06) 8px 9px), var(--bg2); border: 2px solid var(--ink); border-radius: 18px; transform: rotate(-3deg); z-index: 0; }
body.dirty .hero-stage::before { background: repeating-linear-gradient(45deg, transparent 0 8px, rgba(17,17,17,0.08) 8px 9px), #1a1a1a; }
.phone { width: 320px; max-width: 100%; border-radius: 38px; background: #000; position: relative; box-shadow: 0 30px 60px rgba(0,0,0,0.22), 0 0 0 7px #0b0b0b, 0 0 0 9px #1e1e1e, 14px 14px 0 var(--yellow); transform: rotate(3deg); margin: 0 auto; overflow: hidden; z-index: 2; }
body.dirty .phone { box-shadow: 0 30px 60px rgba(0,0,0,0.32), 0 0 0 7px #0b0b0b, 0 0 0 9px #1e1e1e, 14px 14px 0 var(--red); }
@media (max-width: 600px) { .phone { width: 270px; transform: rotate(2deg); box-shadow: 0 20px 40px rgba(0,0,0,0.22), 0 0 0 6px #0b0b0b, 0 0 0 8px #1e1e1e, 8px 8px 0 var(--yellow); } .phone .inner { min-height: 520px; } }
.phone .notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 90px; height: 24px; border-radius: 16px; background: #000; z-index: 50; }
.phone .inner { background: var(--bg); padding: 44px 16px 22px; min-height: 600px; position: relative; }
.phone-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.phone-title { font-family: var(--display); font-size: 14px; text-transform: uppercase; letter-spacing: -0.2px; }
.phone-live { font-family: var(--mono); font-size: 9px; letter-spacing: 1.4px; background: var(--red); color: var(--paper); padding: 3px 7px; border-radius: 3px; font-weight: 700; }
.msg { max-width: 85%; padding: 10px 12px; border: 2px solid var(--ink); border-radius: 10px; margin-bottom: 10px; font-size: 13px; line-height: 1.35; }
.msg.ai { background: var(--yellow); box-shadow: 3px 3px 0 var(--ink); transform: rotate(-0.5deg); }
.msg.me { background: var(--violet); color: var(--paper); margin-left: auto; box-shadow: 3px 3px 0 var(--ink); transform: rotate(0.5deg); }
.phone-chat { display: none; }
.phone-chat.active { display: block; }
.stamp { position: absolute; font-family: var(--display); font-size: 11px; background: var(--paper); color: var(--ink); padding: 5px 10px; border: 2px solid var(--ink); border-radius: 6px; box-shadow: 3px 3px 0 var(--ink); letter-spacing: 1.2px; text-transform: uppercase; z-index: 4; }

section { position: relative; padding: 80px 0; border-top: 2px solid var(--ink); }
@media (max-width: 780px) { section { padding: 48px 0; } }
section.on-ink { background: var(--ink); color: var(--paper); }
section.on-lime { background: var(--lime); }
section.on-violet { background: var(--violet); color: var(--paper); }
.eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; display: inline-flex; gap: 8px; align-items: center; }
.eyebrow::before { content: "◆"; color: var(--red); }
h2 { font-family: var(--display); font-weight: 900; font-size: clamp(34px, 5.5vw, 78px); line-height: 0.92; letter-spacing: -1.8px; text-transform: uppercase; margin: 0 0 24px; text-wrap: balance; }
@media (max-width: 600px) { h2 { letter-spacing: -1px; } h2 .hl { box-shadow: 3px 3px 0 var(--ink); padding: 0 6px; } }
h2 .hl { background: var(--yellow); color: var(--ink); padding: 0 10px; display: inline-block; border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); }
section.on-ink h2 .hl { background: var(--yellow); color: var(--ink); }
section.on-ink h2 .hl.green-bird { background: #58CC02; color: var(--paper); border-color: var(--paper); box-shadow: 5px 5px 0 var(--paper); }
h2 .hl.green-bird { background: #58CC02; color: var(--paper); border-color: var(--paper); box-shadow: 5px 5px 0 var(--paper); }
.enemy-intro { max-width: 840px; font-size: 20px; line-height: 1.5; margin-bottom: 42px; }
.enemy-intro b { background: var(--yellow); color: var(--ink); padding: 2px 6px; }
body.dirty .enemy-intro b { background: var(--red); color: var(--paper); }
@media (max-width: 780px) { .enemy-intro { font-size: 16px; margin-bottom: 28px; } }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 2px solid var(--paper); border-radius: 12px; overflow: hidden; position: relative; }
@media (max-width: 780px) { .compare { grid-template-columns: 1fr; border-width: 3px; } .compare .us { order: 1; border-bottom: 3px solid var(--paper); } .compare .them { order: 2; } }
.compare > div { padding: 28px; }
@media (max-width: 780px) { .compare > div { padding: 22px 20px; } }
.compare .them { background: transparent; border-right: 2px solid var(--paper); }
@media (max-width: 780px) { .compare .them { border-right: none; } }
.compare .us { background: var(--yellow); color: var(--ink); position: relative; }
.compare .us::after { content: attr(data-here); position: absolute; top: -10px; right: 14px; background: var(--red); color: var(--paper); font-family: var(--display); font-size: 11px; letter-spacing: 1.2px; padding: 4px 10px; border: 2px solid var(--ink); border-radius: 4px; transform: rotate(4deg); box-shadow: 2px 2px 0 var(--ink); }
@media (min-width: 781px) { .compare .us::after { display: none; } }
@media (max-width: 780px) { .compare .us { padding-top: 52px; } .compare .us::after { top: 12px; right: 12px; left: 12px; max-width: calc(100% - 24px); white-space: normal; text-align: center; font-size: 10px; line-height: 1.05; padding: 4px 8px; } html[dir="rtl"] .compare .us::after { right: 12px; left: 12px; transform: rotate(-2deg); } }
.compare h3 { font-family: var(--display); font-size: 22px; letter-spacing: 1.2px; text-transform: uppercase; margin: 0 0 16px; }
.compare .them h3 { color: rgba(255,255,255,0.6); text-decoration: line-through; text-decoration-thickness: 3px; text-decoration-color: var(--red); }
.compare ul { margin: 0; padding: 0; list-style: none; }
.compare li { padding: 10px 0; border-bottom: 1.5px dashed rgba(255,255,255,0.2); display: flex; gap: 10px; font-size: 15px; line-height: 1.4; }
@media (max-width: 600px) { .compare li { font-size: 14px; padding: 9px 0; } .strip .track { animation-duration: 22s; } }
.compare .us li { border-bottom-color: rgba(17,17,17,0.2); }
.compare li::before { content: "—"; flex-shrink: 0; color: var(--red); font-weight: 900; }
.compare .us li::before { content: "✓"; color: var(--ink); font-weight: 900; }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 32px; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr; } }
.feat { background: var(--paper); border: 2px solid var(--ink); border-radius: 10px; padding: 26px; box-shadow: 6px 6px 0 var(--ink); position: relative; }
.feat .num { font-family: var(--display); font-size: 56px; line-height: 0.9; letter-spacing: -2px; color: var(--mut2); margin-bottom: 10px; }
.feat h3 { font-family: var(--display); font-size: 26px; letter-spacing: -0.5px; text-transform: uppercase; line-height: 1; margin: 0 0 10px; }
.feat p { font-size: 15px; line-height: 1.5; color: var(--ink); margin: 0; }
.feat .tag { position: absolute; top: -12px; right: 18px; background: var(--yellow); transform: rotate(4deg); }

.poke { background: var(--ink); color: var(--paper); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); padding: 64px 0; text-align: center; position: relative; overflow: hidden; }
body.dirty .poke { background: var(--red); }
.poke .quote { font-family: var(--display); font-size: clamp(28px, 4.2vw, 56px); letter-spacing: -1px; line-height: 1.0; text-transform: uppercase; max-width: 980px; margin: 0 auto 22px; text-wrap: balance; }
.poke .quote .hl { background: var(--yellow); color: var(--ink); padding: 0 10px; display: inline-block; border: 2px solid var(--paper); box-shadow: 5px 5px 0 var(--paper); transform: rotate(-1deg); }

.mission-toggle { display: inline-flex; margin: 28px 0 6px; background: var(--paper); border: 2px solid var(--ink); border-radius: 999px; box-shadow: 4px 4px 0 var(--ink); padding: 4px; position: relative; font-family: var(--display); font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; cursor: pointer; user-select: none; }
.mission-toggle .mt-slider { position: absolute; top: 4px; bottom: 4px; left: 4px; width: calc(50% - 4px); background: var(--ink); border-radius: 999px; transition: left .25s cubic-bezier(.5,0,.2,1), background .15s; }
.mission-toggle.show-dirty .mt-slider { left: calc(50% + 0px); background: var(--red); }
.mission-toggle span { flex: 1; text-align: center; padding: 9px 22px; z-index: 1; position: relative; transition: color .2s; min-width: 200px; white-space: nowrap; }
@media (max-width: 540px) { .mission-toggle span { min-width: 0; padding: 9px 14px; font-size: 11px; } }
.mission-toggle:not(.show-dirty) .m1 { color: var(--paper); }
.mission-toggle.show-dirty .m2 { color: var(--paper); }
.missions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
@media (max-width: 900px) { .missions { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .missions { grid-template-columns: 1fr; } }
.mission-set { display: none; }
.mission-set.active { display: contents; }
.mission { background: var(--paper); border: 2px solid var(--ink); border-radius: 10px; box-shadow: 5px 5px 0 var(--ink); overflow: hidden; position: relative; transition: transform .15s; }
.mission:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink); }
.mission .band { padding: 6px 14px; border-bottom: 2px solid var(--ink); font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; display: flex; justify-content: space-between; }
.mission .body { padding: 18px; }
.mission h4 { font-family: var(--display); font-size: 24px; line-height: 0.95; letter-spacing: -0.5px; text-transform: uppercase; margin: 0 0 8px; text-wrap: balance; }
.mission .ru { font-family: var(--mono); font-size: 11px; color: var(--mut); margin-bottom: 10px; font-weight: 600; }
.mission p { font-size: 13.5px; line-height: 1.45; margin: 0; }
.mission .stamp { top: -10px; right: -10px; }
.missions-note { margin-top: 28px; font-family: var(--mono); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--mut); font-weight: 700; display: flex; gap: 12px; align-items: center; }
.missions-note::before { content: "⟳"; font-size: 18px; color: var(--red); }

.prices { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
@media (max-width: 780px) { .prices { grid-template-columns: 1fr; } }
.price { background: var(--paper); border: 2px solid var(--ink); border-radius: 12px; padding: 28px; box-shadow: 6px 6px 0 var(--ink); position: relative; }
.price.pro { background: var(--ink); color: var(--paper); box-shadow: 6px 6px 0 var(--yellow); }
.price .ribbon { position: absolute; top: -14px; right: 22px; background: var(--red); color: var(--paper); border: 2px solid var(--ink); padding: 5px 10px; border-radius: 5px; font-family: var(--display); font-size: 11px; letter-spacing: 1.2px; transform: rotate(4deg); box-shadow: 3px 3px 0 var(--ink); }
.price h3 { font-family: var(--display); font-size: 28px; letter-spacing: -0.5px; text-transform: uppercase; margin: 0 0 6px; color: var(--ink); }
.price.pro h3 { color: var(--paper); }
.price .amount { font-family: var(--display); font-size: 52px; letter-spacing: -2px; line-height: 0.9; margin: 14px 0 6px; color: var(--ink); }
.price.pro .amount { color: var(--paper); }
.price .amount-sub { font-family: var(--mono); font-size: 11px; color: var(--mut); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.price.pro .amount-sub { color: rgba(255,255,255,0.55); }
.price .per { font-family: var(--mono); font-size: 12px; letter-spacing: 1.2px; color: var(--mut); font-weight: 700; text-transform: uppercase; }
.price.pro .per { color: rgba(255,255,255,0.6); }
.price ul { list-style: none; padding: 0; margin: 18px 0 22px; }
.price li { padding: 8px 0; font-size: 14px; border-bottom: 1.5px dashed rgba(17,17,17,0.15); color: var(--ink); display: flex; gap: 8px; }
.price.pro li { color: var(--paper); }
.price li::before { content: "✓"; color: var(--red); font-weight: 900; }
.price.pro li { border-bottom-color: rgba(255,255,255,0.15); }
.price.pro li::before { color: var(--yellow); }
.price .btn { width: 100%; justify-content: center; }

.reviews-head { text-align: center; max-width: 880px; margin: 0 auto 30px; }
.reviews-head h2 { margin-bottom: 14px; }
.reviews-head p { font-size: 17px; line-height: 1.5; color: var(--mut); max-width: 720px; margin: 0 auto; }
.users-stat { text-align: center; margin: 0 auto 12px; max-width: 720px; }
.users-stat .big { font-family: var(--display); font-size: clamp(56px, 9vw, 132px); letter-spacing: -3px; line-height: 0.92; margin: 0; }
.users-stat .big sup { font-size: 0.4em; color: var(--red); vertical-align: super; }
.users-stat .label { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-top: 6px; }
.users-stat .disclaimer { margin-top: 14px; font-size: 14px; line-height: 1.45; max-width: 540px; margin-left: auto; margin-right: auto; color: var(--mut); }
.users-stat .disclaimer::before { content: "* "; color: var(--red); font-weight: 700; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reviews { grid-template-columns: 1fr; } }
.review { background: var(--paper); border: 2px solid var(--ink); border-radius: 10px; padding: 22px; box-shadow: 5px 5px 0 var(--ink); position: relative; }
.review:nth-child(2) { transform: rotate(-1deg); }
.review:nth-child(3) { transform: rotate(0.7deg); }
.review:nth-child(5) { transform: rotate(-0.6deg); }
.review:nth-child(6) { transform: rotate(0.5deg); }
.review .stars { color: var(--red); font-family: var(--display); letter-spacing: 1px; margin-bottom: 10px; }
.review .text { font-size: 15px; line-height: 1.5; margin-bottom: 16px; }
.review .who { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 700; color: var(--mut); }
.review .ava { width: 36px; height: 36px; border-radius: 999px; background: var(--yellow); border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 14px; color: var(--ink); }
body.dirty .review { background: #1a1a1a; color: var(--paper); border-color: var(--paper); box-shadow: 5px 5px 0 var(--red); }
body.dirty .review .who { color: rgba(255,255,255,0.7); }
body.dirty .review .ava { border-color: var(--paper); }
.reviews-pussy, .reviews-dirty { display: contents; }
body.dirty .reviews-pussy { display: none; }
body:not(.dirty) .reviews-dirty { display: none; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; max-width: 1080px; margin: 32px auto 0; }
@media (max-width: 780px) { .faq-grid { grid-template-columns: 1fr; } }
.q { background: var(--paper); border: 2px solid var(--ink); border-radius: 10px; padding: 18px 22px; cursor: pointer; box-shadow: 4px 4px 0 var(--ink); transition: transform .1s, box-shadow .1s; align-self: start; }
.q:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink); }
.q[open] { background: var(--yellow); }
.q summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-family: var(--display); font-size: 16px; letter-spacing: -0.2px; text-transform: uppercase; line-height: 1.15; }
.q summary::-webkit-details-marker { display: none; }
.q summary::after { content: "+"; font-family: var(--display); font-size: 24px; color: var(--red); flex-shrink: 0; }
.q[open] summary::after { content: "×"; }
.q .a { margin-top: 12px; font-size: 14px; line-height: 1.5; color: var(--ink); }

.final { background: var(--yellow); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
body.dirty .final { background: var(--red); color: var(--paper); }
.final h2 { margin-bottom: 26px; }
.final .sub { max-width: 600px; margin: 0 auto 32px; font-size: 18px; line-height: 1.45; }

footer { background: var(--ink); color: var(--paper); padding: 60px 0 30px; font-family: var(--sans); font-size: 14px; }
footer .top-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.15); }
footer ul.social li a { display: inline-flex; align-items: center; gap: 8px; }
footer ul.social svg { flex-shrink: 0; opacity: 0.85; }
@media (max-width: 900px) { footer .top-row { grid-template-columns: 1fr 1fr; gap: 28px; } footer .brandcol { grid-column: 1 / -1; } }
footer .brandcol .logo { color: var(--paper); margin-bottom: 14px; }
footer .brandcol p { font-size: 14px; line-height: 1.5; opacity: 0.7; max-width: 320px; margin: 0 0 16px; }
footer h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 700; margin: 0 0 16px; color: var(--yellow); opacity: 0.9; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; }
footer a { text-decoration: none; opacity: 0.75; }
footer a:hover { opacity: 1; color: var(--yellow); }
footer .bottom-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 28px; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; opacity: 0.6; }

@media (max-width: 600px) { nav.top .row { gap: 8px; } nav.top .btn { padding: 9px 11px; font-size: 11px; } .mode { font-size: 10px; } .mode span { padding: 7px 12px; } .hero-stage { padding: 8px; } .hero-stage::before { inset: 20px 0 20px 14px; } .stamp { font-size: 9px; padding: 4px 7px; } .users-stat .big { font-size: clamp(48px, 14vw, 96px); letter-spacing: -1.5px; } .poke .quote { font-size: clamp(24px, 7vw, 32px); } section { padding: 44px 0; } .gate-card { padding: 28px 22px; } .gate-card h2 { font-size: 26px; } .price { padding: 22px; } .price .amount { font-size: 42px; } h2 { font-size: clamp(30px, 9vw, 48px); } .review { padding: 18px; } .review .text { font-size: 14px; } footer { padding: 40px 0 24px; } footer h5 { margin-bottom: 12px; } }

.dirty-only { display: none !important; }
body.dirty .dirty-only { display: revert !important; }
body.dirty .pussy-only { display: none !important; }

.strip { background: var(--ink); color: var(--paper); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); padding: 14px 0; overflow: hidden; }
.strip .track { display: flex; gap: 40px; font-family: var(--display); font-size: 22px; letter-spacing: -0.5px; text-transform: uppercase; white-space: nowrap; animation: slide 30s linear infinite; will-change: transform; }
.strip .track span { display: inline-flex; align-items: center; gap: 12px; }
.strip .track span::after { content: "●"; color: var(--red); font-size: 12px; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

html[dir="rtl"] .stat-row > div { border-left: none; border-right: 2px solid var(--ink); padding-left: 0; padding-right: 12px; }
html[dir="rtl"] .compare .us::after { right: auto; left: 14px; transform: rotate(-4deg); }
html[dir="rtl"] .feat .tag { right: auto; left: 18px; }
html[dir="rtl"] .price .ribbon { right: auto; left: 22px; transform: rotate(-4deg); }
html[dir="rtl"] .gate-card .stamp-corner { left: auto; right: 20px; transform: rotate(4deg); }

.blog-page .halftone { opacity: 0.1; }
.blog-hero { padding: 54px 0 44px; border-top: none; }
.blog-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: start; }
.blog-kicker { display: inline-flex; align-items: center; gap: 10px; background: var(--paper); border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); padding: 6px 14px; border-radius: 999px; font-family: var(--mono); font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; transform: rotate(-1.2deg); margin-bottom: 18px; }
.blog-kicker .dot { width: 8px; height: 8px; background: var(--red); border-radius: 999px; }
.blog-page h1.blog-title { font-size: clamp(38px, 7vw, 82px); letter-spacing: -2px; margin-bottom: 18px; }
.blog-intro { max-width: 670px; font-size: 18px; line-height: 1.55; margin: 0 0 24px; }
.blog-intro b { background: var(--yellow); padding: 1px 6px; }
.blog-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.blog-badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.blog-badge { display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--ink); background: var(--paper); box-shadow: 3px 3px 0 var(--ink); padding: 8px 12px; border-radius: 8px; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.blog-feature { background: var(--ink); color: var(--paper); border: 2px solid var(--ink); border-radius: 14px; box-shadow: 8px 8px 0 var(--yellow); padding: 28px; position: relative; transform: rotate(1deg); }
.blog-feature .stamp { position: absolute; top: -12px; right: 18px; }
.blog-feature .meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.blog-feature h2 { font-size: clamp(28px, 4vw, 48px); line-height: 0.95; margin-bottom: 16px; }
.blog-feature p { font-size: 16px; line-height: 1.55; margin: 0 0 20px; color: rgba(255,255,255,0.88); }
.blog-feature .btn { box-shadow: 4px 4px 0 var(--paper); }

.blog-section-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 24px; }
.blog-section-head p { max-width: 520px; margin: 0; font-size: 16px; line-height: 1.45; color: var(--mut); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { background: var(--paper); border: 2px solid var(--ink); border-radius: 12px; box-shadow: 5px 5px 0 var(--ink); padding: 22px; display: flex; flex-direction: column; gap: 14px; text-decoration: none; transition: transform .12s, box-shadow .12s; min-height: 100%; }
.blog-card:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--ink); }
.blog-card-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-family: var(--mono); font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700; color: var(--mut); }
.blog-chip { display: inline-flex; align-items: center; padding: 4px 8px; border: 1.5px solid var(--ink); border-radius: 999px; background: var(--yellow); color: var(--ink); }
.blog-card h3 { font-family: var(--display); font-size: 26px; line-height: 0.98; letter-spacing: -0.5px; text-transform: uppercase; margin: 0; text-wrap: balance; }
.blog-card p { margin: 0; font-size: 15px; line-height: 1.5; }
.blog-card-footer { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--mut); }
.blog-card.template-card { background: var(--bg2); transform: rotate(-0.8deg); }
.blog-card.template-card .blog-chip { background: var(--lime); }
.blog-card.coming-soon { opacity: 0.72; }

.blog-lang-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.blog-lang-nav a { display: inline-flex; align-items: center; border: 2px solid var(--ink); border-radius: 999px; background: var(--paper); box-shadow: 3px 3px 0 var(--ink); padding: 7px 11px; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; font-weight: 700; }
.blog-lang-nav a.active { background: var(--ink); color: var(--paper); box-shadow: 3px 3px 0 var(--yellow); }
.blog-article-hero { width: 100%; max-width: 100%; margin: 22px 0 28px; border: 2px solid var(--ink); border-radius: 12px; overflow: hidden; box-shadow: 6px 6px 0 var(--ink); background: var(--ink); }
.blog-article-hero picture { display: block; width: 100%; max-width: 100%; }
.blog-article-hero img { display: block; width: 100%; max-width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.blog-prose table { width: 100%; max-width: 100%; table-layout: fixed; border-collapse: collapse; margin: 24px 0; font-size: 15px; line-height: 1.45; overflow-wrap: anywhere; }
.blog-prose th, .blog-prose td { border: 2px solid var(--ink); padding: 10px 12px; vertical-align: top; }
.blog-prose th { background: var(--yellow); font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.blog-prose code { background: var(--bg2); border: 1px solid rgba(17,17,17,0.18); border-radius: 4px; padding: 1px 4px; font-family: var(--mono); font-size: 0.9em; }
.blog-prose a { text-decoration-thickness: 2px; text-underline-offset: 3px; }

.blog-shell { padding: 46px 0 90px; }
.blog-article-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 30px; align-items: start; }
.blog-sidecard { position: sticky; top: 96px; background: var(--paper); border: 2px solid var(--ink); border-radius: 12px; box-shadow: 5px 5px 0 var(--ink); padding: 20px; }
.blog-sidecard h3 { font-family: var(--display); font-size: 20px; line-height: 1; text-transform: uppercase; margin: 0 0 12px; }
.blog-sidecard ul { list-style: none; padding: 0; margin: 0 0 18px; }
.blog-sidecard li { margin-bottom: 10px; }
.blog-sidecard a { font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; opacity: 0.78; }
.blog-sidecard a:hover { opacity: 1; color: var(--red); }
.blog-sidecard .btn { width: 100%; justify-content: center; }
.blog-article { min-width: 0; overflow: hidden; background: var(--paper); border: 2px solid var(--ink); border-radius: 14px; box-shadow: 8px 8px 0 var(--ink); padding: 34px; position: relative; }
.blog-article-header { margin-bottom: 26px; }
.blog-article-header .meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--mut); margin-bottom: 16px; }
.blog-article-header h1 { font-size: clamp(34px, 5vw, 68px); margin-bottom: 16px; }
.blog-article-header .dek { font-size: 19px; line-height: 1.55; max-width: 720px; }
.blog-prose { min-width: 0; overflow-wrap: break-word; font-size: 17px; line-height: 1.7; }
.blog-prose img, .blog-prose picture, .blog-prose video, .blog-prose iframe { max-width: 100%; }
.blog-prose img, .blog-prose picture, .blog-prose video { height: auto; }
.blog-prose p { margin: 0 0 20px; }
.blog-prose h2 { font-size: clamp(28px, 3.8vw, 44px); margin: 34px 0 16px; }
.blog-prose h3 { font-family: var(--display); font-size: 24px; line-height: 1; text-transform: uppercase; margin: 28px 0 12px; }
.blog-prose ul, .blog-prose ol { margin: 0 0 22px 20px; padding: 0; }
.blog-prose li { margin-bottom: 10px; }
.blog-prose blockquote { margin: 26px 0; padding: 18px 20px; background: var(--bg2); border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--red); font-family: var(--display); font-size: 24px; line-height: 1.15; text-transform: uppercase; }
.blog-prose strong { background: var(--yellow); padding: 0 4px; }
.blog-outline { margin: 28px 0; padding: 18px 20px; background: var(--lime); border: 2px solid var(--ink); border-radius: 12px; box-shadow: 4px 4px 0 var(--ink); }
.blog-outline h3 { margin-top: 0; }
.blog-template-note { margin-top: 22px; padding: 16px 18px; border: 2px dashed var(--ink); border-radius: 12px; background: rgba(255,255,255,0.55); font-family: var(--mono); font-size: 12px; line-height: 1.6; letter-spacing: 0.4px; }
.blog-footer-cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; padding: 24px; background: var(--ink); color: var(--paper); border: 2px solid var(--ink); border-radius: 14px; box-shadow: 6px 6px 0 var(--yellow); }
.blog-footer-cta p { margin: 0; max-width: 520px; font-size: 16px; line-height: 1.5; }
.blog-footer-cta .btn { background: var(--red); color: var(--paper); border-color: var(--paper); box-shadow: 4px 4px 0 var(--paper); }

@media (max-width: 980px) {
  .blog-hero-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-article-layout { grid-template-columns: 1fr; }
  .blog-sidecard { position: static; }
}

@media (max-width: 640px) {
  .blog-hero { padding: 32px 0 26px; }
  .blog-page h1.blog-title { font-size: clamp(34px, 11vw, 50px); letter-spacing: -1.4px; }
  .blog-intro { font-size: 16px; }
  .blog-feature { padding: 22px; box-shadow: 6px 6px 0 var(--yellow); }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article { padding: 24px 20px; box-shadow: 6px 6px 0 var(--ink); }
  .blog-article-header .dek { font-size: 17px; }
  .blog-prose { font-size: 16px; }
  .blog-prose blockquote { font-size: 20px; }
  .blog-footer-cta { padding: 20px; }
}

.soft-page .halftone { opacity: 0.09; }
.soft-page .top { position: sticky; top: 0; z-index: 30; }
.soft-nav-actions { display: flex; align-items: center; gap: 10px; }
.soft-lang-switch { display: inline-flex; align-items: center; gap: 4px; padding: 4px; border: 2px solid var(--ink); border-radius: 999px; background: var(--paper); box-shadow: 3px 3px 0 var(--ink); }
.soft-lang-switch a { text-decoration: none; font-family: var(--display); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; padding: 8px 12px; border-radius: 999px; color: var(--ink); opacity: 0.7; }
.soft-lang-switch a.active { background: var(--ink); color: var(--paper); opacity: 1; }
.soft-page .hero { padding-top: 64px; }
.soft-hero-copy { max-width: 660px; }
.soft-hero-copy h1 { max-width: 760px; }
.soft-hero-copy .hero-sub { max-width: 640px; }
.soft-note-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.soft-note { display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--ink); border-radius: 8px; background: var(--paper); box-shadow: 3px 3px 0 var(--ink); padding: 8px 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }
.soft-note .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--red); }
.soft-proof { background: var(--paper); border: 2px solid var(--ink); border-radius: 14px; box-shadow: 8px 8px 0 var(--ink); padding: 24px; position: relative; }
.soft-proof .stamp { top: -10px; right: 14px; }
.soft-proof h3 { font-family: var(--display); font-size: 28px; line-height: 0.95; text-transform: uppercase; margin: 0 0 14px; }
.soft-proof p { font-size: 15px; line-height: 1.55; margin: 0 0 16px; }
.soft-proof ul { list-style: none; padding: 0; margin: 0; }
.soft-proof li { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1.5px dashed rgba(17,17,17,0.16); font-size: 14px; line-height: 1.45; }
.soft-proof li:last-child { border-bottom: none; }
.soft-proof li::before { content: "✓"; color: var(--red); font-weight: 900; flex-shrink: 0; }
.soft-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; font-family: var(--mono); font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase; font-weight: 700; }
.soft-kicker::before { content: ""; width: 10px; height: 10px; background: var(--red); border: 2px solid var(--ink); border-radius: 999px; }
.soft-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.soft-mini-card { background: var(--paper); border: 2px solid var(--ink); border-radius: 10px; box-shadow: 5px 5px 0 var(--ink); padding: 22px; }
.soft-mini-card h3 { font-family: var(--display); font-size: 20px; line-height: 1; text-transform: uppercase; margin: 0 0 10px; }
.soft-mini-card p { margin: 0; font-size: 14px; line-height: 1.55; }
.soft-quote { background: var(--paper); color: var(--ink); border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); padding: 24px; border-radius: 14px; max-width: 860px; margin: 28px auto 0; font-family: var(--display); font-size: clamp(26px, 4vw, 42px); line-height: 1.05; text-transform: uppercase; text-align: center; }
.soft-quote .hl { background: var(--yellow); padding: 0 8px; display: inline-block; }
.redirect-page { min-height: 100vh; display: grid; place-items: center; background: var(--bg); padding: 24px; }
.redirect-card { width: min(620px, 100%); background: var(--paper); border: 2px solid var(--ink); border-radius: 14px; box-shadow: 8px 8px 0 var(--ink); padding: 28px; text-align: center; }
.redirect-card h1 { font-size: clamp(30px, 7vw, 48px); margin-bottom: 14px; }
.redirect-card p { margin: 0 auto 18px; max-width: 480px; font-size: 16px; line-height: 1.6; }
.redirect-card .btn { justify-content: center; }
.soft-page .prices .price .amount.money { font-size: clamp(42px, 7vw, 62px); }
.soft-page .prices .price .amount.money small { font-size: 0.42em; vertical-align: middle; letter-spacing: -0.5px; }
.soft-page .prices .price .amount-sub { font-size: 12px; letter-spacing: 1.1px; }
.soft-page .soft-faq { background: var(--bg2); color: var(--ink); }
.soft-page .soft-faq .eyebrow { color: var(--ink); }
.soft-page .soft-faq h2 { color: var(--ink); }
.soft-page .soft-faq .q { background: var(--paper); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.soft-page .soft-faq .q[open] { background: var(--paper); }
.soft-page .soft-faq .q summary { color: var(--ink); }
.soft-page .soft-faq .q .a { color: var(--ink); }
.soft-page .soft-faq .q summary::after { color: var(--ink); }
.legal-page .halftone { opacity: 0.08; }
.legal-shell { padding: 54px 0 90px; }
.legal-card { background: var(--paper); border: 2px solid var(--ink); border-radius: 14px; box-shadow: 8px 8px 0 var(--ink); padding: 34px; }
.legal-card h1 { font-size: clamp(34px, 5vw, 62px); margin: 0 0 18px; }
.legal-card h2 { font-size: clamp(24px, 3vw, 36px); margin: 34px 0 14px; }
.legal-card p, .legal-card li { font-size: 16px; line-height: 1.65; }
.legal-card ul { margin: 0 0 20px 20px; padding: 0; }
.legal-card .meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; color: var(--mut); }
.legal-card .legal-note { margin-top: 24px; padding: 18px 20px; background: var(--bg2); border: 2px solid var(--ink); border-radius: 12px; box-shadow: 4px 4px 0 var(--ink); }
.legal-card .legal-note p { margin: 0; }
.legal-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

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

@media (max-width: 780px) {
  .soft-page .hero { padding-top: 42px; }
  .soft-nav-actions { width: 100%; justify-content: space-between; }
  .legal-card { padding: 24px 20px; box-shadow: 6px 6px 0 var(--ink); }
}
