:root {
  color-scheme: dark;
  --bg: #070a11;
  --bg-soft: #0d1424;
  --bg-elevated: rgba(255, 255, 255, 0.04);
  --bg-card: rgba(12, 18, 33, 0.85);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f6f7fb;
  --text-muted: #9aa5bf;
  --accent: #6ce7b8;
  --accent-2: #6aa9ff;
  --accent-3: #f973ff;
  --glow: 0 28px 80px rgba(88, 155, 255, 0.28);
  --radius-lg: 32px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 18px 65px rgba(6, 14, 35, 0.45);
  --max-width: 1200px;
  --container-pad: clamp(20px, 4vw, 48px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at 16% -10%, rgba(108, 231, 184, 0.22), transparent 35%),
    radial-gradient(circle at 82% 0%, rgba(106, 169, 255, 0.24), transparent 40%),
    linear-gradient(180deg, #060b18 0%, #05070e 24%, #090f1c 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover,
a:focus {
  color: var(--accent);
}

.visually-hidden {
  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(var(--max-width), calc(100% - (var(--container-pad) * 2)));
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(5, 9, 19, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.7vw, 26px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  color: var(--text-muted);
}

.nav-links a {
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:focus-visible::after,
.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid transparent;
  color: #02050c;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 35px rgba(108, 208, 255, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(108, 214, 255, 0.42);
  background: linear-gradient(135deg, #4ad79f, #4c82ff);
  color: #02050c;
}

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn-ghost,
.btn-ghost:link,
.btn-ghost:visited {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text);
  box-shadow: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

.hero {
  padding: clamp(72px, 12vw, 128px) 0 clamp(48px, 10vw, 96px) 0;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: clamp(320px, 48vw, 520px);
  height: clamp(320px, 48vw, 520px);
  background: radial-gradient(circle, rgba(108, 231, 184, 0.22) 0%, transparent 68%);
  filter: blur(0);
  z-index: -2;
}

.hero::after {
  inset: auto -20% -35% auto;
  background: radial-gradient(circle, rgba(106, 169, 255, 0.24) 0%, transparent 70%);
}

.hero-grid {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 620px;
}

.stack > * + * {
  margin-top: 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--text-muted);
}

.eyebrow::before {
  content: "";
  display: inline-flex;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: var(--text);
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.02em;
}

.lead {
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--text-muted);
  margin: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-micro {
  font-size: 14px;
  color: var(--text-muted);
}

.trust-bar {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trust-bar li {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text-muted);
  backdrop-filter: blur(12px);
}

.hero-card {
  position: relative;
}

.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 32px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(18px);
  position: relative;
}

.match-card::before {
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: clamp(160px, 24vw, 240px);
  height: clamp(160px, 24vw, 240px);
  background: radial-gradient(circle, rgba(106, 169, 255, 0.4), transparent 70%);
  z-index: -1;
  filter: blur(20px);
}

.match-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.match-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #04111b;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.match-card__title {
  font-size: 15px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.match-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.match-card__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 15px;
}

.match-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(108, 231, 184, 0.22), rgba(106, 169, 255, 0.22));
  color: #071020;
  font-size: 18px;
  flex: 0 0 auto;
}

.match-icon--shield::before {
  content: "🛡";
}

.match-icon--star::before {
  content: "⭐";
}

.match-icon--pin::before {
  content: "📍";
}

.match-icon--tag::before {
  content: "🏷";
}

.match-footnote {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.section {
  padding: clamp(64px, 10vw, 88px) 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: clamp(32px, 6vw, 48px);
}

.section-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-header .badge::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.section.reassurance {
  padding-top: clamp(48px, 9vw, 72px);
}

.reassurance-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 48px);
  display: grid;
  box-shadow: 0 20px 50px rgba(4, 10, 24, 0.32);
  backdrop-filter: blur(22px);
  text-align: center;
  gap: 20px;
}

.reassurance-card h2 {
  font-size: clamp(28px, 4vw, 36px);
}

.reassurance-flow {
  position: relative;
  display: grid;
  gap: clamp(18px, 4vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (min-width: 1024px) {
  .reassurance-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.reassurance-step {
  position: relative;
  padding: clamp(20px, 4vw, 28px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 20px 55px rgba(6, 12, 22, 0.32);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 14px;
  text-align: left;
}

.reassurance-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(108, 231, 184, 0.6), rgba(106, 169, 255, 0));
  display: none;
}

.reassurance-step:not(:last-child)::after {
  display: block;
}

.reassurance-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(108, 231, 184, 0.28), rgba(106, 169, 255, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #04111b;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.reassurance-step h3 {
  margin: 0;
  font-size: clamp(18px, 3vw, 22px);
  color: var(--text);
}

.reassurance-step p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 780px) {
  .reassurance-step::after {
    display: none;
  }
}

.kpis {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.kpi-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.kpi-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 32px);
  display: grid;
  gap: 8px;
  text-align: left;
}

.kpi-card h3 {
  font-size: clamp(28px, 4vw, 38px);
  color: var(--accent);
}

.kpi-card p {
  margin: 0;
  color: var(--text-muted);
}

.step-grid {
  display: grid;
  gap: clamp(18px, 4vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 32px);
  display: grid;
  gap: 14px;
  box-shadow: 0 14px 45px rgba(5, 10, 23, 0.26);
}

.step-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(108, 231, 184, 0.35), rgba(106, 169, 255, 0.35));
  font-weight: 600;
  color: #04101b;
}

.step-cta {
  margin-top: clamp(32px, 5vw, 48px);
}

.contrast {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.value-grid {
  display: grid;
  gap: clamp(18px, 4vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 32px);
  display: grid;
  gap: 14px;
  backdrop-filter: blur(18px);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(108, 231, 184, 0.12), rgba(106, 169, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

.value-icon svg {
  width: 28px;
  height: 28px;
}

.value-card p {
  margin: 0;
  color: var(--text-muted);
}

.promotions {
  position: relative;
  overflow: hidden;
}

.promotions::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  width: clamp(260px, 42vw, 360px);
  height: clamp(260px, 42vw, 360px);
  background: radial-gradient(circle, rgba(245, 124, 255, 0.24), transparent 70%);
  z-index: -1;
  filter: blur(18px);
}

.promo-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 56px);
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px rgba(8, 12, 24, 0.38);
}

.promo-card .lead {
  margin-inline: auto;
}

.promo-wheel {
  position: relative;
  width: min(520px, 100%);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

.promo-wheel__base {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 20% 20%, rgba(108, 231, 184, 0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(106, 169, 255, 0.22), transparent 55%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 90px rgba(7, 12, 24, 0.55);
}

.promo-wheel__base::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: conic-gradient(
    from 270deg,
    rgba(108, 231, 184, 0.35) 0deg 120deg,
    rgba(106, 169, 255, 0.3) 120deg 240deg,
    rgba(246, 149, 255, 0.3) 240deg 360deg
  );
  opacity: 0.35;
  pointer-events: none;
}

.promo-wheel__hub {
  position: absolute;
  inset: 32% 32%;
  border-radius: 50%;
  background: rgba(5, 10, 22, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: clamp(15px, 3vw, 18px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
  padding: 0 14px;
  z-index: 2;
}

.promo-segment {
  position: absolute;
  width: min(220px, 70%);
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 10, 22, 0.92);
  box-shadow: 0 18px 50px rgba(6, 12, 22, 0.42);
  display: grid;
  gap: 8px;
  z-index: 3;
  text-align: left;
  color: var(--text-muted);
}

.promo-segment h3 {
  margin: 0;
  font-size: clamp(16px, 2.6vw, 19px);
  color: var(--text);
  letter-spacing: -0.01em;
}

.promo-segment p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.promo-segment::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 48px;
  background: linear-gradient(180deg, rgba(108, 231, 184, 0.6), rgba(106, 169, 255, 0));
  left: 50%;
  transform: translateX(-50%);
  top: -48px;
}

.promo-segment--one {
  top: 4%;
  left: 50%;
  transform: translate(-50%, 0);
}

.promo-segment--two {
  bottom: 6%;
  left: 5%;
}

.promo-segment--three {
  bottom: 6%;
  right: 5%;
}

@media (max-width: 720px) {
  .promo-wheel {
    width: 100%;
    aspect-ratio: auto;
    display: grid;
    gap: 16px;
  }

  .promo-wheel__base,
  .promo-wheel__hub {
    display: none;
  }

  .promo-segment {
    position: relative;
    width: 100%;
    transform: none;
    bottom: auto;
    left: auto;
    right: auto;
    top: auto;
  }

  .promo-segment::before {
    display: none;
  }
}

.promo-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.what-you-get {
  background: rgba(255, 255, 255, 0.015);
}

.benefit-grid {
  display: grid;
  gap: clamp(18px, 4vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: clamp(20px, 4vw, 28px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 60px rgba(6, 12, 22, 0.32);
  backdrop-filter: blur(18px);
}

.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(108, 231, 184, 0.2), rgba(106, 169, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #04111b;
}

.benefit-copy h3 {
  margin: 0;
  font-size: clamp(17px, 2.8vw, 20px);
  color: var(--text);
}

.benefit-copy p {
  margin: 8px 0 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.quiz-section {
  position: relative;
}

.quiz-grid {
  display: grid;
  gap: clamp(32px, 5vw, 48px);
  align-items: start;
}

@media (min-width: 960px) {
  .quiz-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  }
}

.quiz-copy {
  display: grid;
  gap: 18px;
}

.quiz-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: var(--text-muted);
}

.quiz-points strong {
  color: var(--text);
}

.quiz-frame-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(12px, 3vw, 18px);
  box-shadow: 0 36px 90px rgba(6, 10, 20, 0.45);
  backdrop-filter: blur(24px);
}

.quiz-frame-wrap iframe {
  width: 100%;
  border: none;
  border-radius: calc(var(--radius-lg) - 10px);
  min-height: 620px;
  background: #0b0f1d;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 32px);
  display: grid;
  gap: 12px;
}

@media (max-width: 960px) {
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
}

.closing {
  padding-top: clamp(56px, 9vw, 96px);
}

.closing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 64px);
  display: grid;
  box-shadow: 0 24px 80px rgba(8, 12, 24, 0.34);
  gap: 18px;
}

.closing-card .cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.site-footer {
  padding: clamp(40px, 6vw, 72px) 0;
  background: rgba(2, 5, 12, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: clamp(48px, 8vw, 80px);
}

.footer-grid {
  display: grid;
  gap: clamp(24px, 4vw, 36px);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.footer-brand span {
  display: inline-block;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
}

.footer-col {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
}

.footer-col h4 {
  margin: 0 0 8px 0;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-col a {
  color: var(--text-muted);
  font-size: 15px;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-note {
  margin-top: clamp(32px, 4vw, 48px);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

details.menu {
  display: none;
  position: relative;
}

details.menu summary {
  list-style: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  transition: border 0.2s ease, background 0.2s ease;
}

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

details.menu[open] summary {
  border-color: rgba(255, 255, 255, 0.3);
}

.menu-panel {
  position: absolute;
  right: 0;
  margin-top: 14px;
  background: rgba(7, 12, 24, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  gap: 12px;
  min-width: 220px;
  box-shadow: 0 24px 60px rgba(4, 8, 18, 0.45);
  backdrop-filter: blur(18px);
}

.menu-panel a {
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 15px;
}

.menu-panel .btn {
  width: 100%;
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  details.menu {
    display: block;
  }

  .hero {
    padding-top: clamp(56px, 14vw, 96px);
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn,
  .hero-cta .btn-ghost {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .trust-bar {
    grid-template-columns: minmax(0, 1fr);
  }

  .quiz-frame-wrap iframe {
    min-height: 540px;
  }

  .match-card::before {
    inset: auto auto -60% -40%;
  }

  .site-footer {
    margin-top: clamp(32px, 12vw, 60px);
  }
}

@media (max-width: 540px) {
  .container {
    width: 100%;
    padding-inline: clamp(16px, 5vw, 24px);
  }

  .eyebrow {
    letter-spacing: 0.24em;
  }

  .btn {
    font-size: 15px;
    padding: 12px 20px;
  }

  .match-badge {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .match-card__title {
    font-size: 14px;
  }

  .promo-card {
    text-align: left;
  }
}

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