:root {
  --v2-bg: #080b0a;
  --v2-bg-soft: #0b0f0d;
  --v2-surface: #0e1311;
  --v2-surface-raised: #121815;
  --v2-surface-hover: #16201b;
  --v2-text: #f3f6f4;
  --v2-text-muted: #9ca8a2;
  --v2-text-dim: #6f7a75;
  --v2-accent: #c9ff4a;
  --v2-accent-hover: #d6ff72;
  --v2-accent-ink: #091006;
  --v2-success: #74e39b;
  --v2-warning: #e9c46a;
  --v2-neutral: #8e9a95;
  --v2-border: rgba(255, 255, 255, 0.08);
  --v2-border-strong: rgba(255, 255, 255, 0.13);
  --v2-border-accent: rgba(201, 255, 74, 0.28);
  --v2-shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.2);
  --v2-shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--v2-bg);
  color: var(--v2-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--v2-accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--v2-accent);
  color: var(--v2-accent-ink);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(calc(-100% - 24px));
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.announcement {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 16px;
  border-bottom: 1px solid var(--v2-border);
  background: var(--v2-bg);
  color: var(--v2-text-muted);
  font-size: 11px;
  font-weight: 600;
}

.announcement-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v2-accent);
  flex: 0 0 auto;
}

.site-header {
  width: min(1280px, calc(100% - 64px));
  height: 64px;
  margin: 16px auto 0;
  padding: 0 6px 0 8px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--v2-border);
  border-radius: 18px;
  background: rgba(14, 19, 17, 0.72);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  background: var(--v2-surface-raised);
  border: 1px solid var(--v2-border-accent);
  color: var(--v2-accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--v2-text-muted);
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a:hover,
.login-link:hover,
.lang-link:hover {
  color: var(--v2-text);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 650;
}

.lang-link,
.login-link {
  color: var(--v2-text-muted);
  padding: 8px 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-small {
  height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  color: var(--v2-accent-ink);
  background: var(--v2-accent);
  font-size: 13px;
}

.button-small:hover,
.button-primary:hover {
  background: var(--v2-accent-hover);
}

.button-primary {
  height: 52px;
  padding: 0 22px;
  color: var(--v2-accent-ink);
  background: var(--v2-accent);
  font-size: 15px;
}

.button-secondary {
  height: 52px;
  padding: 0 22px;
  color: var(--v2-text);
  background: transparent;
  border-color: var(--v2-border-strong);
  font-size: 15px;
}

.button-secondary:hover {
  border-color: var(--v2-border-accent);
}

.hero {
  width: min(1280px, calc(100% - 64px));
  min-height: 720px;
  margin: 0 auto;
  padding: 80px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% 0 12% auto;
  width: min(58%, 640px);
  background: radial-gradient(circle at 78% 35%, rgba(201, 255, 74, 0.055), transparent 33%);
  pointer-events: none;
  z-index: 0;
}

.hero-copy,
.product-shell {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy {
  animation: fade-up 420ms ease both;
}

.beta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 10px;
  border: 1px solid var(--v2-border);
  border-radius: 999px;
  background: var(--v2-surface);
  color: var(--v2-text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.beta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v2-accent);
}

.hero h1 {
  margin: 22px 0 0;
  max-width: 16ch;
  color: var(--v2-text);
  font-size: clamp(58px, 5.2vw, 82px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--v2-accent);
}

.hero-lead {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--v2-text-muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-note {
  margin: 18px 0 0;
  color: var(--v2-text-dim);
  font-size: 13px;
  line-height: 1.5;
}

.product-shell {
  width: 100%;
  max-width: 710px;
  min-height: 540px;
  justify-self: end;
  border: 1px solid var(--v2-border-strong);
  border-radius: 24px;
  background: var(--v2-surface);
  box-shadow: var(--v2-shadow-lg);
  overflow: hidden;
  animation: fade-up-shell 520ms ease 80ms both;
}

.product-topbar {
  height: 54px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--v2-border);
}

.product-topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 13px;
  font-weight: 650;
}

.product-topbar-brand .brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  font-size: 11px;
}

.product-topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.chip-neutral {
  border: 1px solid var(--v2-border);
  color: var(--v2-text-muted);
  background: var(--v2-surface-raised);
}

.product-topbar-control {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1px solid var(--v2-border-strong);
  background: var(--v2-surface-raised);
}

.product-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  min-height: 486px;
}

.product-main,
.product-inspector {
  min-width: 0;
}

.queue-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 10px;
  color: var(--v2-text-dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.queue-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 12px 16px;
  border-top: 1px solid var(--v2-border);
  min-width: 0;
  animation: fade-up 360ms ease both;
  animation-delay: calc(var(--order, 0) * 50ms + 160ms);
}

.queue-thumb {
  width: 48px;
  height: 58px;
  border-radius: 8px;
  border: 1px solid var(--v2-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%),
    linear-gradient(160deg, #1a221e, #101613);
  position: relative;
  flex: 0 0 auto;
}

.queue-thumb::after {
  content: "9:16";
  position: absolute;
  right: 4px;
  bottom: 4px;
  color: var(--v2-text-dim);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.thumb-b { background: linear-gradient(160deg, #17201c, #0d1210); }
.thumb-c { background: linear-gradient(160deg, #1c2118, #10140f); }
.thumb-d { background: linear-gradient(160deg, #151c1b, #0c1110); }

.queue-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.queue-copy strong {
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.queue-copy > span:not(.platform-chips) {
  color: var(--v2-text-dim);
  font-size: 12px;
}

.platform-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.platform-chips span,
.access-list span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 20px;
  padding: 0 6px;
  border: 1px solid var(--v2-border);
  border-radius: 999px;
  color: var(--v2-text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.queue-meta {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.queue-time {
  color: var(--v2-text-dim);
  font-size: 12px;
  font-weight: 650;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.status-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status-scheduled {
  color: var(--v2-accent);
  background: rgba(201, 255, 74, 0.08);
}

.status-ready {
  color: var(--v2-success);
  background: rgba(116, 227, 155, 0.1);
}

.status-access {
  color: var(--v2-warning);
  background: rgba(233, 196, 106, 0.1);
}

.status-review {
  color: var(--v2-neutral);
  background: rgba(142, 154, 149, 0.12);
}

.state-ready { color: var(--v2-success); }
.state-scheduled { color: var(--v2-accent); }
.state-access { color: var(--v2-warning); }

.product-inspector {
  padding: 16px;
  border-left: 1px solid var(--v2-border);
  background: var(--v2-bg-soft);
}

.inspector-header,
.inspector-label,
.inspector-time {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.inspector-header {
  color: var(--v2-text-dim);
  margin-bottom: 14px;
}

.inspector-video {
  width: 96px;
  height: 128px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid var(--v2-border);
  background:
    linear-gradient(180deg, rgba(201, 255, 74, 0.08), transparent 40%),
    linear-gradient(160deg, #1a221e, #101613);
}

.inspector-label {
  margin-bottom: 14px;
}

.inspector-states {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.inspector-states span {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.inspector-states small {
  color: var(--v2-text-dim);
  font-size: 12px;
}

.inspector-states b {
  font-size: 12px;
  font-weight: 700;
}

.inspector-time {
  color: var(--v2-text-muted);
  margin-bottom: 14px;
}

.inspector-details {
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--v2-border-strong);
  border-radius: 10px;
  color: var(--v2-text-muted);
  font-size: 12px;
  font-weight: 650;
}

.inspector-compact {
  display: none;
}

.hero-foot {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid var(--v2-border);
}

.hero-foot p {
  margin: 0;
  min-width: 0;
}

.hero-foot strong {
  display: block;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.hero-foot span {
  display: block;
  margin-top: 6px;
  color: var(--v2-text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 104px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--v2-text-dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.section h2,
.focus-copy h2,
.beta-offer-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin: 12px 0 0;
  font-size: clamp(42px, 4.1vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.focus-copy > p,
.faq-intro > p,
.beta-offer-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--v2-text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.section-heading-centered > p:last-child {
  margin-left: auto;
  margin-right: auto;
}

.feature-rows {
  display: grid;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--v2-border);
  min-width: 0;
}

.feature-row-flip {
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
}

.feature-row-flip .feature-copy {
  order: 2;
}

.feature-copy h3,
.audience-grid h3,
.beta-panel h3,
.steps h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.feature-copy p,
.audience-grid p,
.steps p {
  margin: 12px 0 0;
  color: var(--v2-text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.feature-ui,
.mini-queue,
.access-list,
.timeline {
  min-width: 0;
}

.mini-queue,
.access-list,
.timeline {
  border: 1px solid var(--v2-border);
  border-radius: 18px;
  background: var(--v2-surface);
  overflow: hidden;
}

.mini-queue .queue-row {
  min-height: 72px;
  animation: none;
}

.access-list {
  display: grid;
}

.access-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 0 16px;
  border-top: 1px solid var(--v2-border);
  min-width: 0;
}

.access-list div:first-child {
  border-top: 0;
}

.access-list b {
  font-size: 12px;
  font-weight: 700;
}

.timeline {
  padding: 22px 18px;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.timeline-steps span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--v2-border);
  border-radius: 999px;
  color: var(--v2-text-dim);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 0 8px;
}

.timeline-steps .is-done {
  color: var(--v2-success);
  background: rgba(116, 227, 155, 0.08);
}

.timeline-steps .is-active {
  color: var(--v2-accent);
  background: rgba(201, 255, 74, 0.08);
}

.timeline p {
  margin: 14px 0 0;
  color: var(--v2-text-muted);
  font-size: 13px;
}

.section-how .steps {
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
  position: relative;
}

.section-how .steps::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--v2-border-strong);
}

.steps li {
  min-width: 0;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--v2-surface);
  border: 1px solid var(--v2-border-accent);
  color: var(--v2-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

.section-focus {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--v2-accent);
  font-size: 14px;
  font-weight: 700;
}

.comparison {
  overflow: hidden;
  border: 1px solid var(--v2-border);
  border-radius: 18px;
  background: var(--v2-surface);
}

.comparison > div {
  min-height: 64px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--v2-border);
  color: var(--v2-text-muted);
  font-size: 13px;
  min-width: 0;
}

.comparison > div:last-child {
  border-bottom: 0;
}

.comparison > div > b {
  color: var(--v2-text);
  font-size: 12px;
}

.comparison > div > strong {
  color: var(--v2-accent);
  font-size: 13px;
}

.comparison-head {
  min-height: 58px !important;
  background: var(--v2-surface-raised);
  color: var(--v2-text-dim) !important;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-head strong {
  color: var(--v2-text) !important;
  font-size: 14px !important;
  letter-spacing: -0.02em;
  text-transform: none;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.audience-grid article {
  min-height: 280px;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--v2-border);
  border-radius: 18px;
  background: var(--v2-surface);
  display: flex;
  flex-direction: column;
}

.audience-featured {
  border-color: var(--v2-border-accent);
}

.audience-label {
  display: block;
  margin-bottom: 16px;
  color: var(--v2-text-dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.audience-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--v2-border);
  color: var(--v2-text-dim);
  font-size: 12px;
}

.beta-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 36px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  padding: 48px;
  border: 1px solid var(--v2-border);
  border-radius: 24px;
  background: var(--v2-surface);
}

.beta-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--v2-border);
  border-radius: 18px;
  background: var(--v2-bg-soft);
}

.beta-panel > strong {
  display: block;
  color: var(--v2-accent);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.beta-panel ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.beta-panel li {
  min-height: 36px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--v2-border);
  color: var(--v2-text-muted);
  font-size: 14px;
}

.beta-panel p {
  margin: 14px 0 0;
  color: var(--v2-text-dim);
  font-size: 13px;
}

.section-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
  gap: 48px;
  align-items: start;
}

.faq-list details {
  border-top: 1px solid var(--v2-border);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 0;
  padding: 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 650;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid var(--v2-border-strong);
  border-radius: 8px;
  position: relative;
  transition: transform 160ms ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--v2-text-muted);
}

.faq-icon::before {
  width: 10px;
  height: 1px;
  top: 11px;
  left: 6px;
}

.faq-icon::after {
  width: 1px;
  height: 10px;
  top: 6px;
  left: 11px;
}

details[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0 0 18px;
  color: var(--v2-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.final-cta {
  width: min(1180px, calc(100% - 48px));
  min-height: 360px;
  margin: 0 auto 32px;
  padding: 64px;
  border: 1px solid var(--v2-border-accent);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(201, 255, 74, 0.05), transparent 28%),
    var(--v2-surface);
  display: grid;
  align-content: center;
  justify-items: start;
}

.final-cta > * {
  max-width: 720px;
}

.final-cta h2 {
  font-size: clamp(42px, 4.5vw, 68px);
}

.final-cta > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--v2-text-muted);
  font-size: 16px;
}

.final-cta .button {
  margin-top: 28px;
}

.final-cta small {
  display: block;
  margin-top: 14px;
  color: var(--v2-text-dim);
  font-size: 13px;
}

footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 36px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--v2-border);
}

footer p,
footer span {
  margin: 0;
  color: var(--v2-text-muted);
  font-size: 13px;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--v2-text-dim);
  font-size: 13px;
}

footer .brand-mark {
  width: 28px;
  height: 28px;
  font-size: 12px;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-up-shell {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1200px) {
  .site-header,
  .hero,
  .hero-foot {
    width: min(1280px, calc(100% - 48px));
  }

  .section {
    width: min(1180px, calc(100% - 48px));
  }

  .product-body {
    grid-template-columns: minmax(0, 1fr) 190px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    height: auto;
    min-height: 64px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 56px auto;
    column-gap: 16px;
    row-gap: 0;
    padding-bottom: 0;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .desktop-nav {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-height: 42px;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 0 4px;
    border-top: 1px solid var(--v2-border);
    color: var(--v2-text-muted);
    font-size: 12px;
    white-space: nowrap;
  }

  .desktop-nav a {
    flex: 0 0 auto;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: 0;
    padding: 56px 0 48px;
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .hero::before {
    inset: auto 0 0;
    width: 100%;
    height: 48%;
    background: radial-gradient(circle at 50% 20%, rgba(201, 255, 74, 0.055), transparent 42%);
  }

  .hero h1 { max-width: none; }

  .product-shell {
    justify-self: stretch;
    max-width: 760px;
    width: 100%;
    min-height: 0;
  }

  .section,
  .beta-offer,
  .final-cta,
  footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .final-cta { padding: 48px; min-height: 0; }
  .beta-offer { padding: 36px; }
}

@media (max-width: 768px) {
  .product-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-inspector {
    border-left: 0;
    border-top: 1px solid var(--v2-border);
  }

  .feature-row,
  .feature-row-flip {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 40px 0;
  }

  .feature-row-flip .feature-copy { order: 0; }

  .section-how .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .section-how .steps::before { display: none; }

  .section-focus,
  .section-faq,
  .beta-offer {
    grid-template-columns: minmax(0, 1fr);
  }

  .audience-grid { grid-template-columns: minmax(0, 1fr); }

  .comparison { overflow-x: auto; }
  .comparison > div { min-width: 640px; }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .hero-foot,
  .section {
    width: calc(100% - 32px);
  }

  .site-header {
    height: auto;
    min-height: 64px;
    margin-top: 10px;
    padding: 0 8px 0 10px;
    column-gap: 8px;
    row-gap: 0;
  }

  .brand { font-size: 18px; }
  .header-actions { gap: 6px; }
  .desktop-nav {
    min-height: 38px;
    gap: 12px;
    justify-content: space-between;
    overflow: visible;
    font-size: 11px;
  }
  .header-actions .login-link {
    padding: 6px 2px;
    font-size: 11px;
  }
  .button-small { height: 36px; padding: 0 12px; font-size: 12px; }

  .hero { padding: 36px 0 28px; }
  .hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: -0.045em;
  }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .button-primary,
  .button-secondary,
  .final-cta .button,
  .beta-offer .button {
    width: 100%;
  }

  .product-shell {
    border-radius: 18px;
    min-height: 0;
  }

  .product-body { display: block; }

  .queue-row {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    min-height: 76px;
    padding: 10px 12px;
    gap: 10px;
  }

  .queue-thumb { width: 42px; height: 50px; }
  .queue-row-optional { display: none; }

  .product-inspector {
    padding: 12px;
  }

  .inspector-header,
  .inspector-video,
  .inspector-label,
  .inspector-states,
  .inspector-time,
  .inspector-details {
    display: none;
  }

  .inspector-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .inspector-compact span {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 8px;
    border: 1px solid var(--v2-border);
    border-radius: 999px;
    color: var(--v2-text-muted);
    font-size: 11px;
    font-weight: 700;
  }

  .hero-foot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
    padding: 18px 0;
  }

  .section,
  .beta-offer,
  .final-cta,
  footer {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section h2,
  .focus-copy h2,
  .beta-offer-copy h2,
  .faq-intro h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .section-how .steps {
    grid-template-columns: minmax(0, 1fr);
    margin-left: 4px;
    padding-left: 18px;
    border-left: 1px solid var(--v2-border-strong);
    gap: 22px;
  }

  .beta-offer,
  .final-cta,
  footer {
    width: calc(100% - 32px);
  }

  .beta-offer { padding: 28px 20px; }
  .final-cta { padding: 36px 22px; min-height: 0; }
  .final-cta h2 { font-size: clamp(32px, 9vw, 46px); }

  footer {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 24px 0 32px;
  }
}

@media (max-width: 430px) {
  .button-small {
    min-width: 62px;
    padding: 0 9px;
    font-size: 0;
  }

  .button-small::after {
    content: attr(data-mobile-label);
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .header-actions { gap: 4px; }
}

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