* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #07050d;
  --bg2: #130b21;
  --panel: rgba(255, 255, 255, 0.08);
  --panel2: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.52);
  --border: rgba(255, 255, 255, 0.14);
  --pink: #ff4fa3;
  --hot: #ff2f7d;
  --violet: #8b5cff;
  --purple: #5a33ff;
  --gold: #ffd28a;
  --green: #69ff9f;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 79, 163, 0.28), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(139, 92, 255, 0.28), transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(255, 47, 125, 0.16), transparent 38%),
    linear-gradient(135deg, var(--bg), var(--bg2) 55%, #07050d);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hidden {
  display: none !important;
}

a {
  color: inherit;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at center, rgba(255, 79, 163, 0.2), transparent 36%),
    linear-gradient(135deg, #07050d, #130b21);
}

.age-card {
  width: min(470px, 100%);
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: rgba(12, 8, 24, 0.86);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(22px);
}

.brand-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 79, 163, 0.35);
  border-radius: 999px;
  color: #ffd1e7;
  background: rgba(255, 79, 163, 0.12);
  font-weight: 900;
}

.age-card h1 {
  font-size: clamp(2.2rem, 8vw, 4rem);
  letter-spacing: -0.07em;
  line-height: 0.94;
  margin-bottom: 12px;
}

.age-card p,
.age-card small {
  color: var(--muted);
  line-height: 1.55;
}

.age-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 26px 0 18px;
  flex-wrap: wrap;
}

.app {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px min(5vw, 68px);
  border-bottom: 1px solid var(--border);
  background: rgba(7, 5, 13, 0.72);
  backdrop-filter: blur(22px);
}

.logo,
.logo:visited,
.logo:hover,
.logo:active {
  color: white !important;
  text-decoration: none !important;
  font-size: 1.32rem;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.logo span {
  color: var(--pink);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.top-nav a,
.top-nav a:visited,
.top-nav a:hover,
.top-nav a:active {
  color: var(--muted) !important;
  text-decoration: none !important;
  font-size: 0.92rem;
  font-weight: 800;
}

.top-nav a:hover {
  color: white !important;
}

.nav-cta {
  border: 1px solid rgba(255, 79, 163, 0.38);
  color: white;
  background: rgba(255, 79, 163, 0.13);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.screen {
  display: none;
  min-height: calc(100vh - 70px);
  padding: clamp(34px, 6vw, 76px) min(5vw, 68px);
}

.screen.active {
  display: grid;
}

.hero {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: auto;
  padding-bottom: clamp(18px, 3vw, 34px);
}

.eyebrow,
.mini-label {
  color: #ffd1e7;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 79, 163, 0.28);
  border-radius: 999px;
  background: rgba(255, 79, 163, 0.1);
  margin-bottom: 20px;
  text-transform: none;
  letter-spacing: 0;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 7.6vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
  margin-bottom: 22px;
}

.hero-sub {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.26rem);
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: none;
  border-radius: 999px;
  padding: 13px 20px;
  color: white;
  text-decoration: none;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--hot), var(--violet));
  box-shadow: 0 18px 46px rgba(255, 47, 125, 0.32);
}

.btn.glass,
.btn.ghost {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.btn.ghost {
  background: transparent;
}

.btn.big {
  min-height: 54px;
  padding: 15px 25px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
  max-width: 540px;
}

.trust-row div {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 1rem;
  margin-bottom: 4px;
}

.trust-row span {
  color: var(--faint);
  font-size: 0.88rem;
}

.hero-panel,
.quiz-card,
.loading-card,
.results-shell,
.content-card {
  border: 1px solid var(--border);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.115), rgba(255,255,255,.062));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-panel {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 79, 163, 0.22);
  filter: blur(28px);
}

.panel-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.panel-header h2 {
  margin-top: 6px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: -0.055em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(105, 255, 159, 0.1);
  color: #caffdc;
  border: 1px solid rgba(105, 255, 159, 0.22);
  font-weight: 900;
  font-size: 0.82rem;
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.model-stack {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.model-card {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.32), transparent 22%),
    linear-gradient(135deg, rgba(255, 79, 163, 0.74), rgba(139, 92, 255, 0.72));
}

.card-two {
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.28), transparent 22%),
    linear-gradient(135deg, rgba(255, 210, 138, 0.7), rgba(255, 47, 125, 0.74));
}

.card-three {
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.28), transparent 22%),
    linear-gradient(135deg, rgba(126, 252, 255, 0.62), rgba(90, 51, 255, 0.78));
}

.model-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -30px;
  width: 118px;
  height: 154px;
  border-radius: 60px 60px 18px 18px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}

.model-card::before {
  content: "";
  position: absolute;
  right: 46px;
  bottom: 92px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.model-meta {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
}

.model-meta span,
.model-meta strong {
  display: block;
}

.model-meta span {
  color: rgba(255,255,255,.74);
  font-size: 0.88rem;
  margin-bottom: 3px;
}

.model-meta strong {
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.mini-feed {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.feed-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.feed-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 79, 163, 0.15);
  color: #ffd1e7;
  font-weight: 950;
}

.feed-item p {
  color: var(--muted);
  line-height: 1.42;
  font-size: 0.95rem;
}

.quiz,
.loading,
.results,
.content-page {
  place-items: center;
}

.quiz-card {
  width: min(900px, 100%);
  padding: clamp(22px, 4vw, 44px);
}

.quiz-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.quiz-top h2,
.loading-card h2,
.results-header h2,
.content-card h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

#stepCounter {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 900;
}

.progress {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.1);
  margin-bottom: 28px;
}

#progressBar {
  height: 100%;
  width: 33.33%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--hot), var(--violet));
  transition: width .25s ease;
}

.question {
  display: none;
}

.question.active {
  display: block;
}

.question-text {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

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

.option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 17px;
  background: rgba(255,255,255,.075);
  color: white;
  text-align: left;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.option:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 79, 163, 0.42);
  background: rgba(255,255,255,.12);
}

.option span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 13px;
  background: rgba(255, 79, 163, 0.14);
}

.loading-card {
  width: min(560px, 100%);
  padding: clamp(28px, 5vw, 50px);
  text-align: center;
}

.match-orb {
  position: relative;
  width: 116px;
  height: 116px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.2), rgba(255,79,163,.18), transparent 66%);
}

.match-orb span {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 79, 163, 0.34);
  animation: pulse 1.4s ease-in-out infinite;
}

.match-orb span:nth-child(2) {
  inset: 25px;
  border-color: rgba(139, 92, 255, 0.42);
  animation-delay: .18s;
}

.match-orb span:nth-child(3) {
  inset: 42px;
  border-color: rgba(255, 210, 138, 0.42);
  animation-delay: .36s;
}

@keyframes pulse {
  0%, 100% { transform: scale(.95); opacity: .7; }
  50% { transform: scale(1.08); opacity: 1; }
}

.loading-card p,
.results-header p,
.results-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.results-shell {
  width: min(1120px, 100%);
  padding: clamp(24px, 4vw, 46px);
}

.results-header {
  max-width: 820px;
  margin-bottom: 26px;
}

.results-header .eyebrow {
  margin-bottom: 16px;
}

.result-grid {
  display: grid;
  grid-template-columns: 1.12fr .94fr .94fr;
  gap: 16px;
}

.result-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255,255,255,.065);
  overflow: hidden;
}

.result-card.featured {
  border-color: rgba(255, 79, 163, 0.36);
  background: linear-gradient(180deg, rgba(255, 79, 163, 0.13), rgba(255,255,255,.065));
}

.result-ribbon {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 79, 163, 0.86);
  font-size: 0.76rem;
  font-weight: 950;
}

.result-art {
  height: 160px;
  border-radius: 24px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.14);
}

.art-one {
  background:
    radial-gradient(circle at 72% 28%, rgba(255,255,255,.27), transparent 14%),
    linear-gradient(135deg, rgba(255,47,125,.76), rgba(139,92,255,.74));
}

.art-two {
  background:
    radial-gradient(circle at 72% 28%, rgba(255,255,255,.24), transparent 14%),
    linear-gradient(135deg, rgba(255,210,138,.7), rgba(255,79,163,.72));
}

.art-three {
  background:
    radial-gradient(circle at 72% 28%, rgba(255,255,255,.24), transparent 14%),
    linear-gradient(135deg, rgba(126,252,255,.64), rgba(90,51,255,.75));
}

.result-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.035em;
  margin-bottom: 8px;
}

.result-card p {
  color: var(--muted);
  line-height: 1.58;
  margin-bottom: 18px;
}

.result-card .btn {
  margin-top: auto;
  width: 100%;
}

.results-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.seo-strip {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 28px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(10px, 2vw, 18px) min(5vw, 68px) 70px;
}

.seo-strip h2 {
  font-size: clamp(1.8rem, 3.8vw, 3.3rem);
  line-height: .96;
  letter-spacing: -0.065em;
  margin-top: 8px;
}

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

.seo-link-grid a,
.seo-link-grid a:visited {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,.065);
  color: white;
  text-decoration: none;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease;
}

.seo-link-grid a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.1);
}

.content-page {
  min-height: calc(100vh - 70px);
  padding: clamp(34px, 6vw, 76px) min(5vw, 68px);
}

.content-card {
  width: min(980px, 100%);
  padding: clamp(24px, 5vw, 52px);
}

.content-card h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.content-card ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.content-card .btn {
  margin-top: 10px;
}

footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

footer a,
footer a:visited {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .seo-strip,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 640px;
  }

  .card-two,
  .card-three {
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 16px;
  }

  .top-nav {
    gap: 10px;
  }

  .top-nav a {
    display: none;
  }

  .screen {
    padding: 32px 16px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .trust-row,
  .option-grid,
  .seo-link-grid {
    grid-template-columns: 1fr;
  }

  .quiz-top {
    flex-direction: column;
  }

  .result-card {
    min-height: auto;
  }

  .results-footer .btn {
    width: 100%;
  }
}* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #07050d;
  --bg2: #130b21;
  --panel: rgba(255, 255, 255, 0.08);
  --panel2: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.52);
  --border: rgba(255, 255, 255, 0.14);
  --pink: #ff4fa3;
  --hot: #ff2f7d;
  --violet: #8b5cff;
  --purple: #5a33ff;
  --gold: #ffd28a;
  --green: #69ff9f;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 79, 163, 0.28), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(139, 92, 255, 0.28), transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(255, 47, 125, 0.16), transparent 38%),
    linear-gradient(135deg, var(--bg), var(--bg2) 55%, #07050d);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hidden {
  display: none !important;
}

a {
  color: inherit;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at center, rgba(255, 79, 163, 0.2), transparent 36%),
    linear-gradient(135deg, #07050d, #130b21);
}

.age-card {
  width: min(470px, 100%);
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: rgba(12, 8, 24, 0.86);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(22px);
}

.brand-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 79, 163, 0.35);
  border-radius: 999px;
  color: #ffd1e7;
  background: rgba(255, 79, 163, 0.12);
  font-weight: 900;
}

.age-card h1 {
  font-size: clamp(2.2rem, 8vw, 4rem);
  letter-spacing: -0.07em;
  line-height: 0.94;
  margin-bottom: 12px;
}

.age-card p,
.age-card small {
  color: var(--muted);
  line-height: 1.55;
}

.age-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 26px 0 18px;
  flex-wrap: wrap;
}

.app {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px min(5vw, 68px);
  border-bottom: 1px solid var(--border);
  background: rgba(7, 5, 13, 0.72);
  backdrop-filter: blur(22px);
}

.logo,
.logo:visited,
.logo:hover,
.logo:active {
  color: white !important;
  text-decoration: none !important;
  font-size: 1.32rem;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.logo span {
  color: var(--pink);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.top-nav a,
.top-nav a:visited,
.top-nav a:hover,
.top-nav a:active {
  color: var(--muted) !important;
  text-decoration: none !important;
  font-size: 0.92rem;
  font-weight: 800;
}

.top-nav a:hover {
  color: white !important;
}

.nav-cta {
  border: 1px solid rgba(255, 79, 163, 0.38);
  color: white;
  background: rgba(255, 79, 163, 0.13);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.screen {
  display: none;
  min-height: calc(100vh - 70px);
  padding: clamp(34px, 6vw, 76px) min(5vw, 68px);
}

.screen.active {
  display: grid;
}

.hero {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.eyebrow,
.mini-label {
  color: #ffd1e7;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 79, 163, 0.28);
  border-radius: 999px;
  background: rgba(255, 79, 163, 0.1);
  margin-bottom: 20px;
  text-transform: none;
  letter-spacing: 0;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 7.6vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
  margin-bottom: 22px;
}

.hero-sub {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.26rem);
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: none;
  border-radius: 999px;
  padding: 13px 20px;
  color: white;
  text-decoration: none;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--hot), var(--violet));
  box-shadow: 0 18px 46px rgba(255, 47, 125, 0.32);
}

.btn.glass,
.btn.ghost {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.btn.ghost {
  background: transparent;
}

.btn.big {
  min-height: 54px;
  padding: 15px 25px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
  max-width: 540px;
}

.trust-row div {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 1rem;
  margin-bottom: 4px;
}

.trust-row span {
  color: var(--faint);
  font-size: 0.88rem;
}

.hero-panel,
.quiz-card,
.loading-card,
.results-shell,
.content-card {
  border: 1px solid var(--border);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.115), rgba(255,255,255,.062));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-panel {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 79, 163, 0.22);
  filter: blur(28px);
}

.panel-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.panel-header h2 {
  margin-top: 6px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: -0.055em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(105, 255, 159, 0.1);
  color: #caffdc;
  border: 1px solid rgba(105, 255, 159, 0.22);
  font-weight: 900;
  font-size: 0.82rem;
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.model-stack {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.model-card {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.32), transparent 22%),
    linear-gradient(135deg, rgba(255, 79, 163, 0.74), rgba(139, 92, 255, 0.72));
}

.card-two {
  transform: none;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.28), transparent 22%),
    linear-gradient(135deg, rgba(255, 210, 138, 0.7), rgba(255, 47, 125, 0.74));
}

.card-three {
  transform: none;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.28), transparent 22%),
    linear-gradient(135deg, rgba(126, 252, 255, 0.62), rgba(90, 51, 255, 0.78));
}

.model-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -30px;
  width: 118px;
  height: 154px;
  border-radius: 60px 60px 18px 18px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}

.model-card::before {
  content: "";
  position: absolute;
  right: 46px;
  bottom: 92px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.model-meta {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
}

.model-meta span,
.model-meta strong {
  display: block;
}

.model-meta span {
  color: rgba(255,255,255,.74);
  font-size: 0.88rem;
  margin-bottom: 3px;
}

.model-meta strong {
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.mini-feed {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.feed-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.feed-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 79, 163, 0.15);
  color: #ffd1e7;
  font-weight: 950;
}

.feed-item p {
  color: var(--muted);
  line-height: 1.42;
  font-size: 0.95rem;
}

.quiz,
.loading,
.results,
.content-page {
  place-items: center;
}

.quiz-card {
  width: min(900px, 100%);
  padding: clamp(22px, 4vw, 44px);
}

.quiz-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.quiz-top h2,
.loading-card h2,
.results-header h2,
.content-card h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

#stepCounter {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 900;
}

.progress {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.1);
  margin-bottom: 28px;
}

#progressBar {
  height: 100%;
  width: 33.33%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--hot), var(--violet));
  transition: width .25s ease;
}

.question {
  display: none;
}

.question.active {
  display: block;
}

.question-text {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

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

.option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 17px;
  background: rgba(255,255,255,.075);
  color: white;
  text-align: left;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.option:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 79, 163, 0.42);
  background: rgba(255,255,255,.12);
}

.option span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 13px;
  background: rgba(255, 79, 163, 0.14);
}

.loading-card {
  width: min(560px, 100%);
  padding: clamp(28px, 5vw, 50px);
  text-align: center;
}

.match-orb {
  position: relative;
  width: 116px;
  height: 116px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.2), rgba(255,79,163,.18), transparent 66%);
}

.match-orb span {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 79, 163, 0.34);
  animation: pulse 1.4s ease-in-out infinite;
}

.match-orb span:nth-child(2) {
  inset: 25px;
  border-color: rgba(139, 92, 255, 0.42);
  animation-delay: .18s;
}

.match-orb span:nth-child(3) {
  inset: 42px;
  border-color: rgba(255, 210, 138, 0.42);
  animation-delay: .36s;
}

@keyframes pulse {
  0%, 100% { transform: scale(.95); opacity: .7; }
  50% { transform: scale(1.08); opacity: 1; }
}

.loading-card p,
.results-header p,
.results-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.results-shell {
  width: min(1120px, 100%);
  padding: clamp(24px, 4vw, 46px);
}

.results-header {
  max-width: 820px;
  margin-bottom: 26px;
}

.results-header .eyebrow {
  margin-bottom: 16px;
}

.result-grid {
  display: grid;
  grid-template-columns: 1.12fr .94fr .94fr;
  gap: 16px;
}

.result-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255,255,255,.065);
  overflow: hidden;
}

.result-card.featured {
  border-color: rgba(255, 79, 163, 0.36);
  background: linear-gradient(180deg, rgba(255, 79, 163, 0.13), rgba(255,255,255,.065));
}

.result-ribbon {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 79, 163, 0.86);
  font-size: 0.76rem;
  font-weight: 950;
}

.result-art {
  height: 160px;
  border-radius: 24px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.14);
}

.art-one {
  background:
    radial-gradient(circle at 72% 28%, rgba(255,255,255,.27), transparent 14%),
    linear-gradient(135deg, rgba(255,47,125,.76), rgba(139,92,255,.74));
}

.art-two {
  background:
    radial-gradient(circle at 72% 28%, rgba(255,255,255,.24), transparent 14%),
    linear-gradient(135deg, rgba(255,210,138,.7), rgba(255,79,163,.72));
}

.art-three {
  background:
    radial-gradient(circle at 72% 28%, rgba(255,255,255,.24), transparent 14%),
    linear-gradient(135deg, rgba(126,252,255,.64), rgba(90,51,255,.75));
}

.result-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.035em;
  margin-bottom: 8px;
}

.result-card p {
  color: var(--muted);
  line-height: 1.58;
  margin-bottom: 18px;
}

.result-card .btn {
  margin-top: auto;
  width: 100%;
}

.results-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.seo-strip {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 28px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px min(5vw, 68px) 70px;
}

.seo-strip h2 {
  font-size: clamp(1.8rem, 3.8vw, 3.3rem);
  line-height: .96;
  letter-spacing: -0.065em;
  margin-top: 8px;
}

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

.seo-link-grid a,
.seo-link-grid a:visited {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,.065);
  color: white;
  text-decoration: none;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease;
}

.seo-link-grid a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.1);
}

.content-page {
  min-height: calc(100vh - 70px);
  padding: clamp(34px, 6vw, 76px) min(5vw, 68px);
}

.content-card {
  width: min(980px, 100%);
  padding: clamp(24px, 5vw, 52px);
}

.content-card h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.content-card ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.content-card .btn {
  margin-top: 10px;
}

footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

footer a,
footer a:visited {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .seo-strip,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 640px;
  }

  .card-two,
  .card-three {
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 16px;
  }

  .top-nav {
    gap: 10px;
  }

  .top-nav a {
    display: none;
  }

  .screen {
    padding: 32px 16px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .trust-row,
  .option-grid,
  .seo-link-grid {
    grid-template-columns: 1fr;
  }

  .quiz-top {
    flex-direction: column;
  }

  .result-card {
    min-height: auto;
  }

  .results-footer .btn {
    width: 100%;
  }
}
