:root {
  color-scheme: light;
  --bg: pink;
  --surface: white;
  --ink: black;
  --muted: black;
  --line: pink;
  --accent: deeppink;
  --accent-dark: deeppink;
  --accent-soft: pink;
  --plum: black;
  --teal: deeppink;
  --gold: hotpink;
  --blue: black;
  --green-soft: pink;
  --blue-soft: pink;
  --app-dark: black;
  --app-dark-2: deeppink;
  --app-panel: pink;
  --app-panel-2: hotpink;
  --app-hot: deeppink;
  --app-hot-2: hotpink;
  --section-y: clamp(92px, 10vw, 138px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: deeppink black;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: black;
}

::-webkit-scrollbar-thumb {
  border: 2px solid black;
  border-radius: 999px;
  background: deeppink;
}

::-webkit-scrollbar-thumb:hover {
  background: hotpink;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 20, 147, 0.78) 0%, rgba(255, 20, 147, 0.38) 22rem, transparent 44rem),
    radial-gradient(circle at 12% 42%, rgba(255, 105, 180, 0.34), transparent 30rem),
    radial-gradient(circle at 88% 64%, rgba(255, 105, 180, 0.24), transparent 28rem),
    linear-gradient(180deg, black 0%, black 46%, black 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background-attachment: fixed;
}

.ambient-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: black;
}

.ambient-background__layer,
.ambient-background__shade {
  position: absolute;
  inset: 0;
}

.ambient-background__layer {
  opacity: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.08);
  transition: opacity 1800ms ease, transform 9000ms ease;
}

.ambient-background__layer.is-active {
  opacity: 0.36;
  transform: scale(1.14);
}

.ambient-background__shade {
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 20, 147, 0.58) 0%, rgba(255, 20, 147, 0.28) 22rem, transparent 44rem),
    radial-gradient(circle at 12% 42%, rgba(255, 105, 180, 0.2), transparent 30rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.92) 72%, black 100%);
}

.site-header,
main,
.site-footer,
.age-gate {
  position: relative;
  z-index: 1;
}

.age-gate-open,
.age-gate-open body {
  overflow: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: transparent;
  border-bottom: 0;
  backdrop-filter: blur(14px);
}

.brand,
.site-header nav,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid hotpink;
  border-radius: 50%;
  background: black;
  color: white;
  font-size: 1.28rem;
  font-weight: 950;
  line-height: 1;
}

.brand img {
  border-radius: 9px;
}

.footer-mark {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  font-size: 0.95rem;
  vertical-align: middle;
}

.site-header nav {
  justify-content: center;
  gap: 24px;
  color: rgba(255, 236, 248, 0.78);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-header nav a,
.site-footer a {
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer a:hover {
  color: var(--app-hot-2);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 11px 18px;
  font-weight: 800;
  text-decoration: none;
}

.header-cta,
.button.primary {
  background: linear-gradient(180deg, var(--app-hot-2), #f02aa0);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 20, 147, 0.32);
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--plum);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  max-width: 1180px;
  min-height: calc(100vh - 70px);
  margin: 18px auto 0;
  padding: 50px clamp(16px, 4vw, 32px) clamp(72px, 8vw, 108px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) clamp(16px, 4vw, 32px) 48px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: hotpink !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--plum);
  font-size: clamp(3.8rem, 13vw, 8.25rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: white;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 8px;
  color: var(--plum);
  font-size: 1.2rem;
}

.lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: black;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero h1,
.hero .lead {
  color: white;
}

.hero .eyebrow {
  color: hotpink !important;
}

.hero .notice {
  color: pink;
}

.hero-actions,
.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-actions .button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-actions .button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notice {
  margin: 16px 0 0;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 24px;
}

.trust-strip div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid hotpink;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.42);
}

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

.trust-strip strong {
  color: deeppink;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.trust-strip span {
  margin-top: 6px;
  color: white;
  font-size: 0.9rem;
  font-weight: 750;
}

.product-panel {
  overflow: hidden;
  border: 1px solid hotpink;
  border-radius: 24px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 105, 180, 0.28),
    0 26px 70px rgba(9, 0, 7, 0.34),
    0 0 38px rgba(255, 20, 147, 0.22);
}

.product-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.app-gateway-preview {
  overflow: hidden;
  border: 1px solid rgba(255, 105, 180, 0.68);
  border-radius: 20px;
  background: white;
}

.app-gateway-preview img {
  max-height: min(72vh, 720px);
  object-fit: contain;
  object-position: center top;
  background: #f8f7fa;
}

.product-panel--wide .app-gateway-preview {
  background: rgba(0, 0, 0, 0.42);
}

.product-panel--wide .app-gateway-preview img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: min(72vh, 700px);
  object-fit: cover;
  object-position: center;
  background: rgba(0, 0, 0, 0.42);
}

.gateway-title {
  padding: 18px;
  color: var(--plum);
}

.gateway-title strong,
.gateway-title span {
  display: block;
}

.gateway-title strong {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 0.98;
}

.gateway-title span {
  margin-top: 8px;
  color: var(--text-soft, #6f5275);
  font-weight: 750;
}

.visual-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.visual-strip figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fff1f8);
}

.visual-strip img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: center bottom;
  padding: 16px 16px 0;
}

.visual-strip figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(61, 21, 52, 0.86);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--section-y) clamp(16px, 4vw, 32px);
  background: transparent;
  color: white;
}

@media (min-width: 841px) {
  main > .section {
    margin-top: 5vh;
    margin-bottom: 13vh;
  }
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  color: white;
  font-size: 1.08rem;
}

.section h2,
.section > div > h2 {
  color: white;
}

.intro {
  border-top: 0;
}

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

.feature-grid article {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: black;
  transition: border-color 220ms ease;
}

.feature-grid article h3,
.feature-grid article p {
  color: black !important;
}

.theme-page .theme-hero {
  padding-top: 74px;
}

.theme-page .theme-hero h1 {
  font-size: clamp(3.8rem, 11vw, 6rem);
}

.theme-essay .section-heading {
  max-width: 880px;
}

.theme-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.theme-card-grid article,
.theme-panel {
  border: 1px solid hotpink;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.42);
  padding: 24px;
  color: white;
}

.theme-card-grid article h3,
.theme-panel h3 {
  margin-top: 0;
  color: deeppink !important;
}

.theme-card-grid article p,
.theme-panel,
.theme-panel li {
  color: white !important;
}

.theme-disclosure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}

.theme-panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

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

.route-story-list {
  align-self: center;
}

.route-story-list div {
  border-color: hotpink;
}

.theme-page .footer-right {
  gap: 14px;
}

.theme-page .footer-right a {
  width: auto;
  height: auto;
  margin: 0;
  color: #ddd;
  font-size: 0.76rem;
  font-weight: 850;
  text-decoration: underline;
}

.theme-page .footer-right a:hover {
  color: hotpink;
}

.feature-grid p,
.access p,
.split p,
.story-band p,
.modules p,
.safety-strip p,
.route-band p,
.life-fit p,
.community-band p,
.partner-deep p,
.faq p {
  color: white !important;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.access,
.split,
.story-band,
.safety-strip,
.life-fit,
.community-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(20px, 5vw, 60px);
  align-items: center;
  border-top: 0;
}

.story-band {
  align-items: start;
}

.story-copy p {
  max-width: 720px;
}

.story-list {
  display: grid;
  gap: 10px;
}

.story-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transform-origin: center;
  animation: journey-step-focus 8s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.story-list div:nth-child(2) {
  animation-delay: 2s;
}

.story-list div:nth-child(3) {
  animation-delay: 4s;
}

.story-list div:nth-child(4) {
  animation-delay: 6s;
}

.story-list strong,
.story-list span {
  display: block;
}

.story-list strong {
  color: var(--accent-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.story-list span {
  margin-top: 4px;
  color: var(--plum);
  font-weight: 800;
}

@keyframes journey-step-focus {
  0%,
  19% {
    transform: scale(1.07);
    box-shadow: 0 16px 44px rgba(255, 20, 147, 0.36);
  }

  28%,
  100% {
    transform: scale(1);
    box-shadow: none;
  }
}

.modules {
  border-top: 0;
}

.modules .section-heading {
  max-width: 820px;
}

.modules .section-heading h2 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.96;
}

.modules .section-heading p:not(.eyebrow) {
  max-width: 820px;
}

.app-map,
.partner-app {
  border-top: 0;
}

.app-map,
.partner-app {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.sticky-story__copy {
  position: sticky;
  top: 96px;
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sticky-story__copy::after {
  content: "";
  display: block;
  width: 82px;
  height: 4px;
  margin-top: 28px;
  border-radius: 999px;
  background: hotpink;
  box-shadow: 0 0 28px rgba(255, 105, 180, 0.82);
}

.sticky-story__steps {
  padding-top: 12vh;
  padding-bottom: 0;
}

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

.workflow-card {
  position: relative;
  min-height: 240px;
  padding: 34px 28px 30px;
  border: 1px solid rgba(255, 105, 180, 0.42);
  border-radius: 18px;
  background:
    linear-gradient(180deg, #35041ead, rgb(0 0 0 / 92%)),
    url("/assets/parallax/who-is-bambi/00019-833156219.webp");
  background-position: center;
  background-size: cover;
  overflow: hidden;
  transition: border-color 220ms ease;
}

.workflow-card::after {
  display: none;
}

.workflow-card h3 {
  margin: 18px 0 12px;
  color: deeppink !important;
  font-size: 1.34rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.workflow-card p,
.partner-app p {
  color: var(--muted);
}

.workflow-card p {
  font-size: 1.02rem;
  font-weight: 760;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.82);
}

.workflow-card:nth-child(2) {
  background-image:
    linear-gradient(180deg, #35041ead, rgb(0 0 0 / 92%)),
    url("/assets/parallax/who-is-bambi/solo-eyes-closed-on-belly/00044-447436140.webp");
}

.workflow-card:nth-child(3) {
  background-image:
    linear-gradient(180deg, #35041ead, rgb(0 0 0 / 92%)),
    url("/assets/parallax/who-is-bambi/solo-eyes-closed-on-belly/00079-1098097609.webp");
}

.workflow-card:nth-child(4) {
  background-image:
    linear-gradient(180deg, #35041ead, rgb(0 0 0 / 92%)),
    url("/assets/parallax/who-is-bambi/suck-on-dildo/00081-1098097611.webp");
}

.workflow-card:nth-child(5) {
  background-image:
    linear-gradient(180deg, #35041ead, rgb(0 0 0 / 92%)),
    url("/assets/parallax/who-is-bambi/suck-on-dildo/00082-1098097612.webp");
}

.workflow-card:nth-child(6) {
  background-image:
    linear-gradient(180deg, #35041ead, rgb(0 0 0 / 92%)),
    url("/assets/parallax/who-is-bambi/dildo-in-pussy/00203-2572791097.webp");
}

.workflow-card:nth-child(7) {
  background-image:
    linear-gradient(180deg, #35041ead, rgb(0 0 0 / 92%)),
    url("/assets/parallax/who-is-bambi/getting-fucked-from-behind/00352-4017967268.webp");
}

.workflow-card:nth-child(8) {
  background-image:
    linear-gradient(180deg, #35041ead, rgb(0 0 0 / 92%)),
    url("/assets/parallax/who-is-bambi/fuck-two-guys/00065-2791854328.webp");
}

.workflow-card:nth-child(9) {
  background-image:
    linear-gradient(180deg, #35041ead, rgb(0 0 0 / 92%)),
    url("/assets/parallax/who-is-bambi/suck-cock/00227-1031025036.webp");
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: white;
  color: black !important;
  text-shadow: none;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.module-grid,
.route-grid,
.partner-grid {
  display: grid;
  gap: 14px;
}

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

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

.module-grid article,
.route-grid article,
.partner-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fff6fb);
  color: black;
}

.module-grid article h3,
.module-grid article p,
.route-grid article h3,
.route-grid article p,
.partner-grid article h3,
.partner-grid article p,
.story-list div,
.story-list span,
.community-stats div,
.community-stats span,
details,
details p,
summary {
  color: black !important;
}

.route-grid article {
  padding: 0 0 22px;
  overflow: hidden;
}

.route-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-bottom: 0;
}

.route-grid h3,
.route-grid p {
  padding-inline: 20px;
}

.module-grid article {
  overflow: hidden;
  min-height: 360px;
  padding: 0 0 24px;
  border: 1px solid rgba(255, 20, 147, 0.28);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.42);
  transition: border-color 220ms ease;
}

.module-grid img {
  display: block;
  width: 100%;
  height: 180px;
  margin: 0 0 8px;
  object-fit: contain;
  object-position: center bottom;
  padding: 10px 10px 0;
  background: rgba(0, 0, 0, 0.42);
  border-bottom: 0;
}

.module-grid h3,
.module-grid p {
  padding-inline: 22px;
}

.module-grid article h3,
.module-grid article p {
  color: white !important;
}

.module-grid article h3 {
  color: hotpink !important;
}

.route-band,
.partner-deep {
  border-top: 0;
}

.partner-deep .eyebrow {
  color: hotpink !important;
}

.partner-app .eyebrow {
  color: hotpink !important;
}

.partner-deep .section-heading {
  max-width: 820px;
}

.partner-deep .partner-grid {
  gap: 16px;
}

.partner-deep .partner-grid article {
  min-height: 245px;
  border: 1px solid hotpink;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.42);
  color: white;
  box-shadow: 0 0 28px rgba(255, 20, 147, 0.08);
}

.partner-deep .partner-grid article h3 {
  color: deeppink !important;
  font-size: 1.22rem;
}

.partner-deep .partner-grid article p {
  color: white !important;
  font-size: 1rem;
}

.studio-layout {
  display: block;
}

.studio-rail {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.studio-rail span {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 850;
}

.studio-rail span:nth-child(2n) {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

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

.studio-grid article {
  min-height: 245px;
  padding: 34px 28px 30px;
  border: 1px solid hotpink;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #35041ead, rgb(0 0 0 / 92%)),
    url("/assets/parallax/who-is-bambi/00019-833156219.webp");
  background-position: center;
  background-size: cover;
  transition: border-color 220ms ease;
}

.studio-grid article:nth-child(2) {
  background-image:
    linear-gradient(180deg, #35041ead, rgb(0 0 0 / 92%)),
    url("/assets/parallax/who-is-bambi/00042-833156242.webp");
}

.studio-grid article:nth-child(3) {
  background-image:
    linear-gradient(180deg, #35041ead, rgb(0 0 0 / 92%)),
    url("/assets/parallax/who-is-bambi/solo-eyes-closed-on-belly/00044-447436140.webp");
}

.studio-grid article:nth-child(4) {
  background-image:
    linear-gradient(180deg, #35041ead, rgb(0 0 0 / 92%)),
    url("/assets/parallax/who-is-bambi/solo-eyes-closed-on-belly/00079-1098097609.webp");
}

.studio-grid article:nth-child(5) {
  background-image:
    linear-gradient(180deg, #35041ead, rgb(0 0 0 / 92%)),
    url("/assets/parallax/who-is-bambi/suck-on-dildo/00081-1098097611.webp");
}

.studio-grid article:nth-child(6) {
  background-image:
    linear-gradient(180deg, #35041ead, rgb(0 0 0 / 92%)),
    url("/assets/parallax/who-is-bambi/suck-on-dildo/00082-1098097612.webp");
}

.studio-grid article:nth-child(7) {
  background-image:
    linear-gradient(180deg, #35041ead, rgb(0 0 0 / 92%)),
    url("/assets/parallax/who-is-bambi/dildo-in-pussy/00203-2572791097.webp");
}

.studio-grid article:nth-child(8) {
  background-image:
    linear-gradient(180deg, #35041ead, rgb(0 0 0 / 92%)),
    url("/assets/parallax/who-is-bambi/getting-fucked-from-behind/00352-4017967268.webp");
}

.workflow-card h3,
.workflow-card p,
.studio-grid article h3,
.studio-grid article p {
  color: white !important;
}

.workflow-card .pill {
  color: black !important;
}

.studio-grid article h3 {
  color: deeppink !important;
  font-size: 1.28rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.app-map .workflow-card h3,
.partner-app .studio-grid article h3 {
  color: deeppink !important;
}

.studio-grid article p {
  font-size: 1rem;
  font-weight: 760;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.82);
}

.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.life-fit {
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1fr);
}

.life-fit .eyebrow {
  color: hotpink !important;
}

.schedule-copy {
  display: grid;
  gap: 28px;
}

.schedule-visual {
  display: grid;
  grid-column: 1 / -1;
  gap: 28px;
}

.daily-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(96px, 1fr));
  gap: 10px;
  padding: 42px 0 8px;
}

.daily-timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 82px;
  height: 4px;
  border-radius: 999px;
  background: deeppink;
  box-shadow: 0 0 28px rgba(255, 20, 147, 0.65);
}

.daily-timeline::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 74px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid deeppink;
  filter: drop-shadow(0 0 14px rgba(255, 20, 147, 0.8));
}

.timeline-start-dot {
  position: absolute;
  left: 14px;
  top: 74px;
  z-index: 1;
  width: 20px;
  height: 20px;
  border: 3px solid deeppink;
  border-radius: 50%;
  background: hotpink;
  box-shadow: 0 0 18px rgba(255, 20, 147, 0.68);
}

.timeline-item {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 132px;
  color: hotpink;
  text-align: center;
  animation: timeline-focus 12s ease-in-out infinite;
}

.timeline-item:nth-child(2) {
  animation-delay: 2s;
}

.timeline-item:nth-child(3) {
  animation-delay: 4s;
}

.timeline-item:nth-child(4) {
  animation-delay: 6s;
}

.timeline-item:nth-child(5) {
  animation-delay: 8s;
}

.timeline-item:nth-child(6) {
  animation-delay: 10s;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 50%;
  width: 16px;
  height: 16px;
  border: 3px solid deeppink;
  border-radius: 50%;
  background: hotpink;
  box-shadow: 0 0 18px rgba(255, 20, 147, 0.68);
  transform: translateX(-50%);
  animation: timeline-dot-focus 12s ease-in-out infinite;
}

.timeline-item:nth-child(2)::after {
  animation-delay: 2s;
}

.timeline-item:nth-child(3)::after {
  animation-delay: 4s;
}

.timeline-item:nth-child(4)::after {
  animation-delay: 6s;
}

.timeline-item:nth-child(5)::after {
  animation-delay: 8s;
}

.timeline-item:nth-child(6)::after {
  animation-delay: 10s;
}

.timeline-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: hotpink;
}

.timeline-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-item strong {
  margin-top: 30px;
  color: inherit;
  font-size: 0.88rem;
  font-weight: 900;
}

.timeline-item span:last-child {
  color: inherit;
  font-weight: 900;
}

.weekly-schedule {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.weekly-day {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 154px;
  border: 1px solid hotpink;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.42);
  padding: 16px 14px;
  animation: weekly-day-focus 14s ease-in-out infinite;
}

.weekly-day:nth-child(2) {
  animation-delay: 2s;
}

.weekly-day:nth-child(3) {
  animation-delay: 4s;
}

.weekly-day:nth-child(4) {
  animation-delay: 6s;
}

.weekly-day:nth-child(5) {
  animation-delay: 8s;
}

.weekly-day:nth-child(6) {
  animation-delay: 10s;
}

.weekly-day:nth-child(7) {
  animation-delay: 12s;
}

.weekly-day strong {
  color: deeppink;
  font-size: 0.88rem;
  font-weight: 900;
}

.weekly-day span {
  position: relative;
  display: grid;
  grid-template-columns: 16px auto;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.82rem;
}

.weekly-day span::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border-radius: 4px;
  background: deeppink;
  box-shadow: inset 0 0 0 2px hotpink;
}

.weekly-day span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 7px;
  height: 4px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  opacity: 0.28;
  transform: translateY(-62%) rotate(-45deg);
  animation: schedule-check-pop 9s steps(1, end) infinite;
}

.weekly-day:nth-child(2) span::after {
  animation-delay: 1.7s;
}

.weekly-day:nth-child(3) span::after {
  animation-delay: 4.1s;
}

.weekly-day:nth-child(4) span::after {
  animation-delay: 2.6s;
}

.weekly-day:nth-child(5) span::after {
  animation-delay: 6.2s;
}

.weekly-day:nth-child(6) span::after {
  animation-delay: 0.9s;
}

.weekly-day:nth-child(7) span::after {
  animation-delay: 7.4s;
}

@keyframes weekly-day-focus {
  0%,
  13% {
    border-color: white;
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.22);
  }

  23%,
  100% {
    border-color: hotpink;
    box-shadow: none;
  }
}

@keyframes timeline-focus {
  0%,
  14% {
    color: white;
    transform: scale(1.08);
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.72);
  }

  24%,
  100% {
    color: hotpink;
    transform: scale(1);
    text-shadow: none;
  }
}

@keyframes timeline-dot-focus {
  0%,
  14% {
    border-color: white;
    background: white;
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.86);
    transform: translateX(-50%) scale(1.26);
  }

  24%,
  100% {
    border-color: deeppink;
    background: hotpink;
    box-shadow: 0 0 18px rgba(255, 20, 147, 0.68);
    transform: translateX(-50%) scale(1);
  }
}

@keyframes timeline-dot-focus-mobile {
  0%,
  14% {
    border-color: white;
    background: white;
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.86);
    transform: translateY(-50%) scale(1.26);
  }

  24%,
  100% {
    border-color: deeppink;
    background: hotpink;
    box-shadow: 0 0 18px rgba(255, 20, 147, 0.68);
    transform: translateY(-50%) scale(1);
  }
}

@keyframes schedule-check-pop {
  0%,
  22%,
  74% {
    opacity: 1;
  }

  23%,
  73% {
    opacity: 0.22;
  }
}

.community-stats {
  display: grid;
  gap: 10px;
}

.community-band .eyebrow {
  color: hotpink !important;
}

.community-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  animation: community-stat-focus 9s ease-in-out infinite;
}

.community-stats div:nth-child(2) {
  animation-delay: 3s;
}

.community-stats div:nth-child(3) {
  animation-delay: 6s;
}

.community-stats strong,
.community-stats span {
  display: block;
}

.community-stats strong {
  color: deeppink !important;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1;
}

.community-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 750;
}

@keyframes community-stat-focus {
  0%,
  20% {
    border-color: hotpink;
    box-shadow: 0 0 28px rgba(255, 105, 180, 0.46);
  }

  31%,
  100% {
    border-color: var(--line);
    box-shadow: none;
  }
}

.route-showcase {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--section-y) 0;
  background: transparent;
}

.route-showcase__inner {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.route-showcase__copy {
  max-width: 980px;
  padding: clamp(26px, 5vw, 44px) clamp(22px, 4vw, 34px) 18px;
}

.route-showcase__copy .eyebrow {
  color: hotpink !important;
}

.route-showcase__copy h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.route-showcase__copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.animated-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
  padding: 18px clamp(22px, 4vw, 34px) clamp(26px, 5vw, 36px);
}

.animated-route-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 124, 199, 0.24);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.42);
  transition: border-color 240ms ease;
}

.workflow-card.is-story-active,
.studio-grid article.is-story-active {
  border-color: hotpink;
  box-shadow: 0 18px 48px rgba(255, 105, 180, 0.18);
}

[data-parallax] {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  [data-parallax],
  .feature-grid article,
  .workflow-card,
  .story-list div,
  .timeline-item,
  .weekly-day,
  .community-stats div,
  .module-grid article,
  .studio-grid article,
  .animated-route-grid article {
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .timeline-item::after,
  .weekly-day span::after {
    animation: none !important;
  }
}

.animated-route-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-bottom: 0;
}

.animated-route-grid div {
  padding: 18px 20px 22px;
}

.animated-route-grid h3 {
  margin: 0 0 12px;
  color: #fff;
}

.animated-route-grid strong {
  display: block;
  color: #ff61b9;
  line-height: 1.2;
}

.animated-route-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.safety-strip {
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr) auto;
}

.access-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.access .eyebrow {
  color: hotpink !important;
}

.access-tiles {
  display: grid;
  gap: 14px;
}

.access-tile {
  display: grid;
  gap: 8px;
  min-height: 132px;
  align-content: center;
  border: 1px solid hotpink;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.42);
  color: white;
  padding: 22px;
  text-decoration: none;
}

.access-tile strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: deeppink;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1;
}

.access-tile strong svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.access-tile span {
  color: white;
  font-size: 0.98rem;
  line-height: 1.45;
}

.access-tile--primary {
  background: linear-gradient(180deg, rgba(255, 20, 147, 0.34), rgba(0, 0, 0, 0.58));
  box-shadow: 0 0 28px rgba(255, 20, 147, 0.18);
}

.faq {
  border-top: 0;
}

details {
  border-top: 0;
  background: rgba(255, 255, 255, 0.62);
}

details:last-child {
  border-bottom: 0;
}

summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--plum);
  font-size: 1.08rem;
  font-weight: 850;
}

details p {
  max-width: 820px;
  margin: -4px 0 20px;
}

.site-footer {
  background: #111;
  color: #ddd;
  padding: 2rem 0;
  display: block;
}

.site-footer .container {
  width: 100%;
  margin: 0;
  padding: 0 clamp(16px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}

.footer-left {
  flex: 1 1 75%;
  max-width: 75%;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: 800;
  text-decoration: none !important;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.site-footer h4 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: white;
}

.site-footer p {
  font-size: 0.9rem;
  margin: 0;
}

.footer-consent {
  margin-top: 1rem;
  max-width: 75vw;
}

.footer-consent h2 {
  margin: 0;
  color: white;
  font-size: 0.92rem;
  line-height: 1.2;
}

.footer-consent p {
  margin-top: 0.15rem;
  color: #cfcfcf;
  font-size: 0.82rem;
  line-height: 1.25;
}

.site-footer a {
  color: #ddd;
  text-decoration: underline;
}

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

.footer-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}

.footer-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-right a {
  margin-left: 1rem;
  display: inline-block;
  width: 24px;
  height: 24px;
  text-decoration: none;
}

.footer-right a svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-right a:hover svg,
.footer-right a:hover svg g,
.footer-right a:hover svg path {
  fill: hotpink !important;
}

.footer-right .reddit-icon {
  width: 40px;
  height: 40px;
  margin-top: -8px;
  margin-left: 5px;
  margin-right: 5px;
}

.footer-seo-links {
  font-size: 9px;
  opacity: 0.7;
  text-align: left;
  margin: 15px auto 0;
  padding: 0 1.25rem;
}

.footer-seo-links h2 {
  margin: 0;
  color: white;
  font-size: 13px;
  line-height: 1.2;
}

.footer-seo-links p {
  margin-top: 0;
  color: white;
  font-size: 13px;
  line-height: 1.25;
}

.footer-link-row {
  color: #838383;
  margin-top: 0.8rem;
  font-size: 0.76rem;
  line-height: 1.45;
}

.footer-link-row a {
  color: #838383;
  text-decoration: underline;
  margin: 0 2px;
  white-space: nowrap;
}

.footer-link-row a:hover {
  text-decoration: underline;
  color: hotpink;
}

.signup-grid {
  padding-top: 20px;
}

.policy-page {
  background: #fff;
}

.legal-information {
  max-width: 980px;
  margin: 0 auto 80px;
  padding: 0 clamp(16px, 4vw, 32px);
}

.legal-information h2 {
  margin-top: 38px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.legal-information h3 {
  margin-top: 24px;
}

.legal-information p,
.legal-information li {
  color: var(--muted);
}

.legal-information a {
  color: var(--accent-dark);
  font-weight: 750;
}

.age-gate[hidden] {
  display: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(32, 13, 29, 0.74);
  backdrop-filter: blur(12px);
}

.age-gate__panel {
  width: min(100%, 560px);
  border: 1px solid rgba(255, 227, 243, 0.7);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 38px);
  background: #fff;
  box-shadow: 0 30px 90px rgba(20, 0, 14, 0.4);
}

.age-gate__panel h2 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: #000 !important;
}

.age-gate__panel p:not(.eyebrow) {
  color: var(--muted);
}

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

@media (max-width: 840px) {
  :root {
    --section-y: clamp(54px, 12vw, 82px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 10px clamp(14px, 4vw, 22px);
  }

  .site-header nav {
    display: none;
  }

  .hero,
  .access,
  .split,
  .story-band,
  .safety-strip,
  .life-fit,
  .community-band,
  .site-footer .container {
    flex-direction: column;
    gap: 1.25rem;
    width: initial;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 0;
    padding: 28px clamp(16px, 5vw, 24px) 64px;
    text-align: left;
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
    line-height: 0.9;
  }

  h2,
  .modules .section-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    line-height: 0.96;
  }

  .lead {
    margin-top: 18px;
    font-size: 1.08rem;
  }

  .hero-actions,
  .access-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button,
  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .trust-strip div {
    min-height: 0;
    padding: 14px;
  }

  .footer-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-actions {
    align-items: center;
  }

  .footer-left,
  .footer-consent {
    max-width: 100%;
  }

  .footer-right a {
    margin: 0.5rem;
  }

  .site-footer h4 {
    font-size: 1.1rem;
  }

  .site-footer p {
    font-size: 0.85rem;
  }

  .product-panel {
    width: min(100%, 460px);
    max-width: 520px;
    justify-self: center;
    border-radius: 18px;
    padding: 8px;
  }

  .app-gateway-preview {
    border-radius: 14px;
  }

  .app-gateway-preview img {
    max-height: 58vh;
  }

  .section,
  .route-showcase {
    padding-left: clamp(16px, 5vw, 24px);
    padding-right: clamp(16px, 5vw, 24px);
  }

  .section-heading {
    max-width: none;
    margin-bottom: 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .module-grid,
  .route-grid,
  .partner-grid,
  .theme-card-grid,
  .workflow-board,
  .visual-strip,
  .animated-route-grid,
  .studio-layout,
  .studio-grid {
    grid-template-columns: 1fr;
  }

  .app-map,
  .partner-app,
  .theme-disclosure {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .daily-timeline {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 8px 0 4px 32px;
  }

  .weekly-schedule {
    display: none;
  }

  .daily-timeline::before {
    left: 12px;
    right: auto;
    top: 26px;
    bottom: 28px;
    width: 4px;
    height: auto;
  }

  .daily-timeline::after {
    left: 4px;
    right: auto;
    top: auto;
    bottom: 14px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 16px solid deeppink;
    border-bottom: 0;
  }

  .timeline-start-dot {
    display: none;
  }

  .timeline-item {
    justify-items: start;
    grid-template-columns: 40px 64px 1fr;
    align-items: center;
    min-height: 56px;
    text-align: left;
  }

  .timeline-item::after {
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    animation-name: timeline-dot-focus-mobile;
  }

  .timeline-item strong {
    margin-top: 0;
  }

  .sticky-story__copy {
    position: static;
    min-height: auto;
  }

  .sticky-story__steps {
    padding-top: 0;
    padding-bottom: 0;
  }

  .route-showcase__inner {
    border-radius: 14px;
  }

  .feature-grid article {
    min-height: 0;
  }

  .module-grid article,
  .animated-route-grid article,
  .workflow-card,
  .studio-grid article,
  .partner-deep .partner-grid article,
  .access-tile {
    border-radius: 16px;
  }

  .module-grid article {
    min-height: 0;
  }

  .module-grid img {
    height: auto;
    max-height: 190px;
    object-fit: contain;
  }

  .workflow-card,
  .studio-grid article {
    min-height: 220px;
    padding: 24px;
  }

  .animated-route-grid {
    gap: 14px;
  }

  .animated-route-grid img {
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .animated-route-grid div {
    padding: 18px;
  }

  .community-band,
  .access,
  .story-band,
  .life-fit {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .community-stats {
    gap: 10px;
  }

  .community-stats div {
    padding: 18px;
  }

  .access-actions,
  .access-tiles {
    justify-content: flex-start;
  }

  .site-footer .container {
    padding: 0 clamp(16px, 4vw, 56px);
    text-align: left;
  }

  .footer-actions {
    align-items: flex-start;
  }

  .footer-right {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .site-header {
    gap: 12px;
    padding-inline: 12px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 22px;
  }

  h1 {
    font-size: clamp(2.85rem, 18vw, 3.8rem);
  }

  h2,
  .modules .section-heading h2 {
    font-size: clamp(2rem, 13vw, 2.95rem);
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  .weekly-schedule {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .weekly-day {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    align-content: center;
    column-gap: 10px;
    row-gap: 6px;
    min-height: 0;
    padding: 12px;
    border-radius: 12px;
  }

  .weekly-day strong {
    grid-row: 1 / span 3;
    align-self: center;
  }

  .weekly-day span {
    display: inline-grid;
    grid-template-columns: 14px auto;
    gap: 6px;
    width: fit-content;
    font-size: 0.78rem;
  }

  .weekly-day span::before {
    width: 14px;
    height: 14px;
    border-radius: 4px;
  }

  .weekly-day span::after {
    left: 3px;
    width: 7px;
    height: 4px;
  }

  .footer-link-row a {
    display: inline-block;
    margin: 2px 3px;
  }
}

.app-map .workflow-board .workflow-card h3,
.partner-app .studio-grid article h3 {
  color: deeppink !important;
}
