/* Wanderor — premium mystery travel */

:root {
  --bg-deep: #0c0612;
  --bg-mid: #140a1c;
  --surface: rgba(36, 24, 52, 0.65);
  --surface-border: rgba(244, 114, 182, 0.12);
  --text: #f4eef8;
  --text-soft: rgba(244, 238, 248, 0.72);
  --text-faint: rgba(244, 238, 248, 0.45);
  --pink: #f472b6;
  --pink-bright: #fb9ece;
  --pink-deep: #db2777;
  --violet-glow: rgba(139, 92, 246, 0.35);
  --purple-mist: rgba(88, 28, 135, 0.4);
  --radius-card: 28px;
  --radius-btn: 999px;
  --header-h: 4.25rem;
  /* SF Pro for headings only (with robust fallbacks). */
  --font-display: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-pink: 0 0 0 1px rgba(244, 114, 182, 0.25), 0 20px 50px -12px rgba(244, 114, 182, 0.35);
  --story-progress: 0;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-soft);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

#bokeh-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: screen;
}

main {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.65rem 1rem;
  background: var(--pink);
  color: var(--bg-deep);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, 1120px);
  margin-inline: auto;
}

/* ——— Header ——— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(12, 6, 18, 0.92) 0%, rgba(12, 6, 18, 0.75) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(244, 114, 182, 0.08);
}

.header__inner {
  height: 100%;
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 10rem;
}

.logo__img {
  height: 34px;
  width: auto;
  display: block;
}

.logo:hover .logo__img {
  filter: drop-shadow(0 0 18px rgba(244, 114, 182, 0.25));
}

@media (max-width: 860px) {
  .logo__img {
    height: 30px;
  }
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.nav-toggle:hover {
  border-color: rgba(244, 114, 182, 0.35);
  background: rgba(36, 24, 52, 0.9);
}

.nav-toggle__bar {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.35s var(--ease-out);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}

.nav__link:hover {
  color: var(--text);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.65rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    background 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out),
    color 0.4s var(--ease-out);
}

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

.btn--nav {
  padding: 0.65rem 1.35rem;
  font-size: 0.75rem;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: #1a0514;
  box-shadow: 0 4px 24px -4px rgba(244, 114, 182, 0.55);
}

.btn--nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
  filter: brightness(1.08);
}

.btn--primary {
  background: linear-gradient(135deg, var(--pink-bright) 0%, var(--pink) 45%, var(--pink-deep) 100%);
  color: #1a0514;
  box-shadow: 0 8px 32px -8px rgba(244, 114, 182, 0.5);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px -10px rgba(244, 114, 182, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.12);
  filter: brightness(1.05);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(244, 114, 182, 0.35);
}

.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 114, 182, 0.65);
  background: rgba(244, 114, 182, 0.08);
  box-shadow: 0 12px 40px -12px rgba(139, 92, 246, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .btn--nav:hover,
  .btn--primary:hover,
  .btn--ghost:hover {
    transform: none;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem 1.5rem 1.5rem;
    background: rgba(12, 6, 18, 0.97);
    border-bottom: 1px solid rgba(244, 114, 182, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 0.45s var(--ease-out),
      opacity 0.35s var(--ease-out),
      visibility 0.35s;
  }

  .nav.is-open {
    max-height: 320px;
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 1rem;
  }

  .nav__link {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav__list li:last-child .nav__link {
    border-bottom: none;
  }

  .btn--nav {
    text-align: center;
    justify-content: center;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + clamp(3rem, 12vw, 6rem)) 0 clamp(4rem, 10vw, 6rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 80% at 50% -20%, var(--purple-mist), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 50%, var(--violet-glow), transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(219, 39, 119, 0.12), transparent 50%),
    linear-gradient(165deg, var(--bg-deep) 0%, var(--bg-mid) 45%, #0f0820 100%);
}

.hero__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 40%, rgba(244, 114, 182, 0.08), transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.12), transparent 40%);
  pointer-events: none;
  animation: heroGlow 14s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    opacity: 0.7;
    transform: scale(1) translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1.05) translate(2%, -1%);
  }
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__watermark {
  position: absolute;
  right: -16%;
  top: 20%;
  width: min(560px, 60vw);
  height: auto;
  opacity: calc(0.045 + var(--story-progress) * 0.06);
  pointer-events: none;
  z-index: 0;
  filter: blur(calc(1.4px - var(--story-progress) * 0.8px))
    drop-shadow(0 0 35px rgba(244, 114, 182, 0.25));
  transform: translateY(calc(var(--watermark-parallax, 0px) * -1)) rotate(-10deg);
}

.hero__watermark img {
  width: 100%;
  height: auto;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .hero__glow {
    animation: none;
  }
}

.hero__grid {
  position: relative;
  z-index: 1;
}

.hero__card {
  max-width: 58rem;
  padding: clamp(2rem, 5vw, 3.25rem) clamp(1.75rem, 4vw, 3rem);
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-card);
  box-shadow:
    0 4px 0 0 rgba(244, 114, 182, 0.06),
    0 32px 64px -24px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(28px);
  animation: heroEnter 1.1s var(--ease-out) 0.15s forwards;
}

/* Gentle floating hero panel */
.hero__card-float {
  will-change: transform;
  animation: heroFloat 9s ease-in-out 0.6s infinite;
}

@keyframes heroFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-0.35deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes heroEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__card {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero__card-float {
    animation: none;
  }
}

.hero__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.65rem, 7.5vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.hero__title-accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--text) 0%, var(--pink-bright) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__download-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1rem, 3vw, 2rem);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.hero__download-text {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  /* LED-like animated gradient (keeps readability via strong contrast + glow). */
  background: linear-gradient(
    90deg,
    rgba(251, 158, 206, 1) 0%,
    rgba(244, 114, 182, 1) 18%,
    rgba(139, 92, 246, 1) 36%,
    rgba(88, 28, 135, 1) 54%,
    rgba(251, 158, 206, 1) 72%,
    rgba(244, 114, 182, 1) 100%
  );
  background-size: 220% 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 22px rgba(244, 114, 182, 0.28),
    0 0 54px rgba(139, 92, 246, 0.18);
  /* Faster, step-based “color switch” so it feels like premium LED lighting. */
  animation: heroLedShift 0.35s steps(22) infinite;
  font-weight: 400;
  font-family: var(--font-display);
  will-change: background-position, filter;
}

@keyframes heroLedShift {
  from {
    background-position: 0% 50%;
    filter: hue-rotate(0deg) saturate(1.3) brightness(1.06);
  }
  to {
    background-position: 100% 50%;
    filter: hue-rotate(360deg) saturate(1.3) brightness(1.06);
  }
}

.store-badges {
  display: grid;
  gap: 0.75rem;
  min-width: min(100%, 260px);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.62rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(244, 114, 182, 0.24);
  background: rgba(12, 6, 18, 0.72);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out);
}

.store-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-badge__text small {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.store-badge__text strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 114, 182, 0.45);
  background: rgba(20, 10, 30, 0.9);
  box-shadow: 0 12px 28px -14px rgba(244, 114, 182, 0.35);
}

@media (max-width: 760px) {
  .hero__download-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .store-badges {
    min-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-badge:hover {
    transform: none;
  }
}

/* ——— Hero Question Mark ——— */
.hero-question {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  z-index: 1;
}

.hero-question__orbit {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(244, 114, 182, 0.18);
  background: radial-gradient(circle at 30% 25%, rgba(244, 114, 182, 0.14), transparent 55%),
    radial-gradient(circle at 65% 70%, rgba(139, 92, 246, 0.11), transparent 58%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  filter: drop-shadow(0 0 24px rgba(244, 114, 182, 0.12));
  animation: heroQuestionOrbit 10s linear infinite;
}

.hero-question__mark {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroQuestionSpin 26s linear infinite;
  will-change: transform;
  transform-origin: 50% 50%;
}

.hero-question__mark-text {
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, rgba(251, 158, 206, 1) 0%, rgba(244, 114, 182, 1) 34%, rgba(139, 92, 246, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 26px rgba(244, 114, 182, 0.16), 0 0 48px rgba(139, 92, 246, 0.08);
  filter: drop-shadow(0 0 16px rgba(244, 114, 182, 0.18));
}

.hero-question__sparkle {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 55% 15%, rgba(244, 114, 182, 0.26), transparent 50%),
    radial-gradient(circle at 22% 66%, rgba(139, 92, 246, 0.18), transparent 54%);
  opacity: 0.7;
  mix-blend-mode: screen;
  filter: blur(6px);
  animation: heroQuestionPulse 3.6s var(--ease-out) infinite;
  pointer-events: none;
}

@keyframes heroQuestionSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes heroQuestionOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes heroQuestionPulse {
  0% {
    opacity: 0.4;
    transform: translateY(0px);
  }
  50% {
    opacity: 0.75;
    transform: translateY(-2px);
  }
  100% {
    opacity: 0.4;
    transform: translateY(0px);
  }
}

@media (max-width: 760px) {
  .hero-question {
    width: 118px;
    height: 118px;
    align-self: flex-start;
    margin-top: 0.85rem;
    margin-left: 0;
  }

  .hero-question__mark-text {
    font-size: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-question__orbit,
  .hero-question__mark {
    animation-duration: 80s;
  }
}

/* ——— Scroll Motif Question Mark ———
   A persistent, subtle question mark that becomes sharper/more luminous as you scroll.
*/
.story-motif {
  position: fixed;
  right: clamp(-10px, -1vw, 20px);
  top: 18vh;
  width: 220px;
  height: 220px;
  z-index: 0;
  pointer-events: none;
  opacity: calc(0.06 + var(--story-progress) * 0.22);
  transform: translateY(
      calc(var(--story-progress) * -26px + var(--motif-parallax, 0px))
    )
    scale(calc(0.86 + var(--story-progress) * 0.28))
    rotate(calc(-10deg + var(--story-progress) * 10deg));
  filter: blur(calc(10px - var(--story-progress) * 7px));
  transition: opacity 0.25s var(--ease-out);
}

.story-motif__orbit {
  position: absolute;
  inset: 14px;
  border-radius: 999px;
  border: 1px solid rgba(244, 114, 182, 0.16);
  background: radial-gradient(circle at 30% 25%, rgba(244, 114, 182, 0.12), transparent 55%),
    radial-gradient(circle at 65% 70%, rgba(139, 92, 246, 0.1), transparent 58%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  animation: storyMotifOrbit 18s linear infinite;
}

.story-motif__mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: storyMotifSpin 30s linear infinite;
  will-change: transform;
  transform-origin: 50% 50%;
}

.story-motif__mark-text {
  font-family: var(--font-display);
  font-size: 128px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(
    135deg,
    rgba(251, 158, 206, 1) 0%,
    rgba(244, 114, 182, 1) 34%,
    rgba(139, 92, 246, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 26px rgba(244, 114, 182, 0.13),
    0 0 56px rgba(139, 92, 246, 0.08);
}

@keyframes storyMotifSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes storyMotifOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@media (max-width: 860px) {
  .story-motif {
    width: 160px;
    height: 160px;
    right: -28px;
    top: 22vh;
    opacity: calc(0.05 + var(--story-progress) * 0.18);
  }

  .story-motif__mark-text {
    font-size: 98px;
  }
}

/* ——— Form status messages ——— */
.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(244, 114, 182, 0.18);
  background: rgba(20, 10, 30, 0.55);
  color: var(--text-soft);
  line-height: 1.55;
}

.form-status[hidden] {
  display: none;
}

.form-status--success {
  border-color: rgba(244, 114, 182, 0.35);
  box-shadow: 0 0 0 1px rgba(244, 114, 182, 0.15) inset;
}

.form-status--error {
  border-color: rgba(219, 39, 119, 0.4);
}

.contact-form__submit.is-loading {
  opacity: 0.85;
  pointer-events: none;
}

/* ——— Section spacing ——— */
.section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
  scroll-margin-top: var(--header-h);
  position: relative;
  overflow: hidden;
}

.section > .container {
  position: relative;
  z-index: 2;
}

/* ——— Ambient “?” per section ——— */
.ambient-questions {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  mix-blend-mode: screen;
}

.ambient-questions__q {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: calc(var(--size) * 1px);
  line-height: 1;
  color: hsla(var(--h), 95%, 70%, 1);
  opacity: 1;
  filter: blur(calc(var(--blur) * 1px));
  text-shadow: 0 0 calc(var(--glow) * 1px) hsla(var(--h), 95%, 70%, 0.18);
  will-change: transform, opacity;

  animation-name: ambientQFall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes ambientQFall {
  0% {
    transform: translate3d(0, calc(var(--rise) * -1vh), 0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: var(--alpha);
  }
  100% {
    transform: translate3d(calc(var(--dx) * 1px), calc(var(--fall) * 1vh), 0)
      rotate(calc(var(--rot) * 1deg));
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-questions__q {
    animation: none !important;
    opacity: var(--alpha);
  }
}

/* ——— Pricing strip ——— */
.pricing-strip {
  position: relative;
  padding: 1.2rem 0 2.4rem;
  background: radial-gradient(
      ellipse 90% 70% at 50% 0%,
      rgba(244, 114, 182, 0.12),
      transparent 55%
    ),
    linear-gradient(180deg, rgba(12, 6, 18, 0.2) 0%, transparent 100%);
}

.pricing-strip__inner {
  position: relative;
}

.pricing-strip__title {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  font-size: clamp(1.4rem, 3.6vw, 2.05rem);
}

.pricing-strip__pills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 860px) {
  .pricing-strip__pills {
    grid-template-columns: 1fr 1.1fr;
    gap: 1.25rem;
  }
}

.pricing-pill {
  position: relative;
  border-radius: 26px;
  padding: clamp(1.15rem, 3.4vw, 1.7rem) clamp(1.15rem, 3.4vw, 1.7rem);
  background: rgba(22, 14, 32, 0.66);
  border: 1px solid rgba(244, 114, 182, 0.12);
  box-shadow: 0 26px 70px -55px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.pricing-pill--free::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(
    circle at 20% 10%,
    rgba(251, 158, 206, 0.22),
    transparent 55%
  );
  pointer-events: none;
}

.pricing-pill__label {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-bright);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.pricing-pill__value {
  display: block;
  font-size: 1.15rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.pricing-pill__price {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.55rem;
}

.pricing-pill__price-now {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  text-shadow: 0 0 28px rgba(244, 114, 182, 0.22);
}

.pricing-pill__price-was {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(244, 238, 248, 0.55);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(244, 114, 182, 0.55);
}

.pricing-pill--premium {
  background: linear-gradient(
    180deg,
    rgba(244, 114, 182, 0.12) 0%,
    rgba(22, 14, 32, 0.68) 45%,
    rgba(12, 6, 18, 0.6) 100%
  );
  border-color: rgba(244, 114, 182, 0.25);
}

.pricing-pill__value--tokens {
  color: var(--text);
  font-weight: 500;
}

.pricing-pill__shine {
  position: absolute;
  inset: -30% -50%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(251, 158, 206, 0.22) 35%,
    rgba(139, 92, 246, 0.22) 55%,
    transparent 100%
  );
  transform: translateX(-40%);
  animation: pricingShine 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pricingShine {
  0% {
    transform: translateX(-55%) rotate(6deg);
    opacity: 0.35;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateX(55%) rotate(6deg);
    opacity: 0.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-pill__shine {
    animation: none;
  }
}

/* ——— Cookie consent ——— */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 250;
  pointer-events: auto;
  padding: 1rem;
}

.cookie-consent__inner {
  width: min(100%, 1040px);
  margin: 0 auto;
  border-radius: 22px;
  padding: 1.05rem 1.1rem;
  background: rgba(12, 6, 18, 0.78);
  border: 1px solid rgba(244, 114, 182, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 26px 70px -55px rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-consent__text {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.5;
  font-size: 0.98rem;
}

.cookie-consent__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn--cookie {
  border-radius: 999px;
}

.btn--cookie--ghost {
  background: rgba(20, 10, 30, 0.35);
  border-color: rgba(244, 114, 182, 0.2);
}

@media (max-width: 760px) {
  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__actions {
    justify-content: flex-start;
  }
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 114, 182, 0.11), transparent 55%),
    radial-gradient(circle at 80% 12%, rgba(139, 92, 246, 0.1), transparent 60%),
    /* Darken deeper sections progressively (set by JS). */
    linear-gradient(
      180deg,
      rgba(0, 0, 0, calc(0.02 + var(--section-depth, 0) * 0.08)) 0%,
      rgba(0, 0, 0, calc(0.1 + var(--section-depth, 0) * 0.28)) 100%
    );
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  transform: translateY(calc(10px + var(--section-parallax, 0px)));
  filter: blur(18px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
}

.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(139, 92, 246, 0.12) 45%,
    transparent 100%
  );
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  transform: translateY(calc(-10px + var(--section-parallax, 0px)));
  filter: blur(18px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
}

.section.is-section-visible::before,
.section.is-section-visible::after {
  opacity: 0.52;
  transform: translateY(calc(0px + var(--section-parallax, 0px)));
}

/* Keep edges subtle even when sections are visible */
.section.is-section-visible::after {
  opacity: 0.42;
}

@media (prefers-reduced-motion: reduce) {
  .hero__download-text {
    animation: none;
    color: var(--text-soft);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    text-shadow: none;
  }
}

.section > .container {
  transition: transform 0.85s var(--ease-out), filter 0.85s var(--ease-out), opacity 0.85s var(--ease-out);
  transform: translateY(10px);
  opacity: 0.98;
  filter: blur(5px);
}

.section.is-section-visible > .container {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

/* ——— Scroll reveal ——— */
.js-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.95s var(--ease-out),
    transform 0.95s var(--ease-out);
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .section > .container {
    transform: none;
    filter: none;
    transition: none;
  }
}

/* ——— Mystery Protocol ——— */
.protocol {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(88, 28, 135, 0.22), transparent 55%),
    linear-gradient(180deg, #0f0820 0%, var(--bg-deep) 35%, var(--bg-deep) 100%);
  border-top: 1px solid rgba(244, 114, 182, 0.03);
}

.protocol__head {
  max-width: 36rem;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.protocol__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-bright);
}

.protocol__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.protocol__sub {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-faint);
}

.protocol__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .protocol__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.protocol-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.65rem, 3.5vw, 2rem);
  background: rgba(22, 14, 32, 0.85);
  border: 1px solid rgba(244, 114, 182, 0.1);
  border-radius: var(--radius-card);
  box-shadow:
    0 24px 48px -20px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    transform 0.45s var(--ease-out);
}

.protocol-card:hover {
  border-color: rgba(244, 114, 182, 0.22);
  box-shadow:
    0 28px 56px -18px rgba(0, 0, 0, 0.55),
    0 0 40px -20px rgba(244, 114, 182, 0.12);
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  .protocol-card:hover {
    transform: none;
  }
}

.protocol-card__phase {
  margin-top: auto;
  padding-top: 1.35rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.protocol-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.2rem;
  color: var(--pink);
  filter: drop-shadow(0 0 16px rgba(244, 114, 182, 0.35));
}

.protocol-card__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.protocol-card__text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-soft);
}

/* ——— Contact ——— */
.contact {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0a0510 100%);
  border-top: 1px solid rgba(244, 114, 182, 0.03);
}

.contact__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: stretch;
  }
}

.contact__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-bright);
}

.contact__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.contact__lead {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 36ch;
}

.contact__meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__meta-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.contact__link {
  color: var(--pink-bright);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s var(--ease-out);
}

.contact__link:hover {
  color: var(--text);
}

.contact__meta-value {
  font-size: 1.02rem;
  color: var(--text-soft);
}

.contact__form-shell {
  height: 100%;
}

.contact-card {
  height: 100%;
  padding: clamp(1.75rem, 4vw, 2.35rem);
  background: rgba(22, 14, 32, 0.88);
  border: 1px solid rgba(244, 114, 182, 0.12);
  border-radius: var(--radius-card);
  box-shadow:
    0 28px 56px -24px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-form__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  background: rgba(12, 6, 18, 0.65);
  border: 1px solid rgba(244, 114, 182, 0.14);
  border-radius: 16px;
  transition:
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    background 0.35s var(--ease-out);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--text-faint);
  opacity: 0.85;
}

.contact-form__input:hover,
.contact-form__textarea:hover {
  border-color: rgba(244, 114, 182, 0.28);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: rgba(244, 114, 182, 0.45);
  box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.12);
  background: rgba(12, 6, 18, 0.85);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}

.btn--block {
  width: 100%;
  margin-top: 0.25rem;
}

.contact-form__submit {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.contact-form.is-sent .contact-form__submit {
  pointer-events: none;
  opacity: 0.85;
}

/* ——— FAQ ——— */
.faq {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0a0510 100%);
  border-top: 1px solid rgba(244, 114, 182, 0.03);
}

.faq__head {
  max-width: 52rem;
  margin-bottom: clamp(1.6rem, 4.2vw, 2.6rem);
}

.faq__eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-bright);
}

.faq__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.8vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-radius: calc(var(--radius-card) - 6px);
  background: rgba(22, 14, 32, 0.85);
  border: 1px solid rgba(244, 114, 182, 0.12);
  box-shadow: 0 22px 42px -28px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.25rem 1.05rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item__summary {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--text);
  font-size: 1.02rem;
}

.faq-item summary::after {
  content: "+";
  color: var(--pink-bright);
  font-weight: 700;
  font-size: 1.15rem;
  transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
}

details[open].faq-item summary::after {
  content: "−";
}

.faq-item__answer {
  padding: 0 1.35rem 1.15rem;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.98rem;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.45s var(--ease-out),
    transform 0.45s var(--ease-out);
}

details[open].faq-item .faq-item__answer {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__answer {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* ——— Policies ——— */
.policies {
  background: linear-gradient(180deg, #0d0716 0%, #09040f 100%);
  border-top: 1px solid rgba(244, 114, 182, 0.03);
}

.policies__head {
  max-width: 52rem;
  margin-bottom: clamp(1.2rem, 3.6vw, 2rem);
}

.policies__eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-bright);
}

.policies__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.8vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text);
}

.policies__mini-nav {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-start;
  margin: 0 auto clamp(1.4rem, 3vw, 1.8rem);
  padding: 0.85rem 0.9rem;
  border-radius: 18px;
  background: rgba(12, 6, 18, 0.65);
  border: 1px solid rgba(244, 114, 182, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.policies__mini-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 114, 182, 0.18);
  background: rgba(20, 10, 30, 0.35);
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out), background 0.35s var(--ease-out);
}

.policies__mini-nav a:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 114, 182, 0.5);
  background: rgba(20, 10, 30, 0.65);
}

.policies__stack {
  display: grid;
  gap: 1.25rem;
}

.policy-card {
  background: rgba(22, 14, 32, 0.88);
  border: 1px solid rgba(244, 114, 182, 0.12);
  border-radius: var(--radius-card);
  padding: clamp(1.4rem, 3.3vw, 2.1rem);
  box-shadow: 0 28px 56px -26px rgba(0, 0, 0, 0.62);
}

.policy-card__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.policy-card__lead {
  margin: 0 0 1rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.policy-card__lead--pending {
  color: var(--text-faint);
}

.policy-card p {
  margin: 0.75rem 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.policy-card h4 {
  margin: 1.2rem 0 0.35rem;
  color: var(--text);
  font-weight: 650;
  letter-spacing: -0.01em;
}

/* ——— Contact Us ——— */
.contact-us__grid {
  align-items: start;
}

.contact__lead {
  margin-bottom: 1.6rem;
}

.contact-us .contact-card {
  height: 100%;
}


/* ——— Portals Gallery ——— */
.portals {
  background:
    radial-gradient(ellipse 85% 65% at 20% 0%, rgba(139, 92, 246, 0.14), transparent 58%),
    linear-gradient(180deg, #0a0510 0%, #0d0716 100%);
  border-top: 1px solid rgba(244, 114, 182, 0.03);
}

.portals__head {
  margin-bottom: clamp(1.8rem, 5vw, 2.8rem);
}

.portals__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}

.portals__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.portal-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-card) - 4px);
  border: 1px solid rgba(244, 114, 182, 0.14);
  background: #140b1d;
  min-height: 220px;
  box-shadow: 0 20px 42px -20px rgba(0, 0, 0, 0.65);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.portal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.7s var(--ease-out);
}

.portal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 3, 13, 0.08) 20%, rgba(7, 3, 13, 0.44) 100%),
    linear-gradient(120deg, rgba(244, 114, 182, 0.14), transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.portal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px -20px rgba(0, 0, 0, 0.72), 0 0 32px -16px rgba(244, 114, 182, 0.18);
}

.portal-card:hover img {
  transform: scale(1.07);
}

@media (prefers-reduced-motion: reduce) {
  .portal-card:hover {
    transform: none;
  }

  .portal-card:hover img {
    transform: none;
  }
}

@media (min-width: 860px) {
  .portals__grid {
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas:
      "featured tall"
      "smallone smalltwo";
    grid-auto-rows: minmax(210px, auto);
    gap: 1.15rem;
  }

  .portal-card--featured {
    grid-area: featured;
    min-height: 360px;
  }

  .portal-card--tall {
    grid-area: tall;
    min-height: 460px;
  }

  .portal-card--wide {
    min-height: 235px;
  }

  .portal-card--wide:nth-of-type(3) {
    grid-area: smallone;
  }

  .portal-card--wide:nth-of-type(4) {
    grid-area: smalltwo;
  }
}

/* ——— Coming Soon ——— */
.coming-soon {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(244, 114, 182, 0.1), transparent 55%),
    linear-gradient(180deg, #0d0716 0%, #09040f 100%);
  border-top: 1px solid rgba(244, 114, 182, 0.025);
}

.coming-soon__inner {
  text-align: center;
}

.coming-soon__title {
  margin: 0 0 clamp(1.8rem, 4vw, 2.7rem);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3rem);
  color: var(--text);
  letter-spacing: -0.02em;
}

.coming-soon__cards {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.tease-card {
  position: relative;
  min-height: 180px;
  border-radius: calc(var(--radius-card) - 6px);
  overflow: hidden;
  border: 1px solid rgba(244, 114, 182, 0.12);
  box-shadow: 0 22px 42px -24px rgba(0, 0, 0, 0.7);
  transform: translateY(0);
}

.tease-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.6);
}

.tease-card__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(24, 13, 33, 0.5), rgba(10, 5, 17, 0.8)),
    rgba(16, 8, 24, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (min-width: 900px) {
  .coming-soon__cards {
    grid-template-columns: 1.15fr 1fr 1.15fr;
    align-items: center;
    gap: 1.2rem;
  }

  .tease-card--one,
  .tease-card--three {
    min-height: 230px;
    opacity: 0.75;
  }

  .tease-card--two {
    min-height: 280px;
  }
}

/* ——— Policies Accordion (collapsible UI) ——— */
.policy-accordion {
  background: rgba(22, 14, 32, 0.88);
  border: 1px solid rgba(244, 114, 182, 0.12);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 28px 56px -26px rgba(0, 0, 0, 0.62);
  position: relative;
  scroll-margin-top: var(--header-h);
}

.policy-accordion__summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.1rem, 2.2vw, 1.55rem) clamp(1.2rem, 2.5vw, 1.6rem);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.policy-accordion__summary::-webkit-details-marker {
  display: none;
}

.policy-accordion__summary-title {
  font-family: var(--font-display);
  font-weight: 650;
  color: var(--text);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  letter-spacing: -0.02em;
}

.policy-accordion__chevron {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(244, 114, 182, 0.2);
  background: rgba(20, 10, 30, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.policy-accordion__chevron::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(244, 114, 182, 0.75);
  border-bottom: 2px solid rgba(244, 114, 182, 0.75);
  transform: rotate(45deg);
  transition: transform 0.35s var(--ease-out);
}

details.policy-accordion[open] .policy-accordion__chevron::before {
  transform: rotate(-135deg);
}

.policy-accordion__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition:
    max-height 0.5s var(--ease-out),
    opacity 0.35s var(--ease-out),
    transform 0.5s var(--ease-out);
}

details.policy-accordion[open] .policy-accordion__content {
  max-height: 2600px;
  opacity: 1;
  transform: translateY(0);
}

/* Use existing theme styling for policy text, but remove outer card chrome duplication. */
.policy-accordion__content.policy-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: clamp(1.2rem, 2.7vw, 1.7rem) clamp(1.2rem, 2.7vw, 1.7rem)
    clamp(1.25rem, 2.7vw, 2rem);
  border-radius: 0;
}

.policy-accordion__content.policy-card p {
  margin: 0.7rem 0;
}

@media (prefers-reduced-motion: reduce) {
  .policy-accordion__content {
    transition: none;
  }
}

/* ——— Footer ——— */
.footer {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.08) 35%, rgba(12, 6, 18, 0.92) 100%);
  border-top: 1px solid rgba(244, 114, 182, 0.04);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__logo {
  height: 36px;
  width: auto;
}

.footer__tagline {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.footer__heading {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-weight: 650;
  color: var(--text);
  letter-spacing: -0.02em;
  font-size: 1.15rem;
}

.footer__link {
  display: inline-block;
  margin: 0.45rem 0;
  text-decoration: none;
  color: var(--text-soft);
  transition: transform 0.35s var(--ease-out), color 0.35s var(--ease-out), filter 0.35s var(--ease-out);
}

.footer__link:hover {
  transform: translateY(-2px);
  color: var(--text);
  filter: drop-shadow(0 0 16px rgba(244, 114, 182, 0.18));
}

.footer__link--btn {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 114, 182, 0.18);
  background: rgba(20, 10, 30, 0.35);
}

@media (max-width: 860px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}
