:root {
  --ink: #05080f;
  --ink-2: #0b1220;
  --ink-3: #141c2e;
  --gold: #d4af6a;
  --gold-soft: #e8c98a;
  --cream: #f0eadc;
  --muted: #9aa5b6;
  --line: rgba(212, 175, 106, 0.2);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 4vw, 3rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Global sky backdrop — all pages */
.sky {
  position: fixed;
  inset: -4%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
  opacity: 0;
  animation: sky-in 1.4s var(--ease) 0.05s forwards;
}

.sky__stage {
  position: absolute;
  inset: 0;
  animation: sky-drift 48s ease-in-out infinite alternate;
  /* Zoom toward center — origin on the right pushed the zodiac off-screen */
  transform-origin: 48% 42%;
  will-change: transform;
}

.sky__img,
.sky__stage > picture,
.sky__stage > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep wheel as atmosphere behind centered copy */
  object-position: 50% 40%;
  display: block;
}

.sky__stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  opacity: 0.55;
}

.sky__aurora {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 45% 35% at 18% 72%, rgba(212, 175, 106, 0.16), transparent 60%),
    radial-gradient(ellipse 40% 30% at 78% 28%, rgba(110, 140, 200, 0.1), transparent 62%),
    radial-gradient(ellipse 50% 40% at 55% 55%, rgba(212, 175, 106, 0.05), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.7;
  animation: aurora-shift 22s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.sky__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 15, 0.28) 0%, rgba(5, 8, 15, 0.18) 28%, rgba(5, 8, 15, 0.48) 58%, rgba(5, 8, 15, 0.82) 100%),
    radial-gradient(ellipse 70% 55% at 50% 48%, rgba(5, 8, 15, 0.42), transparent 72%);
  animation: veil-breathe 14s ease-in-out infinite alternate;
}

.sky__veil--doc {
  background:
    linear-gradient(180deg, rgba(5, 8, 15, 0.55) 0%, rgba(5, 8, 15, 0.62) 40%, rgba(5, 8, 15, 0.78) 100%),
    linear-gradient(90deg, rgba(5, 8, 15, 0.55) 0%, rgba(5, 8, 15, 0.35) 50%, rgba(5, 8, 15, 0.45) 100%);
}

@keyframes sky-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes sky-drift {
  from { transform: scale(1.04) translate3d(0.3%, 0.5%, 0); }
  to { transform: scale(1.08) translate3d(-1.1%, -0.7%, 0); }
}

/* Laptop / short viewports: keep wheel framed behind copy */
@media (max-width: 1280px) {
  .sky__img,
  .sky__stage > picture,
  .sky__stage > picture img {
    object-position: 48% 38%;
  }
}

@keyframes aurora-shift {
  from { transform: translate3d(-2%, 1%, 0) scale(1); opacity: 0.45; }
  to { transform: translate3d(3%, -2%, 0) scale(1.08); opacity: 0.85; }
}

@keyframes veil-breathe {
  from { opacity: 0.92; }
  to { opacity: 1; }
}

/* Soft page enter */
.page-enter .top,
.page-enter main,
.page-enter .foot,
.page-enter .doc__main {
  animation: page-rise 0.95s var(--ease) both;
}

.page-enter .top { animation-delay: 0.12s; }
.page-enter main,
.page-enter .doc__main { animation-delay: 0.22s; }
.page-enter .foot { animation-delay: 0.4s; }

@keyframes page-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-fade {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  background: var(--ink);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.page-fade.is-on {
  opacity: 1;
  pointer-events: auto;
}

main,
.top,
.foot,
.sticky-cta,
.doc__main {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--cream);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(1100px, 100% - var(--pad) * 2);
  margin-inline: auto;
}

.wrap--narrow {
  width: min(640px, 100% - var(--pad) * 2);
}

/* ——— top ——— */
.top {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem var(--pad);
  pointer-events: none;
}

.top a {
  pointer-events: auto;
  text-decoration: none;
}

.top__right {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.top__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
  pointer-events: auto;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}

.top__brand:hover {
  color: var(--cream);
}

.top__mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 106, 0.28));
}

.top__nav {
  display: flex;
  gap: 1.35rem;
}

.top__nav a {
  color: rgba(240, 234, 220, 0.7);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.25s var(--ease);
}

.top__nav a:hover {
  color: var(--cream);
}

@media (max-width: 560px) {
  .top__nav {
    display: none;
  }
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0.14rem;
  border: 1px solid rgba(240, 234, 220, 0.18);
  border-radius: 999px;
  background: rgba(5, 8, 15, 0.42);
  backdrop-filter: blur(10px);
}

.lang__btn {
  appearance: none;
  border: none;
  background: transparent;
  color: rgba(240, 234, 220, 0.5);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 560;
  letter-spacing: 0.08em;
  padding: 0.38rem 0.5rem;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.lang__btn:hover {
  color: var(--cream);
}

.lang__btn.is-active,
.lang__btn[aria-pressed="true"] {
  color: var(--ink);
  background: var(--gold);
}

/* ——— hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.hero__content {
  width: min(560px, 100% - var(--pad) * 2);
  margin: 0 auto;
  padding: clamp(5.5rem, 12vh, 7rem) 0 clamp(4.5rem, 10vh, 6rem);
  justify-self: center;
  text-align: center;
}

.hero__offer {
  margin: 0.75rem 0 0;
  font-size: 0.86rem;
  line-height: 1.35;
  color: rgba(240, 213, 154, 0.88);
  font-weight: 450;
}

.hero__offer--top {
  margin: 0.85rem 0 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #f0d59a;
}

.hero__sex {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  font-weight: 450;
}

.hero__sex a {
  color: rgba(240, 213, 154, 0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 106, 0.35);
}

.hero__sex a:hover {
  color: #fff;
  border-bottom-color: rgba(240, 213, 154, 0.7);
}

.hero__secondary {
  margin: 0.65rem 0 0;
  font-size: 0.84rem;
  font-weight: 300;
}

.hero__secondary a {
  color: rgba(180, 190, 210, 0.88);
  text-decoration: none;
}

.hero__secondary a:hover {
  color: var(--cream);
}

.demo-quote {
  margin: 1.5rem auto 0;
  max-width: 34rem;
  padding: 0;
  border: 0;
  text-align: center;
}

.demo-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 450;
  line-height: 1.45;
  color: rgba(240, 234, 220, 0.92);
}

.demo-quote cite {
  display: block;
  margin-top: 0.65rem;
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(154, 165, 182, 0.92);
}

.once__item--hot {
  border: 1px solid rgba(212, 175, 106, 0.42);
  border-radius: 4px;
  padding: 1rem 0.9rem 0.95rem;
  margin: 0 0 0.35rem;
  background:
    linear-gradient(180deg, rgba(212, 175, 106, 0.1), transparent 70%),
    rgba(5, 8, 15, 0.28);
}

.block--curator-slim {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.block--curator-slim .curator__text,
.block--curator-slim .block__text {
  margin-bottom: 0.85rem;
  max-width: 36rem;
}

.astras-key {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-left: 2px solid rgba(212, 175, 106, 0.55);
  background: rgba(212, 175, 106, 0.06);
  color: rgba(240, 234, 220, 0.88);
  font-size: 0.92rem;
  line-height: 1.45;
}

.end__hits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  margin: 1.35rem 0 0;
  font-size: 0.88rem;
}

.end__hits a {
  color: rgba(240, 213, 154, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 106, 0.28);
}

.end__hits a:hover {
  color: #fff;
  border-bottom-color: rgba(240, 213, 154, 0.65);
}

.end__hits span {
  color: rgba(154, 165, 182, 0.55);
}

.hero__paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.hero__path {
  padding: 1.1rem 1.05rem 1rem;
  border: 1px solid rgba(212, 175, 106, 0.28);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(212, 175, 106, 0.06), transparent 55%),
    rgba(5, 8, 15, 0.42);
  backdrop-filter: blur(8px);
  text-align: left;
}

.hero__path-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
}

.hero__path-desc {
  margin: 0 0 0.85rem;
  color: rgba(240, 234, 220, 0.72);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.4;
}

.hero__path-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.65rem;
}

.hero__path-cta .btn {
  min-height: 2.65rem;
  padding: 0.62rem 1rem;
  font-size: 0.88rem;
}

.hero__trust {
  margin: 1.1rem 0 0;
  color: rgba(154, 165, 182, 0.92);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.hero__trust--center {
  margin-top: 1.25rem;
}

@media (max-width: 720px) {
  .hero__paths {
    grid-template-columns: 1fr;
  }

  .hero__path {
    text-align: center;
  }

  .hero__path-cta {
    justify-content: center;
  }
}

.hero__content:has(.hero__paths) {
  width: min(680px, 100% - var(--pad) * 2);
}

@media (min-width: 1100px) {
  .hero__content:has(.hero__paths) {
    margin-left: max(var(--pad), calc((100vw - 1100px) / 2));
  }
}

@media (max-width: 720px) {
  .hero__content {
    padding-bottom: clamp(3.5rem, 8vh, 4.5rem);
  }

  .brand-lockup__logo {
    width: min(170px, 48vw);
  }
}

.brand-lockup {
  display: flex;
  justify-content: center;
  margin: 0 0 1rem;
}

.brand-lockup__logo {
  display: block;
  width: min(300px, 58vw);
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45));
  animation: mark-breathe 6s ease-in-out infinite;
}

.hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.8vw, 3.6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--cream);
  text-shadow: 0 2px 28px rgba(5, 8, 15, 0.35);
}

.hero__lead {
  margin: 0 auto 1.55rem;
  max-width: 26rem;
  color: rgba(240, 234, 220, 0.78);
  font-size: clamp(1.02rem, 1.8vw, 1.16rem);
  font-weight: 300;
  line-height: 1.5;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 0.9rem;
  align-items: center;
  justify-content: center;
}

.hero__cta--center {
  justify-content: center;
}

.hero__note {
  margin: 1rem 0 0;
  color: rgba(154, 165, 182, 0.9);
  font-size: 0.86rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.4rem;
  display: grid;
  place-items: start center;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.25s var(--ease);
}

.hero__scroll:hover {
  opacity: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 1.6rem;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scroll-pulse 2.2s var(--ease) infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.55); opacity: 0.35; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

.brand-lockup,
.hero__title,
.hero__lead,
.hero__paths,
.hero__offer,
.hero__sex,
.hero__secondary,
.hero__trust,
.hero__cta,
.hero__note {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 1s var(--ease) forwards;
}

.brand-lockup { animation-delay: 0.06s; }
.hero__title { animation-delay: 0.2s; }
.hero__lead { animation-delay: 0.34s; }
.hero__offer { animation-delay: 0.4s; }
.hero__paths { animation-delay: 0.46s; }
.hero__cta { animation-delay: 0.46s; }
.hero__sex { animation-delay: 0.52s; }
.hero__secondary { animation-delay: 0.56s; }
.hero__trust { animation-delay: 0.58s; }
.hero__note { animation-delay: 0.58s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mark-breathe {
  0%, 100% { filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45)) brightness(1); }
  50% { filter: drop-shadow(0 16px 48px rgba(212, 175, 106, 0.18)) brightness(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-lockup,
  .hero__title,
  .hero__lead,
  .hero__paths,
  .hero__offer,
  .hero__sex,
  .hero__secondary,
  .hero__trust,
  .hero__cta,
  .hero__note,
  .brand-lockup__logo,
  .hero__scroll-line {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .sky,
  .sky__stage,
  .sky__aurora,
  .sky__veil,
  .page-enter .top,
  .page-enter main,
  .page-enter .foot,
  .page-enter .doc__main {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .sky {
    inset: 0;
  }
}

/* ——— buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.78rem 1.4rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 520;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn--gold {
  background: linear-gradient(180deg, #e0bf7a, var(--gold));
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(212, 175, 106, 0.18);
}

.btn--gold:hover {
  background: linear-gradient(180deg, #edd09a, var(--gold-soft));
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(212, 175, 106, 0.28);
}

.btn--ghost {
  background: rgba(240, 234, 220, 0.06);
  color: var(--cream);
  border-color: rgba(240, 234, 220, 0.34);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: rgba(212, 175, 106, 0.1);
}

/* ——— sections ——— */
.block {
  padding: clamp(4.2rem, 9vw, 7rem) 0;
  border-top: 1px solid rgba(55, 70, 95, 0.22);
  background: rgba(5, 8, 15, 0.28);
  backdrop-filter: blur(2px);
}

.block--moment {
  padding: clamp(3.2rem, 7vw, 5rem) 0;
  background: transparent;
  text-align: center;
  border-top: none;
}

.block--demo {
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  background: transparent;
  text-align: center;
  border-top: none;
}

.demo-card {
  margin: 0 auto;
}

.demo-card__frame {
  display: inline-block;
  padding: 0.65rem;
  border-radius: 18px;
  background:
    url("/assets/share-card-sky.png") center / cover no-repeat,
    rgba(5, 8, 15, 0.55);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.demo-card__frame img {
  width: min(280px, 72vw);
  height: auto;
  border-radius: 12px;
  display: block;
  margin-inline: auto;
}

.demo-card__caption {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.block--steps {
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  background: rgba(5, 8, 15, 0.22);
  text-align: center;
}

.block--steps h2 {
  margin-inline: auto;
  max-width: 14ch;
}

.steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: left;
}

.steps__item {
  padding: 1.15rem 1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(5, 8, 15, 0.35);
  display: grid;
  gap: 0.35rem;
}

.steps__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.steps__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
}

.steps__desc {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.landing {
  min-height: 100vh;
}

.landing__main {
  min-height: calc(100svh - 5rem);
  display: grid;
  align-items: center;
  padding: clamp(5rem, 12vh, 7rem) 0 clamp(3rem, 8vh, 4rem);
}

.landing__hero {
  text-align: center;
}

.landing__hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 550;
  line-height: 1.08;
  color: var(--cream);
  max-width: 16ch;
  margin-inline: auto;
}

.landing__lead {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  color: rgba(240, 234, 220, 0.78);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.5;
}

.landing__hero .hero__cta {
  justify-content: center;
}

.landing__hero .hero__trust {
  margin-top: 1.15rem;
}

.landing__back {
  display: inline-block;
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.landing__back:hover {
  color: var(--gold-soft);
}

.daycard {
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 2.6rem) clamp(1.4rem, 4vw, 2.4rem);
  max-width: 34rem;
  border: 1px solid rgba(212, 175, 106, 0.28);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(212, 175, 106, 0.07), transparent 55%),
    rgba(5, 8, 15, 0.45);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.daycard .eyebrow {
  margin-bottom: 0.7rem;
}

.daycard__hours {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.5vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--gold-soft);
  text-shadow: 0 0 48px rgba(212, 175, 106, 0.22);
}

.daycard__label {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 3vw, 1.75rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
}

.daycard__rule {
  width: 3rem;
  height: 1px;
  margin: 1.15rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.daycard__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.block--precise {
  background: rgba(5, 8, 15, 0.32);
}

.block--curator {
  background: rgba(5, 8, 15, 0.22);
}

.curator-page__h2 {
  margin: 2rem 0 0.75rem;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 500;
  color: var(--gold, #d4af6a);
}

.curator-page__list {
  margin-bottom: 0.5rem;
}

.curator-certs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 0.75rem;
  margin: 1.25rem 0 1.75rem;
}

.curator-certs__item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
}

.curator-certs__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 106, 0.28);
  background: rgba(5, 8, 15, 0.45);
}

.curator-certs__item:nth-child(6) img {
  aspect-ratio: 16 / 9;
}

.curator-certs__item span {
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(232, 226, 214, 0.78);
}

@media (max-width: 560px) {
  .curator-certs {
    grid-template-columns: 1fr;
  }
}

.wrap--precise {
  align-items: center;
}

.orbit {
  margin: 0;
  justify-self: center;
  text-align: center;
}

.orbit__svg {
  width: min(270px, 72vw);
  height: auto;
  display: block;
  margin-inline: auto;
}

.orbit__spin {
  animation: orbit-spin 48s linear infinite;
}

.orbit__natal {
  filter: drop-shadow(0 0 8px rgba(236, 230, 214, 0.55));
}

.orbit__transit {
  animation: transit-pulse 3.6s ease-in-out infinite;
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes transit-pulse {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

.orbit__cap {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.orbit__cap span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.orbit__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  display: inline-block;
}

.orbit__dot--natal { background: var(--cream); }
.orbit__dot--transit {
  background: transparent;
  border: 1.5px solid var(--gold-soft);
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  .orbit__spin,
  .orbit__transit {
    animation: none;
  }
}

.block--inside {
  background: rgba(5, 8, 15, 0.22);
}

.inside__lead {
  margin: 0.85rem 0 0;
  max-width: 36rem;
}

.block--once {
  background: rgba(5, 8, 15, 0.28);
}

.once {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}

.once__item {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.once__item:last-child {
  border-bottom: 1px solid var(--line);
}

.once__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.45rem;
}

.once__name {
  color: var(--cream);
  font-weight: 600;
  font-size: 1.05rem;
}

.once__price {
  color: var(--gold-soft);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.once__desc {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.once__cta,
.plans__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
}

.once__more {
  color: var(--gold-soft);
  text-decoration: none;
  font-size: 0.9rem;
}

.once__more:hover {
  color: var(--cream);
}

.btn--sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
}

.block--plans {
  background: rgba(5, 8, 15, 0.36);
}

.plans {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
}

.plans__item {
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.plans__item:last-child {
  border-bottom: 1px solid var(--line);
}

.plans__item--premium {
  border-top-color: rgba(212, 175, 106, 0.55);
  padding-block: 1.7rem;
  background: linear-gradient(90deg, rgba(212, 175, 106, 0.09), transparent 72%);
  margin-inline: -0.85rem;
  padding-inline: 0.85rem;
  border-radius: 2px;
  box-shadow: inset 3px 0 0 var(--gold);
}

.plans__item--kid .plans__name {
  color: var(--cream);
  font-weight: 600;
}

.plans__item--kid .plans__price {
  color: var(--gold-soft);
  font-weight: 600;
}

.plans__item--premium .plans__name {
  color: var(--gold);
}

.plans__item--premium .plans__price,
.plans__item--cabinet .plans__price {
  color: var(--gold-soft);
  font-weight: 600;
}

.plans__item--free .plans__name {
  color: var(--cream);
  font-weight: 500;
}

.plans__item--free .plans__price {
  color: var(--gold-soft);
  font-weight: 550;
}

.plans__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1.25rem;
  margin-bottom: 0.45rem;
}

.plans__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
}

.plans__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 550;
  color: var(--gold-soft);
  font-variant-numeric: tabular-nums;
}

.plans__desc {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.98rem;
  max-width: 36rem;
}

.plans__tiers {
  margin: 0.55rem 0 0;
  color: rgba(226, 197, 138, 0.78);
  font-size: 0.86rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.plans__note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.block--end {
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(212, 175, 106, 0.12), transparent 55%),
    rgba(5, 8, 15, 0.4);
  text-align: center;
}

.end__text {
  margin-inline: auto !important;
  margin-bottom: 1.75rem !important;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.76rem;
  font-weight: 520;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.block h2 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  font-weight: 550;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 15ch;
}

.block--end h2,
.block--voice h2 {
  margin-inline: auto;
  max-width: 18ch;
}

.block--end h2 {
  margin-bottom: 0.85rem;
}

.block__text {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.08rem;
}

.rails {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.rails li {
  display: grid;
  grid-template-columns: minmax(8rem, 13rem) 1fr;
  gap: 1rem 1.75rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}

.rails li:hover {
  background: linear-gradient(90deg, rgba(212, 175, 106, 0.04), transparent 65%);
}

.rails__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
}

.rails__desc {
  color: var(--muted);
  font-weight: 300;
  align-self: center;
}

@media (max-width: 560px) {
  .rails li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(4px);
  transition:
    opacity 0.95s var(--ease),
    transform 0.95s var(--ease),
    filter 0.95s var(--ease);
  transition-delay: var(--d, 0ms);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal--soft {
  transform: translateY(16px);
  filter: none;
}

.wrap--split {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(2rem, 5vw, 3.8rem);
  align-items: center;
}

@media (max-width: 800px) {
  .wrap--split {
    grid-template-columns: 1fr;
  }
}

.device {
  margin: 0;
  justify-self: center;
  position: relative;
}

.device__glow {
  position: absolute;
  inset: 8% -12% -10%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 106, 0.28), transparent 68%);
  filter: blur(22px);
  z-index: -1;
  pointer-events: none;
}

.device__frame {
  padding: 0.55rem;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(236, 230, 214, 0.18), rgba(212, 175, 106, 0.08) 40%, rgba(10, 16, 26, 0.9));
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: rotate(-1.8deg);
  transition: transform 0.55s var(--ease);
}

.device--plans .device__frame {
  transform: rotate(1.8deg);
}

.device:hover .device__frame {
  transform: rotate(0deg) translateY(-6px);
}

.device__frame img {
  width: min(280px, 72vw);
  height: auto;
  border-radius: 22px;
  display: block;
}

.wrap--plans .device {
  align-self: start;
}

@media (min-width: 801px) {
  .wrap--plans .device {
    margin-top: 2.5rem;
  }
}

.block--cabinet {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 55% at 12% 0%, rgba(212, 175, 106, 0.07), transparent 55%),
    rgba(5, 8, 15, 0.18);
}

.block--cabinet h2 {
  max-width: 18ch;
}

.cabinet__lead {
  margin-bottom: 1.75rem;
}

.cabinet__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  border-top: 1px solid var(--line);
  max-width: 36rem;
}

.cabinet__list li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-weight: 350;
  font-size: 1.02rem;
  line-height: 1.45;
  padding-left: 1.15rem;
  position: relative;
}

.cabinet__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
}

.hero__cta--cabinet {
  margin-top: 0;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.cabinet__note {
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.plans__tiers a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 106, 0.35);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.plans__tiers a:hover {
  color: var(--cream);
  border-bottom-color: rgba(240, 234, 220, 0.45);
}

.block--partners {
  text-align: left;
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  background: rgba(5, 8, 15, 0.22);
}

.partners__title {
  max-width: 16ch;
}

.block--partners .block__text {
  margin-bottom: 1.25rem;
}

.partners__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.partners__link {
  color: var(--gold);
  font-size: 1.02rem;
  font-weight: 450;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 106, 0.4);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.partners__link:hover {
  color: var(--cream);
  border-bottom-color: rgba(240, 234, 220, 0.5);
}

.block--voice {
  background: rgba(5, 8, 15, 0.26);
  text-align: center;
  overflow: hidden;
}

.block--voice h2 {
  margin-bottom: 2.25rem;
}

.voices {
  width: min(720px, 100%);
  margin-inline: auto;
}

.voices__viewport {
  overflow: hidden;
  outline: none;
}

.voices__viewport:focus-visible {
  box-shadow: 0 0 0 1px var(--line);
}

.voices__track {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.65s var(--ease);
  will-change: transform;
}

.voices__slide {
  flex: 0 0 100%;
  padding: 0.25rem 0.15rem 0.5rem;
  box-sizing: border-box;
}

.quote {
  margin: 0;
  padding: 0;
  border: none;
  min-height: 9.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.quote::before {
  content: "“";
  position: absolute;
  top: -0.35rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(212, 175, 106, 0.28);
  pointer-events: none;
}

.quote p {
  margin: 1.2rem 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.1vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--cream);
}

.quote footer {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.voices__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.35rem;
}

.voices__progress {
  width: min(14rem, 55%);
  height: 1px;
  margin: 1.75rem auto 0;
  background: rgba(160, 170, 185, 0.28);
  overflow: hidden;
}

.voices__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width 0.55s var(--ease);
}

.voices__btn {
  appearance: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(236, 230, 214, 0.22);
  border-radius: 3px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}

.voices__btn:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.voices__count {
  margin: 0;
  min-width: 4.5rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  .voices__track,
  .voices__progress span {
    transition: none;
  }
}

/* ——— footer ——— */
.foot {
  padding: 2rem 0 calc(2.5rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(55, 70, 95, 0.28);
  background: rgba(5, 8, 15, 0.55);
}

.foot__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: baseline;
}

.foot__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 600;
}

.foot__brand img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 1px 6px rgba(212, 175, 106, 0.22));
}

.foot__meta {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
}

.foot__legal {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(55, 70, 95, 0.3);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.55;
}

.foot__legal p {
  margin: 0 0 0.45rem;
}

.foot__legal a {
  color: var(--muted);
  text-decoration: none;
}

.foot__legal a:hover {
  color: var(--gold-soft);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent, rgba(5, 8, 15, 0.94) 28%);
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sticky-cta[hidden] {
  display: none !important;
}

.sticky-cta__btn {
  width: min(200px, calc(50% - 0.35rem));
  flex: 1 1 auto;
}

@media (min-width: 721px) {
  .sticky-cta {
    display: none !important;
  }
}

body:has(.sticky-cta:not([hidden])) {
  padding-bottom: 4.5rem;
}

.top--solid {
  position: relative;
  background: rgba(5, 8, 15, 0.42);
  border-bottom: 1px solid rgba(55, 70, 95, 0.28);
  backdrop-filter: blur(10px);
}

.doc {
  background: transparent;
  color: var(--cream);
  min-height: 100vh;
}

.doc__main {
  padding: 3rem 0 4rem;
}

.doc__main h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
}

.doc__main h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  max-width: none;
}

.doc__main p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 42rem;
}

.doc__lead {
  color: var(--cream) !important;
  font-size: 1.05rem;
}

.doc__back {
  margin-top: 2.5rem !important;
}


.plans__price--deal {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem 0.55rem;
  text-align: right;
  line-height: 1.2;
}

.plans__badge {
  display: inline-block;
  padding: 0.18rem 0.45rem;
  border-radius: 2px;
  background: rgba(212, 175, 106, 0.22);
  border: 1px solid rgba(212, 175, 106, 0.45);
  color: #f0d59a;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plans__was {
  color: rgba(154, 165, 182, 0.85);
  font-size: 0.88rem;
  font-weight: 450;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.plans__now {
  color: var(--gold-soft);
  font-weight: 650;
  font-size: 1.05em;
}

.plans__promo {
  margin: -0.15rem 0 0.65rem;
  color: rgba(240, 213, 154, 0.82);
  font-size: 0.82rem;
  font-weight: 450;
}
