:root {
  --bg: #050505;
  --bg-soft: #0d0d0f;
  --bg-card: rgba(18, 18, 20, 0.92);
  --ink: #f5f1ea;
  --muted: #a79f95;
  --muted-strong: #d7cec2;
  --hot: #d81f47;
  --hot-2: #ff4d73;
  --gold: #d5a16c;
  --line: rgba(245, 241, 234, 0.1);
  --line-strong: rgba(245, 241, 234, 0.18);
  --shadow: 0 24px 80px -40px rgba(0, 0, 0, 0.75);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(216, 31, 71, 0.16), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(255, 77, 115, 0.1), transparent 20%),
    linear-gradient(180deg, #030304 0%, #050506 30%, #080809 100%);
  color: var(--ink);
  font-family: "Manrope", "Inter", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.9 0 0 0 0 0.9 0 0 0 0 0.9 0 0 0 0.35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

button,
a {
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.serif {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
}

.italic-serif {
  font-family: "Fraunces", serif;
  font-style: italic;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.site-header {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
}

.live-status,
.badge-18,
.soft-chip {
  border-radius: 999px;
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--hot);
  box-shadow: 0 0 18px rgba(216, 31, 71, 0.9);
}

.badge-18 {
  padding: 9px 14px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hot-2);
  background: rgba(216, 31, 71, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 88px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: 56px;
  align-items: center;
}

.hero-title {
  margin: 0 0 24px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.hero-copy {
  max-width: 560px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-copy strong,
.hero-copy em {
  color: var(--ink);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.button-primary,
.button-secondary,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.button-primary {
  background: linear-gradient(135deg, var(--hot) 0%, var(--hot-2) 100%);
  color: white;
  box-shadow: 0 22px 40px -22px rgba(216, 31, 71, 0.95);
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 28px 50px -24px rgba(216, 31, 71, 0.95);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(216, 31, 71, 0.4);
  color: var(--hot-2);
}

.button-link {
  min-height: auto;
  padding: 0;
  color: var(--muted-strong);
}

.button-link:hover {
  color: var(--ink);
}

.button-primary[aria-disabled="true"] {
  opacity: 0.72;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.avatar-stack {
  display: inline-flex;
  align-items: center;
}

.avatar-stack img {
  width: 32px;
  height: 32px;
  border: 2px solid #050505;
  border-radius: 999px;
  margin-right: -8px;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(135deg, rgba(255, 77, 115, 0.95), rgba(80, 18, 50, 0.95));
  box-shadow: 0 10px 24px -16px rgba(0, 0, 0, 0.9);
}

.hero-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
}

.hero-card__photo {
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: center top;
}

.hero-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.2) 26%, rgba(0, 0, 0, 0.9) 100%);
}

.hero-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
}

.floating-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.floating-ribbon {
  position: absolute;
  top: 28px;
  left: -18px;
  z-index: 2;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--hot);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.stats-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.66);
  overflow: hidden;
}

.marquee {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 20px 0;
  color: var(--muted);
  font-family: "Fraunces", serif;
  font-size: 25px;
  font-style: italic;
  animation: marquee 26s linear infinite;
}

.marquee span strong {
  color: var(--hot-2);
  font-weight: 600;
}

.section {
  padding: 100px 0;
}

.section--tight {
  padding: 84px 0;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.story-grid {
  display: grid;
  gap: 22px;
}

.story-card,
.stat-card,
.doc-card,
.faq-item,
.quick-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.story-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  padding: 24px;
}

.story-card__media {
  position: relative;
  min-height: 240px;
  border-radius: 22px;
  overflow: hidden;
}

.story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card__blur {
  filter: blur(14px) saturate(0.9);
  transform: scale(1.05);
}

.story-card__tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-card__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.story-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
}

.story-card__meta {
  color: var(--muted);
  font-size: 13px;
}

.story-card__heat {
  color: var(--hot-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card h3 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.15;
}

.story-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.soft-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  font-size: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.soft-chip--hot {
  color: var(--hot-2);
  border-color: rgba(216, 31, 71, 0.24);
  background: rgba(216, 31, 71, 0.08);
}

.quote-block {
  padding: 84px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  background:
    radial-gradient(circle at 10% 20%, rgba(216, 31, 71, 0.14), transparent 28%),
    radial-gradient(circle at 90% 30%, rgba(255, 77, 115, 0.08), transparent 24%);
}

.quote-mark {
  margin-bottom: 10px;
  color: var(--hot);
  font-family: "Fraunces", serif;
  font-size: 84px;
  line-height: 1;
}

.quote-text {
  max-width: 760px;
  margin: 0 auto 18px;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.18;
  font-style: italic;
}

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

.stat-card {
  padding: 28px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--hot);
  font-family: "Fraunces", serif;
  font-size: 56px;
  line-height: 1;
}

.stat-card h3 {
  margin: 0 0 10px;
  font-family: "Fraunces", serif;
  font-size: 28px;
  font-weight: 600;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.quick-grid--conversion {
  margin-top: 0;
}

.quick-card {
  padding: 22px;
}

.quick-card__label {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.quick-card__value {
  margin-top: 12px;
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.quick-card__helper {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0 20px;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
}

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

.faq-item p {
  margin: 0;
  padding: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.faq-icon {
  color: var(--hot);
  font-size: 26px;
  line-height: 1;
  transition: transform 0.2s ease;
}

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

.cta-panel {
  position: relative;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 110px 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(216, 31, 71, 0.16), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(255, 77, 115, 0.08), transparent 22%);
}

.cta-panel__body {
  max-width: 800px;
  margin: 0 auto;
}

.cta-panel__copy {
  max-width: 620px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #5ef194;
}

.site-footer {
  background: #030304;
  color: var(--muted);
  font-size: 12px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 28px;
  padding: 50px 0 34px;
}

.site-footer__title {
  margin: 0 0 12px;
  color: white;
  font-size: 15px;
}

.site-footer p,
.site-footer li {
  line-height: 1.85;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: white;
}

.site-footer__bar {
  border-top: 1px solid var(--line);
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.legal-note {
  max-width: 780px;
  line-height: 1.8;
}

.doc-shell {
  padding: 90px 0;
}

.doc-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px;
}

.doc-card h1 {
  margin: 0 0 14px;
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.doc-card h2 {
  margin: 30px 0 12px;
  font-size: 20px;
  color: white;
}

.doc-card p,
.doc-card li {
  color: var(--muted);
  line-height: 1.9;
}

.doc-card ul {
  padding-left: 20px;
}

.doc-meta {
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--muted-strong);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.back-link:hover {
  color: white;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(16px);
}

.age-gate.is-hidden {
  display: none;
}

.age-gate__card {
  width: min(100%, 380px);
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #0a0a0b;
  box-shadow: 0 40px 90px -48px rgba(0, 0, 0, 0.85);
}

.age-gate__content {
  padding: 24px;
}

.age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(216, 31, 71, 0.3);
  background: rgba(216, 31, 71, 0.1);
  color: var(--hot-2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.age-gate__title {
  margin: 0 0 10px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.age-gate__content p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.age-gate__actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.age-gate__notice {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.mobile-download-bar {
  display: none;
}

.mobile-download-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-download-bar__button {
  width: 100%;
  min-height: 58px;
  font-size: 16px;
}

.pulse {
  animation: pulse-shadow 2.2s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes pulse-shadow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(216, 31, 71, 0.46), 0 22px 40px -22px rgba(216, 31, 71, 0.95);
  }
  60% {
    box-shadow: 0 0 0 18px rgba(216, 31, 71, 0), 0 22px 40px -22px rgba(216, 31, 71, 0.95);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .hero {
    padding-top: 52px;
  }

  .hero__grid,
  .story-card,
  .site-footer__grid,
  .quick-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .story-card__media {
    min-height: 340px;
  }

  .site-footer__bar {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header__row {
    padding: 14px 0;
  }

  .hero-copy,
  .cta-panel__copy,
  .section-copy {
    font-size: 16px;
  }

  .hero {
    padding: 34px 0 56px;
  }

  .hero-title {
    font-size: clamp(2.6rem, 13vw, 4rem);
    line-height: 0.94;
  }

  .story-card,
  .stat-card,
  .quick-card,
  .doc-card {
    padding: 18px;
  }

  .hero-card__body {
    padding: 18px;
  }

  .age-gate__content {
    padding: 20px;
  }

  .age-gate__card {
    width: min(100%, 340px);
  }

  .age-gate__actions,
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .button-primary,
  .button-secondary,
  .mobile-download-bar__button {
    min-height: 56px;
  }

  .meta-row {
    gap: 12px;
    font-size: 12px;
  }

  .stats-bar {
    display: none;
  }

  .quick-grid {
    gap: 14px;
  }

  .section,
  .section--tight {
    padding: 56px 0;
  }

  .cta-panel {
    padding: 64px 0;
  }

  .mobile-download-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: block;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.92) 28%, rgba(5, 5, 5, 0.98) 100%);
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(calc(100% + 12px));
    pointer-events: none;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
  }
}
