:root {
  color-scheme: dark;
  --bg: #0b1022;
  --bg-top: #1b0f2e;
  --bg-mid: #24345b;
  --bg-bottom: #1a3d53;
  --surface: rgba(13, 20, 44, 0.86);
  --surface-strong: rgba(8, 13, 30, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.06);
  --surface-highlight: rgba(255, 255, 255, 0.11);
  --card: rgba(15, 23, 50, 0.82);
  --card-strong: rgba(10, 16, 34, 0.96);
  --line: rgba(167, 178, 217, 0.2);
  --line-strong: rgba(255, 255, 255, 0.16);
  --ink: #eef3ff;
  --ink-soft: #a7b2d9;
  --ink-muted: #6b7ba8;
  --cyan: #00d4ff;
  --gold: #ffd84d;
  --mint: #7ce6d3;
  --coral: #ffb38a;
  --danger: #ff8f8f;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.36);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.26);
  --shadow-sm: 0 12px 28px rgba(0, 0, 0, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 216, 77, 0.12), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(0, 212, 255, 0.14), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(124, 230, 211, 0.1), transparent 22%),
    linear-gradient(145deg, var(--bg-top) 0%, var(--bg) 32%, var(--bg-mid) 68%, var(--bg-bottom) 100%);
  line-height: 1.62;
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 0.8rem) 0 0 / 3.6rem 3.6rem;
  opacity: 0.28;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Literata", "Georgia", serif;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 24;
  border-bottom: 1px solid rgba(167, 178, 217, 0.12);
  background: rgba(8, 13, 30, 0.72);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.nav-links,
.nav-actions,
.lang-switch {
  display: inline-flex;
  align-items: center;
}

.nav-links {
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1 1 auto;
}

.nav-links a,
.lang-pill,
.btn-main,
.btn-ghost,
.btn-soft,
.consent-btn,
.legal-back {
  min-height: 44px;
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  border: 1px solid transparent;
  font-size: 0.92rem;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  border-color: rgba(0, 212, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.nav-actions {
  gap: 12px;
}

.nav-beta {
  flex-shrink: 0;
}

.nav-beta-short,
.nav-toggle,
.section-nav-mobile {
  display: none;
}

.nav-toggle {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(167, 178, 217, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle-lines {
  position: relative;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}

.nav-toggle-text {
  font-size: 0.9rem;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 8, 20, 0.72);
  backdrop-filter: blur(6px);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, calc(100% - 28px));
  height: 100%;
  z-index: 1;
  padding: 20px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 216, 77, 0.12), transparent 24%),
    linear-gradient(160deg, rgba(10, 16, 34, 0.98), rgba(26, 34, 71, 0.95));
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
  overflow: auto;
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
}

.mobile-nav-close {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(167, 178, 217, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.mobile-nav-links {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ink);
  font-weight: 700;
}

.mobile-nav-footer {
  display: grid;
  gap: 10px;
}

.lang-switch {
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(167, 178, 217, 0.18);
}

.lang-pill {
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.lang-pill:hover,
.lang-pill:focus-visible {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.14);
}

.lang-pill.is-active {
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), #fff1a8);
  box-shadow: 0 10px 24px rgba(255, 216, 77, 0.28);
}

.btn-main,
.btn-ghost,
.btn-soft,
.consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.btn-main {
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), #ffe8a4 42%, #ffd877 100%);
  box-shadow: 0 16px 34px rgba(255, 216, 77, 0.26);
}

.btn-main:hover,
.btn-main:focus-visible,
.btn-ghost:hover,
.btn-ghost:focus-visible,
.btn-soft:hover,
.btn-soft:focus-visible {
  transform: translateY(-1px);
}

.btn-main:hover,
.btn-main:focus-visible {
  box-shadow: 0 22px 38px rgba(255, 216, 77, 0.34);
}

.btn-ghost,
.btn-soft {
  color: var(--ink);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(167, 178, 217, 0.2);
}

.btn-soft {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.16), rgba(124, 230, 211, 0.1));
  border-color: rgba(0, 212, 255, 0.2);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.btn-soft:hover,
.btn-soft:focus-visible {
  border-color: rgba(124, 230, 211, 0.34);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.24), rgba(124, 230, 211, 0.16));
}

main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 96px;
}

.hero,
.beta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.hero-copy,
.hero-media,
.trust-strip,
.step-card,
.outcome-card,
.media-card,
.proof-step,
.price-example,
.faq-item,
.landing-hero,
.text-panel,
.link-grid a,
.signal-card,
.beta-copy,
.beta-form {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.hero-copy,
.landing-hero,
.beta-copy,
.beta-form,
.text-panel {
  padding: clamp(24px, 4vw, 40px);
}

.hero-copy::after,
.landing-hero::after,
.beta-copy::after,
.pricing-panel::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.2), transparent 68%);
  pointer-events: none;
}

.eyebrow,
.outcome-meta,
.duo-badge,
.legal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.duo-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  box-shadow: 0 0 0 5px rgba(255, 216, 77, 0.1);
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.section-head h2,
.text-panel h2,
.beta-panel h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
}

.hero-copy p,
.section-head p,
.hero-caption,
.proof-body p,
.price-example p,
.faq-item p,
.text-panel p,
.text-panel li,
.link-grid a span,
.beta-copy p,
.beta-note,
.beta-status,
.page-footer,
.media-card figcaption {
  color: var(--ink-soft);
}

.hero-copy p {
  margin-top: 16px;
  font-size: clamp(1.05rem, 2.2vw, 1.18rem);
  max-width: 38rem;
}

.hero-actions,
.beta-actions,
.final-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof,
.beta-highlights {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-proof li,
.beta-highlights li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 600;
}

.hero-proof li::before,
.beta-highlights li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  flex: 0 0 auto;
  margin-top: 0.55rem;
  background: linear-gradient(135deg, var(--gold), var(--mint));
  box-shadow: 0 0 0 4px rgba(255, 216, 77, 0.12);
}

.hero-media,
.media-card {
  overflow: hidden;
}

.hero-media {
  padding: 14px;
}

.hero-media img,
.media-card img,
.proof-step img,
.text-panel img {
  width: 100%;
  object-fit: cover;
}

.hero-media img,
.text-panel img {
  border-radius: 22px;
}

.hero-media img {
  min-height: 100%;
  aspect-ratio: 4 / 3;
}

.hero-caption {
  margin: 14px 6px 2px;
  font-size: 0.95rem;
}

.trust-strip {
  margin-top: 28px;
  padding: 18px;
}

.section-nav {
  margin-top: 18px;
}

.section-nav-desktop {
  display: block;
}

.section-nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-nav a,
.section-nav-mobile-links a,
.section-nav-mobile summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(167, 178, 217, 0.16);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.section-nav a:hover,
.section-nav a:focus-visible,
.section-nav-mobile-links a:hover,
.section-nav-mobile-links a:focus-visible,
.section-nav-mobile summary:hover,
.section-nav-mobile summary:focus-visible {
  color: var(--ink);
  border-color: rgba(0, 212, 255, 0.26);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.section-nav-mobile {
  margin-top: 16px;
}

.section-nav-mobile summary {
  width: 100%;
  list-style: none;
  cursor: pointer;
  justify-content: space-between;
}

.section-nav-mobile summary::-webkit-details-marker {
  display: none;
}

.section-nav-mobile summary::after {
  content: "+";
  font-size: 1rem;
  line-height: 1;
}

.section-nav-mobile[open] summary::after {
  content: "-";
}

.section-nav-mobile-links {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.chip-grid,
.steps,
.proof-wall,
.faq-grid,
.duo-grid,
.signal-grid {
  display: grid;
  gap: 14px;
}

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

.trust-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}

.trust-chip::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.12);
}

.section {
  margin-top: 56px;
}

.section-head {
  max-width: 760px;
}

.section-head p {
  margin-top: 12px;
}

.section-split .section-head {
  max-width: 700px;
}

.duo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.duo-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.duo-card h3 {
  margin-top: 18px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.duo-card p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.duo-card-tales {
  background:
    radial-gradient(circle at 85% 12%, rgba(0, 212, 255, 0.16), transparent 26%),
    linear-gradient(160deg, rgba(10, 16, 34, 0.96), rgba(26, 34, 71, 0.92));
}

.duo-card-moments {
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 179, 138, 0.18), transparent 24%),
    linear-gradient(160deg, rgba(27, 15, 46, 0.96), rgba(26, 61, 83, 0.9));
}

.duo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 800;
  color: var(--gold);
}

.duo-link::after {
  content: "->";
}

.steps {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  padding: 22px;
}

.step-card:nth-child(1) {
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 216, 77, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.step-card:nth-child(2) {
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 212, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.step-card:nth-child(3) {
  background:
    radial-gradient(circle at 84% 12%, rgba(124, 230, 211, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.step-index {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 216, 77, 0.94), rgba(255, 179, 138, 0.96));
  color: var(--bg);
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(255, 216, 77, 0.2);
}

.step-card h3 {
  margin-top: 16px;
  font-size: 1.4rem;
}

.step-card p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.outcome-layout,
.pricing-wrap {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.outcome-card {
  padding: 24px;
}

.outcome-card h3 {
  margin-top: 14px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.outcome-grid {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.outcome-point {
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.outcome-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

.outcome-value {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 700;
}

.media-card figcaption {
  padding: 16px 18px 18px;
  background: rgba(8, 13, 30, 0.84);
  border-top: 1px solid var(--line);
}

.media-card img {
  min-height: 320px;
}

.proof-wall {
  margin-top: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-step {
  overflow: hidden;
}

.proof-step::before {
  content: attr(data-step);
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(8, 13, 30, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--gold);
  font-weight: 900;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.proof-step img {
  aspect-ratio: 16 / 10;
}

.proof-body {
  padding: 18px;
}

.proof-body h3 {
  font-size: 1.3rem;
}

.proof-body p + p {
  margin-top: 10px;
}

.proof-body strong {
  color: var(--ink);
}

.signal-grid {
  margin-top: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal-card {
  padding: 22px;
}

.signal-card::before {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
}

.signal-card h3 {
  margin-top: 18px;
  font-size: 1.32rem;
}

.signal-card p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.pricing-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 216, 77, 0.14), transparent 26%),
    radial-gradient(circle at 14% 88%, rgba(0, 212, 255, 0.12), transparent 22%),
    linear-gradient(160deg, rgba(10, 16, 34, 0.98), rgba(26, 34, 71, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
}

.pricing-panel h3 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
}

.pricing-panel p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.pricing-list,
.examples-grid {
  display: grid;
  gap: 10px;
}

.pricing-list {
  margin-top: 18px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-row span:last-child {
  color: var(--gold);
  font-weight: 900;
}

.price-example {
  padding: 18px;
}

.price-example:nth-child(1) {
  border-color: rgba(255, 216, 77, 0.24);
}

.price-example:nth-child(2) {
  border-color: rgba(0, 212, 255, 0.24);
}

.price-example:nth-child(3) {
  border-color: rgba(124, 230, 211, 0.24);
}

.price-example h4 {
  font-size: 1.16rem;
}

.price-example p {
  margin-top: 8px;
}

.faq-grid {
  margin-top: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  padding: 16px 18px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-family: "Literata", "Georgia", serif;
  font-size: 1.18rem;
}

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

.faq-item p {
  margin-top: 12px;
}

.beta-panel {
  margin-top: 60px;
  align-items: start;
}

.beta-copy,
.beta-form {
  height: 100%;
}

.beta-highlights {
  margin-top: 22px;
}

.beta-form {
  padding: clamp(22px, 3.5vw, 34px);
}

.beta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.beta-field {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.beta-field span {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.beta-field input,
.beta-field select,
.beta-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(167, 178, 217, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font: inherit;
  resize: vertical;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.beta-field input::placeholder,
.beta-field textarea::placeholder {
  color: var(--ink-muted);
}

.beta-field input:focus,
.beta-field select:focus,
.beta-field textarea:focus {
  border-color: rgba(0, 212, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.12);
}

.beta-actions {
  align-items: stretch;
}

.beta-note {
  margin-top: 16px;
  font-size: 0.92rem;
}

.beta-status {
  min-height: 1.4em;
  margin-top: 10px;
  font-size: 0.94rem;
  font-weight: 700;
}

.beta-status[data-state="success"] {
  color: var(--mint);
}

.beta-status[data-state="error"] {
  color: var(--danger);
}

.page-footer {
  margin-top: 52px;
  border-top: 1px solid rgba(167, 178, 217, 0.14);
  padding: 28px 0 52px;
  font-size: 0.94rem;
}

.footer-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--ink-soft);
}

.landing-main {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 90px;
}

.landing-hero {
  overflow: hidden;
}

.landing-hero h1 {
  margin-top: 16px;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
}

.landing-hero p {
  margin-top: 14px;
}

.text-panel {
  margin-top: 16px;
}

.text-panel h2 {
  font-size: clamp(1.45rem, 3.4vw, 2.2rem);
}

.text-panel p + p,
.text-panel ul,
.text-panel img {
  margin-top: 14px;
}

.text-panel ul {
  padding-left: 1.15rem;
}

.text-panel li + li {
  margin-top: 8px;
}

.link-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.link-grid a {
  padding: 20px;
}

.link-grid a strong,
.lang-choice strong {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
}

.link-grid a span,
.lang-choice span {
  display: block;
  margin-top: 8px;
}

.lang-choice {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 85% 12%, rgba(0, 212, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
}

.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;
}

body.has-consent-banner {
  padding-bottom: 142px;
}

.consent-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 12px;
  align-items: center;
  background: rgba(8, 13, 30, 0.96);
  color: var(--ink);
  border-radius: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.consent-banner[hidden] {
  display: none !important;
}

.consent-text {
  margin: 0;
  font-size: 0.94rem;
}

.consent-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consent-btn {
  appearance: none;
}

.consent-btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
}

.consent-btn-primary {
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), #ffe8a4);
}

@media (max-width: 1100px) {
  .hero,
  .beta-panel,
  .outcome-layout,
  .pricing-wrap {
    grid-template-columns: 1fr;
  }

  .chip-grid,
  .duo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-wall,
  .signal-grid,
  .faq-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .media-card img {
    min-height: 280px;
  }

  .section {
    margin-top: 48px;
  }
}

@media (max-width: 960px) {
  .site-header {
    position: static;
  }

  .nav-wrap {
    width: min(var(--max), calc(100% - 28px));
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
  }

  .brand {
    min-width: 48px;
    flex-shrink: 0;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    min-width: 0;
    width: 100%;
    gap: 8px;
    justify-self: end;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  .lang-switch {
    flex: 0 0 auto;
  }

  .nav-beta {
    flex: 0 1 148px;
    min-width: 92px;
    max-width: 148px;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
  }

  .nav-toggle {
    flex: 0 0 auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav-backdrop {
    display: none;
  }

  .mobile-nav-panel {
    inset: 0;
    width: 100%;
    height: 100dvh;
    border-left: 0;
    padding: 18px 18px 22px;
    gap: 16px;
    background:
      radial-gradient(circle at 88% 10%, rgba(255, 216, 77, 0.1), transparent 24%),
      radial-gradient(circle at 12% 88%, rgba(0, 212, 255, 0.08), transparent 24%),
      linear-gradient(160deg, rgba(10, 16, 34, 0.99), rgba(26, 34, 71, 0.97));
  }

  .mobile-nav-head {
    position: sticky;
    top: 0;
    z-index: 2;
    padding-bottom: 14px;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-nav-links {
    gap: 12px;
    padding-top: 6px;
  }

  .mobile-nav-link {
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
  }

  main {
    padding: 30px 0 72px;
  }

  main,
  .landing-main,
  .footer-grid {
    width: min(var(--max), calc(100% - 28px));
  }

  h1 {
    font-size: clamp(2.2rem, 7vw, 3.8rem);
  }

  .section-head h2,
  .text-panel h2,
  .beta-panel h2 {
    font-size: clamp(1.7rem, 4.8vw, 2.4rem);
  }

  .hero-copy,
  .hero-media,
  .landing-hero,
  .text-panel,
  .beta-copy,
  .beta-form,
  .pricing-panel,
  .step-card,
  .signal-card,
  .outcome-card,
  .price-example,
  .faq-item,
  .proof-body,
  .duo-card {
    padding: 20px;
  }

  .hero-copy p {
    font-size: 1.02rem;
  }

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

  .duo-grid,
  .proof-wall,
  .signal-grid,
  .faq-grid,
  .section-nav-mobile-links {
    grid-template-columns: 1fr;
  }

  .section-nav-desktop {
    display: none;
  }

  .section-nav-mobile {
    display: block;
  }

  .trust-strip {
    padding: 16px;
  }

  .trust-chip {
    min-height: 64px;
    font-size: 0.9rem;
  }

  .media-card img {
    min-height: 240px;
  }

  .proof-step img {
    aspect-ratio: 16 / 11;
  }

  .consent-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
    border-radius: 18px;
  }

  .consent-actions {
    flex-wrap: nowrap;
  }

  .consent-actions .consent-btn {
    width: auto;
    flex: 1 1 0;
  }

  body.has-consent-banner {
    padding-bottom: 152px;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    width: min(var(--max), calc(100% - 20px));
    gap: 8px;
  }

  .brand span {
    display: none;
  }

  .nav-beta-full,
  .nav-toggle-text {
    display: none;
  }

  .nav-beta {
    display: none;
  }

  .lang-switch {
    padding: 3px;
  }

  .lang-pill {
    min-width: 38px;
    padding: 0 8px;
    font-size: 0.74rem;
  }

  main,
  .landing-main,
  .footer-grid {
    width: min(var(--max), calc(100% - 20px));
  }

  main {
    padding: 24px 0 64px;
  }

  h1 {
    font-size: clamp(1.95rem, 10.5vw, 2.9rem);
  }

  .section-head h2,
  .text-panel h2,
  .beta-panel h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .hero-copy,
  .hero-media,
  .landing-hero,
  .text-panel,
  .beta-copy,
  .beta-form,
  .pricing-panel {
    padding: 18px;
  }

  .eyebrow,
  .outcome-meta,
  .duo-badge,
  .legal-kicker {
    font-size: 0.72rem;
    padding: 7px 12px;
  }

  .chip-grid,
  .link-grid,
  .beta-grid {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero-proof li,
  .beta-highlights li {
    font-size: 0.96rem;
  }

  .media-card img {
    min-height: 210px;
  }

  .consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
    gap: 10px;
  }

  .consent-text {
    font-size: 0.9rem;
  }

  body.has-consent-banner {
    padding-bottom: 140px;
  }

  .mobile-nav-panel {
    padding: 16px 16px 20px;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .beta-actions,
  .final-actions,
  .consent-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-main,
  .btn-ghost,
  .btn-soft,
  .consent-btn {
    width: 100%;
  }

  .hero-copy,
  .hero-media,
  .landing-hero,
  .text-panel,
  .beta-copy,
  .beta-form,
  .pricing-panel,
  .step-card,
  .signal-card,
  .outcome-card,
  .price-example,
  .faq-item {
    border-radius: 22px;
  }

  .hero-copy::after,
  .landing-hero::after,
  .beta-copy::after,
  .pricing-panel::after {
    display: none;
  }

  .mobile-nav-panel {
    width: 100%;
    padding: 18px;
  }

  body.has-consent-banner {
    padding-bottom: 176px;
  }
}

@media (min-width: 900px) {
  .consent-banner {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(920px, calc(100% - 36px));
    grid-template-columns: 1fr auto;
  }
}
