:root {
  --bg: #090b0f;
  --bg-soft: #0e1117;
  --panel: #12161e;
  --panel-2: #171c25;
  --panel-3: #1c222d;
  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .16);
  --text: #f8f9fb;
  --muted: #9ba3b4;
  --muted-2: #6f7787;
  --red: #f25560;
  --red-light: #ff737c;
  --green: #61d995;
  --blue: #8fb7ff;
  --shadow: 0 28px 90px rgba(0, 0, 0, .42);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::selection { background: rgba(242, 85, 96, .35); }
a { color: inherit; }
button, input, select { font: inherit; }
button, select { color: inherit; }
svg { display: block; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 72px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(9, 11, 15, .78);
  backdrop-filter: blur(18px) saturate(140%);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: 0 0 auto; }
.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--red-light), #d63d48);
  box-shadow: 0 10px 30px rgba(242, 85, 96, .28), inset 0 1px rgba(255,255,255,.22);
  font-weight: 900;
}
.brand-name { font-weight: 850; letter-spacing: -.025em; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a, .footer-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color .2s ease; }
.desktop-nav a:hover, .footer-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language-picker { position: relative; display: inline-flex; align-items: center; }
.language-picker select {
  appearance: none;
  min-width: 58px;
  height: 38px;
  padding: 0 27px 0 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--panel);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.language-picker svg { position: absolute; right: 9px; width: 14px; height: 14px; pointer-events: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 49px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 780;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button-small { min-height: 38px; padding: 0 14px; border-radius: 11px; font-size: 12px; }
.button-primary { background: linear-gradient(145deg, #ff6872, #df414c); color: white; box-shadow: 0 14px 38px rgba(242, 85, 96, .22), inset 0 1px rgba(255,255,255,.25); }
.button-primary:hover { box-shadow: 0 18px 48px rgba(242, 85, 96, .31), inset 0 1px rgba(255,255,255,.25); }
.button-secondary, .button-ghost { background: rgba(255,255,255,.045); border-color: var(--line); color: var(--text); }
.button-secondary:hover, .button-ghost:hover { background: rgba(255,255,255,.075); border-color: var(--line-strong); }
.button-full { width: 100%; }

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 76% 30%, rgba(242,85,96,.15), transparent 27rem),
    radial-gradient(circle at 18% 18%, rgba(117,149,255,.06), transparent 22rem);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr); gap: 68px; align-items: center; }
.eyebrow { color: #ff7c84; text-transform: uppercase; letter-spacing: .13em; font-size: 11px; font-weight: 850; }
.live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); margin-right: 9px; box-shadow: 0 0 0 6px rgba(97,217,149,.09); vertical-align: 1px; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 19px 0 22px; max-width: 720px; font-size: clamp(50px, 5.4vw, 78px); line-height: .93; letter-spacing: -.065em; text-wrap: balance; }
@media (min-width: 1720px) { h1 { font-size: clamp(78px, 4.9vw, 88px); } }
.hero-lead { max-width: 650px; margin-bottom: 29px; color: #b3bac8; font-size: clamp(17px, 2vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 17px; margin-top: 23px; color: var(--muted); font-size: 12px; }
.trust-row > span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row svg { width: 14px; height: 14px; color: var(--green); stroke-width: 2.5; }

.hero-visual { position: relative; min-height: 600px; }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .7; }
.orb-one { width: 190px; height: 190px; top: 20px; right: 20px; background: radial-gradient(circle at 30% 30%, rgba(255,124,132,.3), rgba(242,85,96,.02) 70%); }
.orb-two { width: 250px; height: 250px; bottom: 20px; left: -30px; background: radial-gradient(circle at 40% 40%, rgba(117,149,255,.16), transparent 70%); }
.browser-window {
  position: absolute;
  top: 38px;
  left: 0;
  width: calc(100% - 28px);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: #101319;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-1.2deg);
}
.browser-top { height: 49px; display: grid; grid-template-columns: 70px 1fr 40px; align-items: center; gap: 10px; padding: 0 15px; border-bottom: 1px solid var(--line); background: #151920; }
.traffic-lights { display: flex; gap: 6px; }
.traffic-lights span { width: 9px; height: 9px; border-radius: 50%; background: #3e4552; }
.traffic-lights span:first-child { background: #f55e68; }
.traffic-lights span:nth-child(2) { background: #e5b14f; }
.traffic-lights span:nth-child(3) { background: #5acb82; }
.address-bar { min-width: 0; height: 29px; display: flex; align-items: center; gap: 7px; padding: 0 11px; border: 1px solid rgba(255,255,255,.06); border-radius: 9px; background: #0e1116; color: #778092; font-size: 11px; }
.address-bar svg { width: 12px; height: 12px; color: #667083; flex: 0 0 auto; }
.address-bar span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.browser-menu { display: flex; gap: 3px; justify-content: flex-end; }
.browser-menu span { width: 3px; height: 3px; border-radius: 50%; background: #767e8e; }
.browser-body { padding: 25px; }
.mock-app-head { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.mock-avatar { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(145deg, #6f91ff, #4f69c7); }
.mock-app-head strong, .mock-app-head span { display: block; }
.mock-app-head strong { font-size: 12px; }
.mock-app-head span { margin-top: 3px; color: var(--muted-2); font-size: 10px; }
.fake-editor {
  min-height: 225px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: #0b0e13;
  color: #dfe3eb;
  font-size: 13px;
  line-height: 1.65;
  white-space: pre-wrap;
}
.caret { display: inline-block; width: 1.5px; height: 1.1em; margin-left: 2px; background: #ff7d85; vertical-align: -.14em; animation: blink .8s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.mock-editor-actions { display: flex; gap: 8px; align-items: center; margin-top: 13px; }
.mock-editor-actions span { width: 28px; height: 28px; border-radius: 8px; background: #181d26; }
.mock-editor-actions button { margin-left: auto; height: 30px; padding: 0 14px; border: 0; border-radius: 8px; background: #33405a; color: #9ca8bf; font-size: 10px; font-weight: 800; }
.rescue-card {
  position: absolute;
  z-index: 4;
  right: -7px;
  bottom: 22px;
  width: min(410px, 84%);
  padding: 17px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(22, 26, 35, .95);
  box-shadow: 0 28px 75px rgba(0,0,0,.54);
  backdrop-filter: blur(14px);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.rescue-card.saved { transform: translateY(-4px) scale(1.01); border-color: rgba(97,217,149,.42); box-shadow: 0 28px 75px rgba(0,0,0,.54), 0 0 0 5px rgba(97,217,149,.05); }
.rescue-head { display: flex; align-items: center; gap: 10px; }
.rescue-icon { width: 37px; height: 37px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; background: rgba(97,217,149,.12); color: var(--green); }
.rescue-icon svg { width: 20px; height: 20px; }
.rescue-head strong, .rescue-head span { display: block; }
.rescue-head strong { font-size: 12px; }
.rescue-head div > span { margin-top: 2px; color: var(--muted); font-size: 10px; }
.saved-pulse { width: 7px; height: 7px; margin-left: auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(97,217,149,.1); }
.rescue-card > p { height: 44px; margin: 14px 0; overflow: hidden; color: #c8ceda; font-size: 11px; line-height: 1.55; white-space: pre-wrap; mask-image: linear-gradient(#000 62%, transparent); }
.rescue-foot { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.rescue-foot > span { color: var(--muted-2); font-size: 9px; }
.rescue-foot button { display: inline-flex; align-items: center; gap: 6px; margin-left: auto; padding: 7px 10px; border: 0; border-radius: 8px; background: var(--red); color: white; font-size: 10px; font-weight: 800; cursor: pointer; }
.rescue-foot button svg { width: 13px; height: 13px; }
.rescue-foot button.copied { background: #2e9f65; }
.crash-chip { position: absolute; z-index: 5; left: -21px; top: 300px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid rgba(242,85,96,.24); border-radius: 999px; background: #211316; color: #ff939a; box-shadow: 0 14px 40px rgba(0,0,0,.35); font-size: 10px; font-weight: 800; transform: rotate(-4deg); }
.crash-chip svg { width: 15px; height: 15px; }

.logo-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.012); }
.logo-strip-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo-strip-inner > span { color: var(--muted-2); text-transform: uppercase; letter-spacing: .11em; font-size: 10px; font-weight: 800; }
.wordmarks { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: clamp(22px, 4vw, 46px); color: #707887; }
.wordmarks strong { letter-spacing: -.03em; font-size: 15px; }

.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
h2 { margin: 14px 0 16px; font-size: clamp(39px, 5vw, 64px); line-height: 1.02; letter-spacing: -.05em; }
.section-heading p { color: var(--muted); font-size: 17px; line-height: 1.65; }

.pain { background: linear-gradient(180deg, rgba(255,255,255,.018), transparent); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pain-card { position: relative; min-height: 280px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); overflow: hidden; }
.pain-card::after { content: ""; position: absolute; inset: auto -20% -60% 10%; height: 180px; background: radial-gradient(ellipse, rgba(242,85,96,.12), transparent 70%); }
.pain-card > svg { width: 30px; height: 30px; margin: 50px 0 28px; color: #ff7b84; }
.pain-card h3 { margin-bottom: 10px; font-size: 20px; letter-spacing: -.03em; }
.pain-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }
.pain-number { position: absolute; top: 24px; right: 25px; color: rgba(255,255,255,.18); font-size: 12px; font-weight: 800; }

.how { position: relative; }
.how-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(460px, 1.2fr); gap: 96px; align-items: start; }
.sticky-copy { position: sticky; top: 130px; }
.sticky-copy > p { max-width: 520px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.privacy-badge { display: flex; align-items: center; gap: 13px; margin-top: 30px; padding: 15px; border: 1px solid rgba(97,217,149,.14); border-radius: 15px; background: rgba(97,217,149,.05); }
.privacy-badge > svg { width: 24px; height: 24px; flex: 0 0 auto; color: var(--green); }
.privacy-badge strong, .privacy-badge span { display: block; }
.privacy-badge strong { font-size: 12px; }
.privacy-badge span { margin-top: 3px; color: var(--muted); font-size: 10px; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.step-card { position: relative; display: grid; grid-template-columns: 50px 1fr; gap: 18px; min-height: 190px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, var(--panel), #0f1319); }
.step-card > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(242,85,96,.2); border-radius: 13px; background: rgba(242,85,96,.08); color: #ff8b92; font-size: 13px; font-weight: 900; }
.step-card h3 { margin: 7px 0 10px; font-size: 21px; letter-spacing: -.03em; }
.step-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.features { border-top: 1px solid var(--line); background: #0b0e13; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.feature-card { position: relative; min-height: 260px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); overflow: hidden; }
.feature-wide { grid-column: span 2; display: grid; grid-template-columns: auto minmax(0, 1fr) 190px; gap: 19px; align-items: start; }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.09); border-radius: 13px; background: #1a202a; color: #ff7d85; }
.feature-icon svg { width: 21px; height: 21px; }
.feature-card h3 { margin: 16px 0 9px; font-size: 20px; letter-spacing: -.03em; }
.feature-wide h3 { margin-top: 6px; }
.feature-card p { max-width: 470px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.67; }
.local-visual { position: relative; height: 190px; align-self: center; }
.device { position: absolute; inset: 20px 25px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: linear-gradient(145deg, #1d2430, #10141b); box-shadow: inset 0 0 0 7px #0c0f14; }
.device::before { content: "P"; position: absolute; inset: 42px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(145deg, var(--red-light), #d63d48); font-size: 22px; font-weight: 900; box-shadow: 0 15px 36px rgba(242,85,96,.23); }
.device i { position: absolute; left: 50%; bottom: 6px; width: 24px; height: 3px; transform: translateX(-50%); border-radius: 4px; background: rgba(255,255,255,.16); }
.blocked-cloud { position: absolute; right: 2px; top: 5px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(242,85,96,.25); border-radius: 50%; background: #251518; color: #ff7e86; }
.blocked-cloud svg { width: 21px; height: 21px; }

.testimonial { background: linear-gradient(180deg, #0b0e13, var(--bg)); }
.quote-card { position: relative; max-width: 900px; margin: 0 auto; padding: 43px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(145deg, #151922, #101319); box-shadow: var(--shadow); }
.quote-card > svg { width: 34px; height: 34px; color: rgba(242,85,96,.55); }
.quote-card > p { margin: 23px 0 30px; font-size: clamp(24px, 3vw, 38px); line-height: 1.28; letter-spacing: -.035em; }
.quote-card footer { display: flex; align-items: center; gap: 12px; }
.quote-avatar { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: #242b37; color: #bcc3cf; font-weight: 900; }
.quote-card footer strong, .quote-card footer span { display: block; }
.quote-card footer strong { font-size: 12px; }
.quote-card footer div > span { margin-top: 3px; color: var(--muted); font-size: 10px; }

.pricing { position: relative; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 480px)); justify-content: center; gap: 17px; }
.price-card { position: relative; padding: 31px; border: 1px solid var(--line); border-radius: 26px; background: var(--panel); }
.price-card.featured { border-color: rgba(242,85,96,.4); background: linear-gradient(150deg, rgba(242,85,96,.08), #141820 38%); box-shadow: 0 28px 80px rgba(0,0,0,.34); }
.popular { position: absolute; right: 23px; top: 21px; padding: 6px 9px; border-radius: 999px; background: rgba(242,85,96,.11); color: #ff8c94; text-transform: uppercase; letter-spacing: .08em; font-size: 9px; font-weight: 900; }
.price-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.plan { color: #b7becc; text-transform: uppercase; letter-spacing: .11em; font-size: 10px; font-weight: 850; }
.price-head h3 { margin: 8px 0 0; font-size: 46px; line-height: 1; letter-spacing: -.05em; }
.price-note { color: var(--muted); font-size: 11px; }
.price-card > p { margin: 22px 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.price-card ul { list-style: none; display: grid; gap: 13px; min-height: 210px; padding: 0; margin: 0 0 25px; }
.price-card li { display: flex; gap: 9px; color: #c7ccd6; font-size: 13px; line-height: 1.45; }
.price-card li svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--green); stroke-width: 2.6; }
.price-card > small { display: block; margin-top: 13px; color: var(--muted-2); text-align: center; font-size: 9px; }

.faq { border-top: 1px solid var(--line); background: #0b0e13; }
.faq-grid { display: grid; grid-template-columns: minmax(0, .65fr) minmax(520px, 1.35fr); gap: 90px; align-items: start; }
.accordion { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px; cursor: pointer; font-size: 15px; font-weight: 750; }
summary::-webkit-details-marker { display: none; }
summary svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--muted); transition: transform .25s ease; }
details[open] summary svg { transform: rotate(180deg); }
details p { max-width: 720px; margin: -4px 35px 25px 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.cta-card { position: relative; padding: 75px 28px; border: 1px solid rgba(242,85,96,.2); border-radius: 30px; background: linear-gradient(145deg, #17171e, #0f1218); text-align: center; overflow: hidden; }
.cta-glow { position: absolute; width: 700px; height: 300px; left: 50%; bottom: -220px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(242,85,96,.27), transparent 70%); }
.cta-card > *:not(.cta-glow) { position: relative; }
.cta-card h2 { max-width: 780px; margin-left: auto; margin-right: auto; }
.cta-card > p { color: var(--muted); font-size: 16px; }
.centered-actions { justify-content: center; margin-top: 28px; }
.notify-form { position: relative; z-index: 2; display: flex; gap: 8px; max-width: 430px; margin: 18px auto 0; }
.notify-form input { width: 100%; height: 48px; padding: 0 14px; border: 1px solid var(--line-strong); border-radius: 12px; outline: 0; background: #0b0e13; color: var(--text); }
.notify-form input:focus { border-color: rgba(242,85,96,.55); box-shadow: 0 0 0 4px rgba(242,85,96,.08); }
.notify-form label { flex: 1; }
.notify-form button { padding: 0 16px; border: 0; border-radius: 12px; background: var(--red); color: white; font-weight: 800; cursor: pointer; }
.form-status { min-height: 20px; margin: 12px 0 0 !important; color: var(--green) !important; font-size: 12px !important; }

.site-footer { padding: 42px 0; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; }
.footer-grid > p { margin: 0; color: var(--muted); font-size: 12px; text-align: center; }
.footer-links { display: flex; gap: 20px; }
.footer-grid > small { grid-column: 1 / -1; color: var(--muted-2); text-align: center; font-size: 9px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .nav-actions { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { min-height: 570px; width: min(720px, 100%); margin: 10px auto 0; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { min-height: 220px; }
  .how-grid { grid-template-columns: 1fr; gap: 45px; }
  .sticky-copy { position: static; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-wide { grid-column: 1 / -1; }
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 26px, 1180px); }
  .section-pad { padding: 82px 0; }
  .section-pad-sm { padding: 52px 0; }
  .site-header .button-ghost { display: none; }
  .nav-wrap { min-height: 66px; }
  .brand-mark { width: 35px; height: 35px; }
  .hero { min-height: auto; padding-top: 72px; }
  h1 { font-size: clamp(46px, 15vw, 68px); }
  .hero-visual { min-height: 500px; }
  .browser-window { width: 100%; }
  .crash-chip { left: 3px; top: 260px; }
  .rescue-card { right: 4px; width: 90%; }
  .logo-strip-inner { padding: 22px 0; flex-direction: column; justify-content: center; }
  .wordmarks { justify-content: center; gap: 18px 26px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-column: auto; display: block; }
  .local-visual { margin-top: 25px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; }
  .footer-links { grid-row: auto; }
  .quote-card { padding: 30px 24px; }
}

@media (max-width: 480px) {
  .hero-actions .button { width: 100%; }
  .trust-row { gap: 10px 14px; }
  .hero-visual { min-height: 455px; }
  .browser-body { padding: 17px; }
  .fake-editor { min-height: 190px; font-size: 11px; }
  .rescue-card { bottom: 0; padding: 14px; }
  .crash-chip { display: none; }
  .step-card { grid-template-columns: 1fr; }
  .notify-form { flex-direction: column; }
  .notify-form button { height: 46px; }
}

/* v2 — product clarity, custom controls, and motion */
body { text-wrap: pretty; }
.pricing-title { text-wrap: balance; }

.language-menu { position: relative; display: inline-flex; }
.language-trigger {
  min-width: 62px;
  height: 40px;
  padding: 0 11px 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: linear-gradient(145deg, #171c24, #11151c);
  color: var(--text);
  box-shadow: inset 0 1px rgba(255,255,255,.04), 0 10px 26px rgba(0,0,0,.18);
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.language-trigger:hover,
.language-trigger[aria-expanded="true"] { border-color: rgba(255,255,255,.28); background: #1a2029; }
.language-trigger:focus-visible { outline: 0; box-shadow: 0 0 0 4px rgba(242,85,96,.12); border-color: rgba(242,85,96,.55); }
.language-trigger svg { width: 14px; height: 14px; transition: transform .22s ease; }
.language-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.language-popover {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 150;
  width: 176px;
  padding: 7px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: rgba(20,24,32,.98);
  box-shadow: 0 24px 70px rgba(0,0,0,.52), inset 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(18px);
  transform-origin: top right;
  animation: menu-in .18s ease both;
}
.language-popover[hidden] { display: none; }
.language-popover button {
  width: 100%;
  min-height: 48px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background .16s ease;
}
.language-popover button:hover,
.language-popover button:focus-visible { outline: 0; background: rgba(255,255,255,.065); }
.language-popover button[aria-checked="true"] { background: rgba(242,85,96,.09); }
.language-popover button > span { min-width: 0; display: flex; align-items: baseline; gap: 9px; }
.language-popover strong { min-width: 22px; font-size: 12px; }
.language-popover small { color: var(--muted); font-size: 11px; }
.language-popover svg { width: 15px; height: 15px; margin-left: auto; color: var(--green); opacity: 0; }
.language-popover button[aria-checked="true"] svg { opacity: 1; }
@keyframes menu-in { from { opacity: 0; transform: translateY(-5px) scale(.97); } to { opacity: 1; transform: none; } }

.compat-copy { min-width: 230px; display: grid; gap: 6px; }
.compat-copy > span { color: #aeb5c2; text-transform: uppercase; letter-spacing: .11em; font-size: 10px; font-weight: 850; }
.compat-copy > small { max-width: 290px; color: var(--muted-2); font-size: 10px; line-height: 1.45; }

.quote-card footer { min-width: 0; }
.quote-avatar {
  flex: 0 0 38px;
  min-width: 38px;
  overflow: hidden;
  line-height: 1;
  text-indent: 0;
  isolation: isolate;
}
.quote-card footer > div { min-width: 0; }

/* FAQ: one item at a time with smooth grid-height transitions. */
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  min-height: 78px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: 15px;
  font-weight: 760;
  cursor: pointer;
}
.faq-question:focus-visible { outline: 0; color: #ff9299; }
.faq-question svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--muted); transition: transform .32s cubic-bezier(.2,.7,.2,1), color .2s ease; }
.faq-item.is-open .faq-question svg { transform: rotate(180deg); color: #ff838b; }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .38s cubic-bezier(.2,.7,.2,1), opacity .28s ease;
}
.faq-answer > div { min-height: 0; overflow: hidden; }
.faq-answer p { max-width: 720px; margin: -4px 35px 25px 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; opacity: 1; }

/* Staggered reveals. JS adds indexes to groups that benefit from cascade. */
.stagger-group .stagger-item {
  opacity: 1;
  transform: none;
}
.js .stagger-group:not(.visible) .stagger-item {
  opacity: 0;
  transform: translateY(20px);
}
.js .stagger-group .stagger-item {
  transition:
    opacity .66s ease calc(var(--stagger-index, 0) * 82ms),
    transform .72s cubic-bezier(.2,.7,.2,1) calc(var(--stagger-index, 0) * 82ms);
}
.js .stagger-group.visible .stagger-item { opacity: 1; transform: none; }
.js .reveal { transition-delay: var(--reveal-delay, 0ms); }

@media (max-width: 760px) {
  .language-popover { position: fixed; top: 61px; right: 13px; }
  .compat-copy { text-align: center; justify-items: center; }
  .compat-copy > small { max-width: 340px; }
  .faq-question { min-height: 72px; font-size: 14px; }
  .faq-answer p { margin-right: 10px; }
}
.quote-card footer .quote-avatar {
  display: grid;
  place-items: center;
  padding: 0;
  text-align: center;
}

/* v3 — browser compatibility, corrected rescue icon, and clearer pricing */
.rescue-head > .rescue-icon {
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 0;
}
.rescue-head > .rescue-icon svg {
  width: 20px;
  height: 20px;
  margin: 0;
  transform: none;
}

.compatibility-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.012);
}
.compatibility-stack { display: grid; }
.browser-support,
.web-app-strip {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.7fr);
  align-items: center;
  gap: 34px;
  padding: 24px 0;
}
.browser-support { border-bottom: 1px solid var(--line); }
.browser-list {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(92px, 1fr));
  gap: 9px;
}
.browser-chip {
  min-width: 0;
  min-height: 60px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  color: #c8ced9;
  font-size: 12px;
  font-weight: 760;
  box-shadow: inset 0 1px rgba(255,255,255,.025);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.browser-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.055);
}
.browser-logo {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  background: #f5f7fa;
}
.browser-logo img {
  position: relative;
  z-index: 2;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.browser-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #242936;
  font-size: 12px;
  font-weight: 900;
}
.browser-note {
  grid-column: 2;
  margin: -17px 0 0;
  color: var(--muted-2);
  font-size: 9px;
  line-height: 1.5;
}
.hunter-credit {
  position: absolute;
  right: 0;
  bottom: 6px;
  color: #5f6776;
  text-decoration: none;
  font-size: 8px;
}
.hunter-credit:hover { color: var(--muted); }
.web-app-strip .wordmarks {
  justify-content: space-between;
  gap: 18px 30px;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 500px));
  gap: 20px;
  align-items: stretch;
}
.price-card {
  min-height: 650px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(143,183,255,.07), transparent 19rem),
    linear-gradient(150deg, #151a23, #10141b);
}
.price-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -120px;
  bottom: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143,183,255,.08), transparent 68%);
  pointer-events: none;
}
.price-card.featured {
  border-color: rgba(242,85,96,.48);
  background:
    radial-gradient(circle at 100% 0%, rgba(242,85,96,.13), transparent 20rem),
    linear-gradient(150deg, #19171f, #11151d 48%);
}
.price-card.featured::before {
  background: radial-gradient(circle, rgba(242,85,96,.13), transparent 68%);
}
.popular {
  top: 25px;
  right: 25px;
  padding: 7px 10px;
  border: 1px solid rgba(255,122,132,.15);
  background: rgba(242,85,96,.12);
  color: #ff959c;
  font-size: 8px;
}
.plan-topline {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 112px;
}
.plan-topline > div { min-width: 0; }
.plan-topline .plan,
.plan-topline strong { display: block; }
.plan-topline strong {
  margin-top: 4px;
  color: #e3e7ed;
  font-size: 13px;
  line-height: 1.3;
}
.plan-orb {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
}
.plan-orb svg { width: 20px; height: 20px; }
.free-orb { background: rgba(143,183,255,.08); color: var(--blue); }
.pro-orb { background: rgba(242,85,96,.1); color: #ff858d; }
.price-head {
  margin-top: 30px;
  align-items: end;
}
.price-head > div { display: flex; align-items: end; gap: 10px; }
.price-head h3 { margin: 0; font-size: 56px; }
.billing-label {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
}
.plan-limit {
  margin-bottom: 4px;
  padding: 7px 10px;
  border: 1px solid rgba(143,183,255,.14);
  border-radius: 999px;
  background: rgba(143,183,255,.06);
  color: #b9cffb;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}
.pro-limit {
  border-color: rgba(242,85,96,.16);
  background: rgba(242,85,96,.08);
  color: #ff9ca2;
}
.price-card > .plan-description {
  min-height: 70px;
  margin: 24px 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: #aab2c1;
  font-size: 14px;
  line-height: 1.65;
}
.price-card .feature-list {
  min-height: 0;
  margin: 0 0 28px;
  display: grid;
  align-content: start;
  gap: 14px;
}
.price-card .feature-list li {
  gap: 11px;
  align-items: flex-start;
  color: #d0d5de;
  font-size: 13px;
  line-height: 1.5;
}
.feature-check {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  display: grid;
  place-items: center;
  margin-top: -2px;
  border: 1px solid rgba(97,217,149,.14);
  border-radius: 8px;
  background: rgba(97,217,149,.08);
  color: var(--green);
}
.feature-check svg {
  width: 13px !important;
  height: 13px !important;
  color: inherit !important;
  stroke-width: 2.8 !important;
}
.price-card .button-full { margin-top: auto; }
.activation-note {
  margin-top: 12px !important;
  color: #8a93a3 !important;
  font-size: 10px !important;
  line-height: 1.45;
}

.upgrade-flow {
  max-width: 1020px;
  margin: 22px auto 0;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(240px, .78fr) minmax(0, 1.4fr);
  gap: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.014));
}
.upgrade-flow-copy h3 {
  margin: 10px 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.upgrade-flow-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.upgrade-steps {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.upgrade-steps li {
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 13px;
  background: rgba(10,13,18,.48);
}
.upgrade-steps li > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(242,85,96,.1);
  color: #ff8b93;
  font-size: 11px;
  font-weight: 900;
}
.upgrade-steps strong,
.upgrade-steps small { display: block; }
.upgrade-steps strong { font-size: 12px; }
.upgrade-steps small { margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.45; }

@media (max-width: 1040px) {
  .browser-support,
  .web-app-strip { grid-template-columns: 1fr; gap: 18px; }
  .browser-list { grid-template-columns: repeat(3, minmax(120px, 1fr)); }
  .browser-note { grid-column: auto; margin: -8px 0 0; }
  .hunter-credit { bottom: 8px; }
}

@media (max-width: 760px) {
  .browser-support,
  .web-app-strip { padding: 26px 0; text-align: center; }
  .browser-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .browser-chip { justify-content: flex-start; }
  .browser-note { max-width: 500px; margin-inline: auto; }
  .hunter-credit { position: static; justify-self: center; margin-top: -5px; }
  .web-app-strip .wordmarks { justify-content: center; }
  .price-card { min-height: 0; padding: 25px; }
  .plan-topline { padding-right: 0; }
  .popular { position: static; align-self: flex-start; order: -1; margin-bottom: 14px; }
  .price-head { align-items: flex-start; }
  .plan-limit { white-space: normal; text-align: right; }
  .price-card > .plan-description { min-height: 0; }
  .upgrade-flow { grid-template-columns: 1fr; padding: 23px; }
}

@media (max-width: 480px) {
  .browser-list { grid-template-columns: 1fr 1fr; gap: 8px; }
  .browser-chip { min-height: 55px; padding: 8px 9px; font-size: 11px; }
  .price-head { gap: 12px; }
  .price-head > div { display: block; }
  .billing-label { display: block; margin: 6px 0 0; }
  .price-head h3 { font-size: 50px; }
}

/* v4 — clear browser scope, readable pricing, and launch-ready upgrade path */
.compatibility-section {
  padding: 86px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 20%, rgba(143,183,255,.055), transparent 32rem),
    rgba(255,255,255,.012);
}
.compatibility-panel {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  box-shadow: 0 28px 90px rgba(0,0,0,.24);
}
.compatibility-intro,
.browser-side { padding: 38px; }
.compatibility-intro {
  border-right: 1px solid var(--line);
  background: radial-gradient(circle at 0 0, rgba(143,183,255,.07), transparent 24rem);
}
.compatibility-intro h2 {
  max-width: 560px;
  margin: 14px 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -.048em;
  text-wrap: balance;
}
.compatibility-intro > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.scope-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.scope-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 15px;
  background: rgba(7,10,15,.36);
}
.scope-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(97,217,149,.15);
  border-radius: 12px;
  background: rgba(97,217,149,.08);
  color: var(--green);
}
.scope-icon-muted {
  border-color: rgba(255,255,255,.09);
  background: rgba(255,255,255,.045);
  color: #8d96a7;
}
.scope-icon svg { width: 20px; height: 20px; }
.scope-item strong,
.scope-item small { display: block; }
.scope-item strong { color: #e8ebf1; font-size: 13px; line-height: 1.35; }
.scope-item small { margin-top: 4px; color: var(--muted-2); font-size: 11px; line-height: 1.5; }
.browser-side-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
}
.browser-side-head > span {
  color: #e9ecf1;
  font-size: 13px;
  font-weight: 820;
}
.browser-side-head > small {
  color: var(--muted-2);
  font-size: 10px;
}
.browser-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}
.browser-card {
  min-width: 0;
  min-height: 74px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.016));
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.browser-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.055);
}
.browser-card img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}
.browser-card strong,
.browser-card small { display: block; min-width: 0; }
.browser-card strong { color: #eef0f4; font-size: 13px; }
.browser-card small { margin-top: 4px; color: var(--muted-2); font-size: 9px; line-height: 1.3; }
.browser-footnote {
  margin: 18px 0 0;
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.55;
}
.webapps-row {
  grid-column: 1 / -1;
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(200px, .75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: center;
  padding: 22px 38px;
  border-top: 1px solid var(--line);
  background: rgba(5,8,12,.34);
}
.webapps-row > span {
  color: #aeb6c5;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.webapps-row .wordmarks {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 34px;
}
.webapps-row .wordmarks strong {
  color: #7f8797;
  font-size: 14px;
  letter-spacing: -.025em;
}

.pricing-grid-v4 {
  grid-template-columns: repeat(2, minmax(0, 530px));
  gap: 22px;
}
.price-card-v4 {
  min-height: 0;
  padding: 32px;
  border-radius: 28px;
}
.price-card-v4 .plan-header-v4 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.plan-identity {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}
.plan-identity .plan,
.plan-identity strong { display: block; }
.plan-identity strong {
  margin-top: 5px;
  color: #e8ebf1;
  font-size: 15px;
  line-height: 1.25;
}
.plan-price-v4 {
  flex: 0 0 auto;
  text-align: right;
}
.plan-price-v4 strong,
.plan-price-v4 span { display: block; }
.plan-price-v4 strong {
  font-size: 42px;
  line-height: .95;
  letter-spacing: -.055em;
}
.plan-price-v4 span {
  margin-top: 7px;
  color: var(--muted-2);
  font-size: 10px;
}
.plan-description-v4 {
  min-height: 68px;
  margin: 26px 0 24px !important;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  color: #aeb5c3 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}
.plan-facts {
  display: grid;
  gap: 11px;
  margin-bottom: 26px;
}
.plan-fact {
  display: grid;
  grid-template-columns: 39px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 15px;
  background: rgba(5,8,12,.31);
}
.fact-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(143,183,255,.15);
  border-radius: 11px;
  background: rgba(143,183,255,.075);
  color: var(--blue);
}
.fact-icon.pro-fact-icon {
  border-color: rgba(242,85,96,.17);
  background: rgba(242,85,96,.085);
  color: #ff8d95;
}
.fact-icon svg { width: 18px; height: 18px; }
.plan-fact strong,
.plan-fact small { display: block; }
.plan-fact strong { color: #e2e6ed; font-size: 12px; line-height: 1.35; }
.plan-fact small { margin-top: 4px; color: var(--muted-2); font-size: 10px; line-height: 1.48; }
.price-card-v4 .button-full { margin-top: auto; }

.pro-flow {
  max-width: 1082px;
  margin: 24px auto 0;
  padding: 31px;
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 0 0, rgba(242,85,96,.06), transparent 21rem),
    linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}
.pro-flow-copy h3 {
  margin: 12px 0 11px;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.03;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.pro-flow-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.pro-flow-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}
.pro-flow-track article {
  min-height: 144px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  align-content: start;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 16px;
  background: rgba(5,8,12,.36);
}
.flow-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(242,85,96,.1);
  color: #ff8c94;
  font-size: 12px;
  font-weight: 900;
}
.pro-flow-track strong,
.pro-flow-track small { display: block; }
.pro-flow-track strong { color: #eef0f4; font-size: 12px; line-height: 1.4; }
.pro-flow-track small { margin-top: 7px; color: var(--muted-2); font-size: 10px; line-height: 1.55; }
.flow-arrow {
  display: grid;
  place-items: center;
  color: #687183;
}
.flow-arrow svg { width: 20px; height: 20px; }
.pro-flow-status {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #8f98a8;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}
.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #f4b65c;
  box-shadow: 0 0 0 5px rgba(244,182,92,.08);
}

@media (max-width: 920px) {
  .compatibility-panel { grid-template-columns: 1fr; }
  .compatibility-intro { border-right: 0; border-bottom: 1px solid var(--line); }
  .webapps-row { grid-template-columns: 1fr; text-align: center; }
  .webapps-row .wordmarks { justify-content: center; }
  .pro-flow { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .compatibility-section { padding: 62px 0; }
  .compatibility-intro,
  .browser-side { padding: 25px; }
  .browser-grid { grid-template-columns: 1fr; }
  .webapps-row { padding: 20px 24px; }
  .webapps-row .wordmarks { gap: 14px 22px; }
  .price-card-v4 { padding: 24px; }
  .price-card-v4 .plan-header-v4 { align-items: center; }
  .plan-price-v4 strong { font-size: 36px; }
  .plan-description-v4 { min-height: 0; }
  .pro-flow { padding: 23px; }
  .pro-flow-track { grid-template-columns: 1fr; }
  .flow-arrow { min-height: 28px; transform: rotate(90deg); }
  .pro-flow-track article { min-height: 0; }
}
@media (max-width: 430px) {
  .price-card-v4 .plan-header-v4 { align-items: flex-start; }
  .plan-price-v4 { text-align: left; }
  .plan-header-v4 { flex-direction: column; }
  .browser-side-head { align-items: flex-start; flex-direction: column; gap: 5px; }
}

/* v5 refinements */
.text-balance { text-wrap: balance !important; }
.browser-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.browser-card { min-height: 132px; display: grid; place-items: center; align-content: center; gap: 13px; padding: 20px 12px; text-align: center; }
.browser-card .browser-logo { width: 56px; height: 56px; display: grid; place-items: center; }
.browser-card .browser-logo img,
.browser-card .browser-logo svg { width: 52px; height: 52px; display: block; object-fit: contain; }
.browser-card strong { font-size: 13px; letter-spacing: -.01em; }
.install-dialog { width: min(920px, calc(100% - 24px)); max-height: min(92vh, 920px); padding: 0; border: 0; border-radius: 28px; background: transparent; color: var(--text); overflow: visible; }
.install-dialog::backdrop { background: rgba(3,5,8,.76); backdrop-filter: blur(12px); }
.install-card { max-height: min(92vh, 920px); overflow: auto; padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: radial-gradient(circle at 85% 0, rgba(242,85,96,.11), transparent 28%), #10141b; box-shadow: 0 34px 110px rgba(0,0,0,.55); }
.install-modal-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.install-browser-summary { display: grid; grid-template-columns: 62px minmax(0,1fr); gap: 17px; align-items: start; }
.install-browser-summary h2 { margin: 5px 0 7px; font-size: clamp(28px,4vw,42px); line-height: .98; }
.install-browser-summary p { max-width: 600px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.install-browser-icon { width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.045); }
.install-browser-icon svg { width: 42px; height: 42px; }
.install-close { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.035); color: var(--muted); cursor: pointer; }
.install-close:hover { color: white; background: rgba(255,255,255,.07); }
.install-close svg { width: 18px; }
.install-browser-tabs { display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; margin: 20px 0; }
.install-browser-tabs button { min-height: 42px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.025); color: var(--muted); font: inherit; font-size: 11px; font-weight: 800; cursor: pointer; }
.install-browser-tabs button:hover { color: white; border-color: rgba(255,255,255,.18); }
.install-browser-tabs button.active { border-color: rgba(242,85,96,.38); background: rgba(242,85,96,.11); color: #fff; box-shadow: inset 0 0 0 1px rgba(242,85,96,.08); }
.install-steps { display: grid; gap: 10px; }
.install-step { display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 15px; align-items: center; min-height: 88px; padding: 17px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.022); }
.install-step-action { grid-template-columns: 42px minmax(0,1fr) auto; }
.install-step-number { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: rgba(242,85,96,.11); color: #ff7b84; font-weight: 900; }
.install-step strong { display: block; font-size: 13px; }
.install-step p { margin: 5px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.install-step code { display: inline-block; margin-left: 5px; padding: 4px 7px; border: 1px solid rgba(255,255,255,.1); border-radius: 7px; background: rgba(0,0,0,.24); color: #e8ecf5; font: 700 11px/1.2 ui-monospace,SFMono-Regular,Menlo,monospace; }
.install-step .button { white-space: nowrap; }
.install-note { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 18px; color: var(--muted); font-size: 10px; text-align: center; }
.install-note svg { width: 17px; color: var(--green); }
body.modal-open { overflow: hidden; }
@media (max-width: 760px) {
  .browser-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .install-card { padding: 20px; }
  .install-browser-summary { grid-template-columns: 48px minmax(0,1fr); }
  .install-browser-icon { width: 48px; height: 48px; border-radius: 14px; }
  .install-browser-icon svg { width: 34px; height: 34px; }
  .install-browser-tabs { grid-template-columns: repeat(3,1fr); }
  .install-step, .install-step-action { grid-template-columns: 38px minmax(0,1fr); }
  .install-step-action .button { grid-column: 2; justify-self: start; margin-top: 5px; }
  .install-step-number { width: 38px; height: 38px; }
}
.browser-card .browser-logo img {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: contain;
}


/* v6 — automatic locale, clean browser marks, desktop-only mobile behavior */
.browser-card .browser-logo { border: 0; background: transparent; overflow: visible; border-radius: 0; }
.browser-card .browser-logo img { width: 48px; height: 48px; }
.browser-card { min-height: 104px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 12px; text-align: left; }
.browser-card strong { flex: 0 0 auto; }
.install-card { scrollbar-width: thin; scrollbar-color: rgba(242,85,96,.65) rgba(255,255,255,.045); }
.install-card::-webkit-scrollbar { width: 8px; }
.install-card::-webkit-scrollbar-track { margin: 18px 0; background: rgba(255,255,255,.035); border-radius: 99px; }
.install-card::-webkit-scrollbar-thumb { border: 2px solid #10141b; border-radius: 99px; background: linear-gradient(#ff727c,#d93e4b); }
.install-browser-tabs button { display: inline-flex; align-items: center; justify-content: center; gap: 7px; }
.install-browser-tabs button img { width: 20px; height: 20px; object-fit: contain; }
.install-browser-icon { border: 0; background: transparent; }
.install-browser-icon img { width: 54px !important; height: 54px !important; object-fit: contain; }
.install-inline-status { display: block; min-height: 1.4em; margin-top: 6px; color: #f0bd72; font-size: 10px; line-height: 1.4; }
.mobile-desktop-note { display: none; }
.desktop-required { pointer-events: none; opacity: .58; }
@media (max-width: 760px) {
  .site-header .nav-wrap { position: relative; justify-content: center; min-height: 62px; }
  .site-header .brand { margin-inline: auto; }
  .site-header .desktop-nav, .site-header .nav-actions { display: none !important; }
  .hero-actions [data-open-install], .pricing [data-open-install], .cta-card [data-open-install] { display: none !important; }
  .mobile-desktop-note { display: block; max-width: 38ch; margin: 18px 0 0; color: #9ea7b6; font-size: 12px; line-height: 1.55; }
  .browser-card { min-height: 86px; justify-content: flex-start; }
  .browser-card .browser-logo { width: 42px; height: 42px; flex: 0 0 42px; }
  .browser-card .browser-logo img { width: 40px; height: 40px; }
}

/* v6.1 — polished scrollbars and tighter browser identity rows */
html { scrollbar-width: thin; scrollbar-color: rgba(242,85,96,.62) rgba(255,255,255,.035); }
html::-webkit-scrollbar, body::-webkit-scrollbar { width: 9px; height: 9px; }
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track { background: #0b0e13; }
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb { border: 2px solid #0b0e13; border-radius: 99px; background: linear-gradient(180deg,#ff737c,#d63d48); }
html::-webkit-scrollbar-corner, body::-webkit-scrollbar-corner { background: #0b0e13; }
.browser-card { gap: 7px; }
.install-browser-tabs button { gap: 5px; }
@media (max-width: 760px) {
  .install-dialog { scrollbar-width: none; }
  .install-dialog::-webkit-scrollbar { display: none; }
  .install-card { scrollbar-width: thin; }
}


/* v7 — contained install scroller, text-only browser compatibility, coming-soon Pro, and founding support */
.nav-actions .button svg { width: 15px; height: 15px; }
.coming-soon-pill { display:inline-flex; align-items:center; min-height:34px; padding:8px 13px; border:1px solid rgba(242,85,96,.28); border-radius:999px; background:rgba(242,85,96,.09); color:#ff929a; font-size:11px; font-weight:900; letter-spacing:.04em; text-transform:uppercase; }
.browser-name-card { min-height: 94px; padding: 20px; text-align: center; }
.browser-name-card strong { font-size: clamp(15px, 1.4vw, 19px); line-height:1.2; text-wrap:balance; }
.install-dialog { overflow:hidden; border:1px solid rgba(255,255,255,.12); background:#10141b; box-shadow:0 34px 110px rgba(0,0,0,.55); }
.install-card { max-height:min(92vh,920px); overflow:hidden; padding:0; border:0; background:radial-gradient(circle at 85% 0,rgba(242,85,96,.11),transparent 28%),#10141b; box-shadow:none; }
.install-scroll { max-height:min(92vh,920px); overflow:auto; padding:28px 20px 28px 28px; border-radius:inherit; scrollbar-gutter:stable; scrollbar-width:thin; scrollbar-color:rgba(242,85,96,.65) rgba(255,255,255,.045); }
.install-scroll::-webkit-scrollbar { width:8px; }
.install-scroll::-webkit-scrollbar-track { margin:18px 0; background:rgba(255,255,255,.035); border-radius:99px; }
.install-scroll::-webkit-scrollbar-thumb { border:2px solid #10141b; border-radius:99px; background:linear-gradient(#ff727c,#d93e4b); }
.install-product-icon { width:58px; height:58px; display:grid; place-items:center; border-radius:17px; background:linear-gradient(135deg,#ff6975,#e84250); box-shadow:0 12px 34px rgba(239,78,86,.24); color:#fff; font-size:18px; font-weight:950; }
.install-browser-summary { grid-template-columns:58px minmax(0,1fr); align-items:center; }
.install-step strong { font-size:17px; line-height:1.28; letter-spacing:-.015em; text-wrap:balance; }
.install-step p { margin-top:7px; font-size:12px; }
.install-step .button.copied { border-color:rgba(85,209,135,.34); background:rgba(85,209,135,.12); }
.support-section { position:relative; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:radial-gradient(circle at 50% 0,rgba(242,85,96,.07),transparent 36%); }
.support-tier-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; max-width:1050px; margin:38px auto 0; }
.support-tier-card { min-height:220px; padding:26px; border:1px solid var(--line); border-radius:22px; background:linear-gradient(145deg,rgba(25,29,38,.92),rgba(14,17,23,.96)); }
.support-tier-card.support-tier-gold { border-color:rgba(242,85,96,.34); box-shadow:0 24px 70px rgba(0,0,0,.22); }
.support-tier-range { display:inline-flex; min-height:30px; align-items:center; padding:6px 10px; border-radius:999px; background:rgba(242,85,96,.1); color:#ff929a; font-size:11px; font-weight:900; }
.support-tier-card h3 { margin:24px 0 10px; font-size:22px; }
.support-tier-card p { margin:0; color:var(--muted); font-size:13px; line-height:1.65; }
.support-actions { display:flex; justify-content:center; flex-wrap:wrap; gap:10px; margin-top:24px; }
.support-actions .button { text-decoration:none; }
.support-disclaimer { max-width:760px; margin:18px auto 0; color:var(--muted-2); font-size:10px; line-height:1.55; text-align:center; }
@media(max-width:760px){.install-scroll{padding:20px 14px 20px 20px}.support-tier-grid{grid-template-columns:1fr}.browser-name-card{min-height:72px;justify-content:center}.install-browser-summary{grid-template-columns:48px minmax(0,1fr)}.install-product-icon{width:48px;height:48px;border-radius:14px}}

.standalone-page{min-height:100vh;padding:34px 0 80px}.standalone-brand{display:inline-flex;margin-bottom:34px;text-decoration:none}.standalone-card{padding:clamp(28px,5vw,64px);border:1px solid var(--line);border-radius:28px;background:radial-gradient(circle at 80% 0,rgba(242,85,96,.1),transparent 30%),rgba(16,20,27,.96);box-shadow:0 30px 100px rgba(0,0,0,.36)}.standalone-card h1{max-width:900px;margin:14px 0 18px;font-size:clamp(42px,7vw,78px);line-height:.96;letter-spacing:-.055em}.standalone-lead{max-width:760px;color:var(--muted);font-size:16px;line-height:1.7}.support-tier-grid.compact{margin-top:34px}.support-config-status{margin:20px auto 0;color:#f0bd72;font-size:11px;text-align:center}.supporter-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:34px 0}.supporter-card{display:block;padding:18px;border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,.025);text-decoration:none}.supporter-card span,.supporter-card strong{display:block}.supporter-card span{color:#ff929a;font-size:10px;font-weight:900;text-transform:uppercase}.supporter-card strong{margin-top:8px;color:var(--text);font-size:16px}.supporter-empty{display:grid;gap:6px;margin:34px 0;padding:30px;border:1px dashed var(--line-strong);border-radius:18px;text-align:center}.supporter-empty span{color:var(--muted);font-size:12px}@media(max-width:760px){.supporter-list{grid-template-columns:1fr}.standalone-page{padding-top:22px}}


/* v8 — focused launch refinements */
.browser-side { display: flex; flex-direction: column; justify-content: center; }
.support-section { display: none !important; }
.demo-back-link { display: inline-flex; align-items: center; gap: 8px; }
.demo-back-link svg { width: 16px; height: 16px; flex: 0 0 auto; }

/* v9 — launch polish, contained install modal, clearer setup affordances */
.nav-actions .button-primary {
  border-color: rgba(255,255,255,.1);
  color: #fff;
}

.notify-form-visible {
  display: flex;
  align-items: stretch;
  max-width: 560px;
  margin-top: 24px;
}
.notify-form-visible .button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
}
.notify-form-visible .button svg { width: 17px; height: 17px; }
.notify-form-visible .button:disabled { opacity: .58; cursor: wait; }

.coming-soon-pill {
  min-height: 32px;
  padding: 7px 12px;
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
  color: #a5adba;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
}
.plan-price-v4.pro-price {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.install-dialog {
  width: min(940px, calc(100% - 28px));
  max-height: min(92vh, 920px);
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 29px;
  background: #10141b;
  box-shadow: 0 34px 110px rgba(0,0,0,.55);
}
.install-card {
  max-height: calc(min(92vh, 920px) - 14px);
  overflow: hidden;
  border-radius: 22px;
}
.install-scroll {
  max-height: calc(min(92vh, 920px) - 14px);
  overflow: auto;
  padding: 24px 18px 24px 24px;
  border-radius: 22px;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(242,85,96,.7) rgba(255,255,255,.035);
}
.install-scroll::-webkit-scrollbar { width: 8px; }
.install-scroll::-webkit-scrollbar-track {
  margin-block: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}
.install-scroll::-webkit-scrollbar-thumb {
  border: 2px solid #10141b;
  border-radius: 999px;
  background: linear-gradient(180deg,#ff747e,#d53e49);
}
.install-modal-head { align-items: center; }
.install-step {
  min-height: 100px;
  padding: 19px;
}
.install-step > div:not(.install-control) {
  align-self: center;
  min-width: 0;
}
.install-step strong {
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.18;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.install-step p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.55;
}
.install-step-action {
  grid-template-columns: 44px minmax(0,1fr) auto;
}
.install-step-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 16px;
}
.install-control {
  pointer-events: none;
  user-select: none;
  cursor: default;
  justify-self: end;
}
.install-toggle-control {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
}
.install-toggle-track {
  width: 58px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 4px;
  border: 1px solid rgba(95,220,148,.36);
  border-radius: 999px;
  background: rgba(79,199,128,.17);
  box-shadow: inset 0 0 0 1px rgba(79,199,128,.06);
}
.install-toggle-track i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #65d996;
  box-shadow: 0 3px 12px rgba(39,178,100,.32);
}
.install-load-control {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 11px;
  background: rgba(255,255,255,.045);
  color: #e8ebf1;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}
.install-load-control svg {
  width: 18px;
  height: 18px;
  color: #aeb7c5;
}
.install-pin-flow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.install-tool-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  color: #d9dee8;
}
.install-tool-icon svg { width: 21px; height: 21px; }
.install-pin-icon {
  border-color: rgba(242,85,96,.24);
  background: rgba(242,85,96,.09);
  color: #ff7a84;
}
.install-flow-arrow {
  width: 22px;
  height: 22px;
  color: #7f8898;
}
.install-control svg,
.install-step .button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.install-note { font-size: 11px; }
.browser-side {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 760px) {
  .notify-form-visible { flex-direction: column; }
  .install-dialog { width: calc(100% - 18px); padding: 5px; }
  .install-scroll { padding: 19px 13px 19px 18px; }
  .install-step,
  .install-step-action {
    grid-template-columns: 38px minmax(0,1fr);
    min-height: 0;
  }
  .install-step > .button,
  .install-step > .install-control {
    grid-column: 2;
    justify-self: start;
    margin-top: 8px;
  }
  .install-load-control {
    white-space: normal;
  }
}

/* Thank-you page */
.thanks-container { max-width: 960px; }
.thanks-card { text-align: left; }
.thanks-check {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(84,211,137,.3);
  border-radius: 18px;
  background: rgba(84,211,137,.11);
  color: #5ad98f;
  box-shadow: 0 18px 44px rgba(37,164,96,.12);
}
.thanks-check svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.thanks-card > h1 { max-width: 14ch; }
.thanks-divider { height: 1px; margin: 40px 0; background: var(--line); }
.thanks-form-heading h2 { max-width: 18ch; margin: 7px 0 10px; font-size: clamp(28px, 4vw, 48px); line-height: 1.02; text-wrap: balance; }
.thanks-form-heading p { max-width: 700px; margin: 0; color: var(--muted); line-height: 1.65; }
.thanks-form { display: grid; gap: 18px; margin-top: 28px; }
.thanks-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.thanks-form label:not(.thanks-consent) { display: grid; gap: 8px; color: #dfe4ed; font-size: 12px; font-weight: 760; }
.thanks-form input:not([type="checkbox"]) {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  outline: 0;
  background: #0b0e13;
  color: var(--text);
  font: inherit;
}
.thanks-form input:not([type="checkbox"]):focus { border-color: rgba(242,85,96,.58); box-shadow: 0 0 0 4px rgba(242,85,96,.08); }
.thanks-consent { display: flex; align-items: flex-start; gap: 11px; padding: 15px 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); color: var(--muted); font-size: 12px; line-height: 1.55; cursor: pointer; }
.thanks-consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 1px; accent-color: var(--red); }
.thanks-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.thanks-actions .button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.thanks-actions .button:disabled { opacity: .58; cursor: wait; }
.thanks-status { min-height: 1.4em; margin: 0; }
.thanks-mail-fallback { width: fit-content; color: #ff9ba2; font-size: 12px; font-weight: 760; text-decoration: underline; text-underline-offset: 3px; }
.thanks-footer-actions { display: flex; justify-content: flex-start; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 760; }
.text-link:hover { color: var(--text); }
.text-link svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 680px) {
  .thanks-form-grid { grid-template-columns: 1fr; }
  .thanks-actions { flex-direction: column; }
  .thanks-actions .button { width: 100%; }
}

/* v10 — supporter thank-you form */
.standalone-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}
.standalone-topbar .standalone-brand { margin: 0; }
.thanks-back-button { flex: 0 0 auto; }
.thanks-back-button svg { width: 16px; height: 16px; }
.thanks-card > h1 { max-width: 17ch; margin-top: 0; }
.thanks-form-heading h2 { max-width: none; }
.thanks-form-heading p { max-width: 780px; }
.thanks-field-label {
  color: #dfe4ed;
  font-size: 12px;
  font-weight: 760;
}
.thanks-photo-field { display: grid; gap: 8px; }
.thanks-photo-control {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 13px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: #0b0e13;
}
.thanks-photo-button {
  width: 100%;
  min-height: 46px;
  justify-content: center;
  cursor: pointer;
}
.thanks-photo-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.thanks-photo-control small {
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
  overflow-wrap: anywhere;
}
.thanks-consent { align-items: center; }
.thanks-consent input { margin-top: 0; }
.thanks-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  width: 100%;
}
.thanks-actions .button { width: 100%; }

@media (max-width: 680px) {
  .standalone-topbar { align-items: center; margin-bottom: 24px; }
  .thanks-back-button span { display: none; }
  .thanks-back-button { width: 42px; min-height: 42px; padding: 0; }
  .thanks-media-row { grid-template-columns: 1fr; }
  .thanks-actions { grid-template-columns: 1fr; }
}


/* v12 compact profile-photo selector */
.thanks-photo-field { display:grid; gap:8px; min-width:0; }
.thanks-photo-control {
  min-height:72px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  padding:11px 16px;
  border:1px solid var(--line-strong);
  border-radius:13px;
  background:#0b0e13;
  color:var(--text);
  cursor:pointer;
  transition:border-color .2s ease, background .2s ease, transform .2s ease;
}
.thanks-photo-control:hover { border-color:rgba(242,85,96,.5); background:rgba(242,85,96,.035); }
.thanks-photo-control:active { transform:translateY(1px); }
.thanks-photo-action { display:inline-flex; align-items:center; justify-content:center; gap:9px; font-size:13px; font-weight:800; }
.thanks-photo-action svg { width:18px; height:18px; flex:0 0 auto; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.thanks-photo-control small { color:var(--muted-2); font-size:10px; font-weight:500; line-height:1.35; text-align:center; }

/* Legal pages */
.legal-page { padding:24px 0 72px; }
.legal-container { max-width:980px; }
.legal-card { padding:clamp(28px,5vw,64px); }
.legal-intro { max-width:760px; color:var(--muted); font-size:16px; line-height:1.7; }
.legal-meta { margin-top:12px; color:var(--muted-2); font-size:11px; }
.legal-content { display:grid; gap:34px; margin-top:42px; padding-top:36px; border-top:1px solid var(--line); }
.legal-section { display:grid; gap:12px; }
.legal-section h2 { margin:0; font-size:clamp(22px,3vw,32px); line-height:1.1; }
.legal-section h3 { margin:8px 0 0; font-size:16px; }
.legal-section p, .legal-section li { margin:0; color:var(--muted); line-height:1.72; }
.legal-section ul { display:grid; gap:8px; margin:0; padding-left:20px; }
.legal-section a { color:#ff949c; text-underline-offset:3px; }
.legal-note { padding:15px 17px; border:1px solid rgba(242,180,85,.24); border-radius:13px; background:rgba(242,180,85,.07); color:#e8d2a3; font-size:12px; line-height:1.55; }
.legal-contact { display:grid; gap:5px; padding:16px 18px; border:1px solid var(--line); border-radius:14px; background:rgba(255,255,255,.025); }
@media (max-width:760px) { .legal-page { padding-top:12px; } .legal-card { padding:24px 18px; } }

/* v17 — restored localized launch waitlist */
.notify-note { position: relative; z-index: 2; margin: 10px auto 0 !important; color: var(--muted-2) !important; font-size: 11px !important; line-height: 1.5; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
