:root {
  --bg: #150d11;
  --ink: #fff6f2;
  --muted: #c9b5b1;
  --rose: #ff4d8d;
  --rose-2: #ff8eb0;
  --teal: #2fd6b6;
  --gold: #f4c36a;
  --line: rgba(255, 255, 255, 0.11);
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(38, 22, 29, 0.92);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font-family: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--rose), #ffb054);
  color: #fff;
  font-weight: 900;
  font-size: 1.05rem;
  box-shadow: 0 8px 24px rgba(255, 77, 141, 0.35);
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font-weight: 750;
  font-size: 1rem;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--rose), #ff7d9e);
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 77, 141, 0.34);
}

.btn-lg {
  min-height: 58px;
  padding: 0 30px;
  font-size: 1.06rem;
}

.btn-block {
  width: 100%;
}

.text-btn {
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--rose-2);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 64px 18px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.05rem;
  font-weight: 600;
  line-height: 1.08;
}

.section-sub {
  margin: 12px auto 0;
  max-width: 420px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Age gate */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 77, 141, 0.2), transparent 46%),
    #120b0f;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate-inner {
  width: 100%;
  max-width: 400px;
  display: grid;
  gap: 26px;
  justify-items: center;
}

.age-panel {
  width: 100%;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  text-align: center;
}

.age-panel h1 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
}

.age-panel p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.age-badge {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 77, 141, 0.5);
  border-radius: 8px;
  background: rgba(255, 77, 141, 0.14);
  color: var(--rose-2);
  font-size: 1.3rem;
  font-weight: 900;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 13, 17, 0.2) 0%, rgba(21, 13, 17, 0.72) 74%, #150d11 100%),
    url("assets/girl-3.avif") center 22% / cover no-repeat;
  transform: scale(1.02);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 77, 141, 0.22), transparent 42%),
    radial-gradient(circle at 86% 34%, rgba(47, 214, 182, 0.12), transparent 34%);
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 0;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(21, 13, 17, 0.55);
  color: #ffe3e9;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #33e6b4;
  box-shadow: 0 0 0 4px rgba(51, 230, 180, 0.16);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 30px 18px 46px;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.03;
  text-wrap: balance;
}

.hero-copy h1 em {
  color: var(--rose-2);
  font-style: italic;
}

.hero-copy p {
  margin: 14px 0 22px;
  color: #f2dde2;
  font-size: 1.02rem;
  line-height: 1.5;
}

.hero-note {
  margin-top: 14px;
  color: #e7ccd3;
  font-size: 0.82rem;
  font-weight: 650;
}

.chat-teaser {
  width: 100%;
  max-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(28, 17, 22, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.chat-teaser-head,
.chat-window-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.avatar {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #3a2430 center / cover no-repeat;
  box-shadow: 0 0 0 2px rgba(255, 77, 141, 0.45);
}

.chat-teaser-name {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.chat-teaser-name strong {
  font-size: 0.95rem;
}

.chat-teaser-name span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
}

.typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  opacity: 0.9;
}

.typing-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: blink 1.2s ease-in-out infinite;
}

.typing-dots i:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-dots i:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes blink {
  0%, 80%, 100% { opacity: 0.25; }
  40% { opacity: 1; }
}

.chat-teaser-body {
  padding: 16px;
}

.bubble {
  display: inline-block;
  max-width: 88%;
  margin: 0 0 10px;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.bubble:last-child {
  margin-bottom: 0;
}

.bubble-them {
  border-bottom-left-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff1f2;
}

/* Quiz */

.quiz-section {
  background:
    radial-gradient(circle at 14% 4%, rgba(255, 77, 141, 0.12), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(47, 214, 182, 0.08), transparent 28%),
    #170e13;
}

.quiz-shell {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 22px 18px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.quiz-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.quiz-topline span:last-child {
  color: var(--gold);
  text-align: right;
}

.progress {
  height: 6px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-fill {
  height: 100%;
  width: 25%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transition: width 0.35s ease;
}

.quiz-body h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.15;
}

.quiz-options {
  display: grid;
  gap: 12px;
}

.quiz-option {
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.quiz-option:active {
  transform: scale(0.985);
}

.quiz-option:hover {
  border-color: rgba(255, 77, 141, 0.55);
  background: rgba(255, 77, 141, 0.08);
}

.option-icon {
  grid-row: 1 / 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--rose-2);
}

.option-icon svg {
  width: 22px;
  height: 22px;
}

.option-label {
  align-self: end;
  font-size: 1rem;
  font-weight: 800;
}

.option-proof {
  align-self: start;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
}

.quiz-complete {
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

.quiz-complete strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 1.2rem;
}

.quiz-back {
  min-height: 40px;
  display: flex;
  justify-content: center;
  margin-top: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.quiz-back.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Chat result */

.chat-section {
  background: #150d11;
}

.chat-window {
  width: 100%;
  max-width: 640px;
  height: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(24, 15, 19, 0.9);
  box-shadow: var(--shadow);
}

.chat-window-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 16px;
  scroll-behavior: smooth;
}

.chat-actions {
  max-width: 640px;
  margin: 20px auto 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.chat-actions .btn {
  width: 100%;
  opacity: 0.5;
  transform: none !important;
  transition: opacity 0.3s ease;
}

.chat-actions .btn.is-ready {
  opacity: 1;
}

.typing-bubble {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-height: 40px;
}

.typing-bubble span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffd9e3;
  animation: blink 1.1s ease-in-out infinite;
}

.typing-bubble span:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-bubble span:nth-child(3) {
  animation-delay: 0.3s;
}

/* Bottom CTA */

.cta-strip {
  padding: 64px 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 77, 141, 0.2), transparent 52%),
    #170e13;
}

.cta-strip-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-strip h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
}

.cta-strip p {
  margin: 12px 0 24px;
  color: var(--muted);
}

/* Footer */

.footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 34px 18px 44px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

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

.footer p {
  margin: 0;
  color: #8f757c;
  font-size: 0.78rem;
}

@media (min-width: 640px) {
  .section {
    padding: 80px 24px;
  }

  .section-head h2 {
    font-size: 2.6rem;
  }

  .hero-content {
    padding-bottom: 64px;
  }

  .hero-copy h1 {
    font-size: 3.4rem;
  }

  .chat-window {
    height: 460px;
  }
}
