:root {
  color-scheme: dark;
  --bg: #02030d;
  --panel: #070b24;
  --panel-2: #0a1030;
  --ink: #f3ecdd;
  --muted: #b9b3a6;
  --soft: #d9d3c6;
  --gold: #ecd193;
  --gold-2: #d9a854;
  --gold-3: #b8813a;
  --teal: #8fd8ce;
  --line: rgba(217, 168, 84, 0.34);
  --blue-line: rgba(120, 135, 255, 0.28);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(24, 36, 88, 0.52), transparent 30rem),
    radial-gradient(circle at 88% 24%, rgba(56, 27, 80, 0.32), transparent 34rem),
    #02030d;
  color: var(--ink);
  font-family: Karla, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

#app {
  min-height: 100vh;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.phone {
  position: relative;
  width: min(100vw, 430px);
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(180deg, #070b24 0%, #0a1030 42%, #050818 100%);
  box-shadow: 0 0 0 1px rgba(217, 168, 84, 0.08);
}

.stars,
.stars::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.88;
  background-image:
    radial-gradient(1.6px 1.6px at 12% 8%, rgba(170, 220, 255, 0.9), transparent 60%),
    radial-gradient(1.2px 1.2px at 78% 14%, rgba(255, 255, 255, 0.7), transparent 60%),
    radial-gradient(1.4px 1.4px at 32% 26%, rgba(140, 200, 255, 0.8), transparent 60%),
    radial-gradient(1.1px 1.1px at 88% 38%, rgba(255, 255, 255, 0.6), transparent 60%),
    radial-gradient(1.6px 1.6px at 8% 52%, rgba(170, 220, 255, 0.75), transparent 60%),
    radial-gradient(1.2px 1.2px at 62% 62%, rgba(255, 255, 255, 0.55), transparent 60%),
    radial-gradient(1.5px 1.5px at 22% 78%, rgba(140, 200, 255, 0.7), transparent 60%),
    radial-gradient(1.1px 1.1px at 84% 86%, rgba(255, 255, 255, 0.6), transparent 60%);
  animation: drift 72s linear infinite alternate;
}

.stars::before {
  content: "";
  opacity: 0.45;
  animation-duration: 112s;
  animation-direction: alternate-reverse;
}

.orbital,
.orbital::after {
  position: absolute;
  top: -86px;
  left: 50%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(120, 135, 255, 0.1);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.orbital::after {
  content: "";
  top: 30px;
  width: 360px;
  height: 360px;
  border-style: dashed;
  opacity: 0.8;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  padding: 14px 16px 18px;
  background: linear-gradient(180deg, rgba(4, 6, 20, 0.97) 52%, rgba(4, 6, 20, 0));
}

.brand {
  color: var(--gold);
  font-family: Marcellus, serif;
  font-size: 13px;
  letter-spacing: 3.5px;
  text-align: center;
  text-transform: uppercase;
}

.mark {
  color: rgba(217, 168, 84, 0.72);
  font-size: 14px;
  text-align: right;
}

.back {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(217, 168, 84, 0.48);
  border-radius: 50%;
  background: rgba(10, 14, 40, 0.7);
  color: var(--gold);
  cursor: pointer;
}

.screen {
  position: relative;
  z-index: 1;
  padding: 8px 22px 48px;
}

.eyebrow {
  color: #c99a4b;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-align: center;
  text-transform: uppercase;
}

.hero h1,
.screen-title,
.serif {
  font-family: Marcellus, serif;
  font-weight: 400;
}

.hero h1 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(25px, 7.9vw, 32px);
  line-height: 1.18;
  text-align: center;
}

.hero h1 span {
  white-space: nowrap;
}

.gold {
  color: var(--gold);
}

.teal {
  color: var(--teal);
}

.lede {
  max-width: 320px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}

.motion-shell {
  width: 184px;
  margin: 18px auto 0;
}

.motion-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(217, 168, 84, 0.58);
  border-radius: 16px;
  background: radial-gradient(120% 80% at 50% 15%, #1a2260 0%, #0b1034 55%, #060919 100%);
  box-shadow: 0 0 30px rgba(110, 150, 255, 0.22);
  cursor: pointer;
}

.intro-embed {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #0b0724;
}

.intro-embed.preview,
.intro-embed.fullscreen {
  pointer-events: none;
}

.motion-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: conic-gradient(from 0deg, transparent, rgba(65, 227, 210, 0.35), rgba(255, 79, 163, 0.28), rgba(255, 176, 46, 0.28), transparent);
  filter: blur(24px);
  animation: spin 7s linear infinite;
}

.motion-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #41e3d2, #ff4fa3, #ffb02e);
  opacity: 0.76;
}

.preview-play {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #f2dda6, var(--gold-2));
  box-shadow: 0 0 24px rgba(217, 168, 84, 0.5);
}

.motion-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  text-align: center;
}

.play {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #f2dda6, var(--gold-2));
  box-shadow: 0 0 24px rgba(217, 168, 84, 0.55);
  color: #221605;
  cursor: pointer;
}

.play-triangle {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid #221605;
}

.motion-title {
  color: var(--ink);
  font-family: Marcellus, serif;
  font-size: 17px;
}

.micro {
  color: rgba(185, 179, 166, 0.72);
  font-size: 11.5px;
  line-height: 1.4;
}

.hint {
  margin-top: 8px;
  color: rgba(185, 179, 166, 0.6);
  font-size: 11px;
  text-align: center;
}

.cta {
  display: inline-flex;
  min-height: 52px;
  width: 100%;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #f2dda6, var(--gold-2) 55%, var(--gold-3));
  box-shadow: 0 8px 28px rgba(217, 168, 84, 0.35);
  color: #221605;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.cta.secondary {
  border: 1px solid rgba(217, 168, 84, 0.56);
  background: transparent;
  box-shadow: none;
  color: var(--gold);
}

.under-cta {
  margin-top: 10px;
  color: rgba(185, 179, 166, 0.75);
  font-size: 12px;
  text-align: center;
}

.landing-cta {
  margin-top: 22px;
}

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 38px;
}

.duo-card:nth-child(2) {
  margin-top: 22px;
}

.animal-frame {
  overflow: hidden;
  border: 1px solid rgba(217, 168, 84, 0.42);
  border-radius: 13px;
  animation: breathe 5s ease-in-out infinite;
}

.duo-card:nth-child(2) .animal-frame {
  animation-delay: 1.5s;
}

.duo-copy {
  margin-top: 9px;
  text-align: center;
}

.label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.duo-copy p,
.body-copy {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.quote {
  margin-top: 34px;
  padding: 20px 12px;
  border-top: 1px solid rgba(217, 168, 84, 0.25);
  border-bottom: 1px solid rgba(217, 168, 84, 0.25);
  color: var(--ink);
  font-family: Marcellus, serif;
  font-size: 19px;
  line-height: 1.45;
  text-align: center;
}

.compare {
  margin-top: 34px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.stat {
  min-height: 132px;
  padding: 16px 12px;
  border: 1px solid var(--blue-line);
  border-radius: 12px;
  background: rgba(12, 17, 48, 0.58);
  text-align: center;
}

.stat.featured {
  border-color: rgba(217, 168, 84, 0.5);
  box-shadow: 0 0 26px rgba(217, 168, 84, 0.12);
}

.stat-title {
  color: #9aa2d8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.stat-number {
  margin-top: 8px;
  color: var(--ink);
  font-family: Marcellus, serif;
  font-size: 30px;
}

.stat p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.artisan {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid rgba(217, 168, 84, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 20, 50, 0.7), rgba(10, 14, 40, 0.7));
}

.artisan img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border: 1px solid rgba(217, 168, 84, 0.3);
  border-radius: 50%;
  object-fit: cover;
}

.testimonials {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.testimonial,
.panel {
  border: 1px solid rgba(120, 135, 255, 0.22);
  border-radius: 12px;
  background: rgba(12, 17, 48, 0.55);
}

.testimonial {
  padding: 16px 18px;
}

.stars-row {
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: 3px;
}

.testimonial p {
  margin: 8px 0 0;
  color: #d9d3c6;
  font-size: 13.5px;
  line-height: 1.55;
}

.footer-brand {
  margin-top: 26px;
  color: rgba(236, 209, 147, 0.72);
  font-family: Marcellus, serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
}

.fineprint {
  max-width: 310px;
  margin: 8px auto 0;
  color: rgba(185, 179, 166, 0.57);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 8px 0 26px;
}

.diamond {
  width: 13px;
  height: 13px;
  border: 1.5px solid rgba(217, 168, 84, 0.35);
  transform: rotate(45deg);
}

.diamond.on {
  border-color: rgba(240, 217, 160, 0.95);
  background: linear-gradient(135deg, #f2dda6, var(--gold-2));
  box-shadow: 0 0 12px rgba(217, 168, 84, 0.6);
}

.progress-line {
  width: 46px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(217, 168, 84, 0.6), rgba(217, 168, 84, 0.18));
}

.screen-title {
  margin: 0;
  color: var(--ink);
  font-size: 29px;
  line-height: 1.2;
  text-align: center;
}

.date-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 8px;
  margin-top: 24px;
  padding: 14px 12px;
  border: 1px solid rgba(217, 168, 84, 0.4);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20, 22, 58, 0.75), rgba(9, 12, 36, 0.75));
  box-shadow: 0 0 34px rgba(80, 110, 255, 0.12);
}

.date-field {
  min-width: 0;
  padding: 14px 4px 12px;
  border: 1px solid rgba(217, 168, 84, 0.35);
  border-radius: 12px;
  background: rgba(9, 12, 36, 0.5);
  cursor: pointer;
  text-align: center;
}

.date-value {
  color: var(--ink);
  font-family: Marcellus, serif;
  font-size: 22px;
}

.date-label {
  margin-top: 6px;
  color: rgba(185, 179, 166, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.field-label {
  margin: 18px 0 7px;
  color: rgba(185, 179, 166, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.text-field {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(120, 135, 255, 0.3);
  border-radius: 12px;
  background: rgba(9, 12, 36, 0.72);
  color: var(--ink);
  font-size: 15px;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.option {
  min-height: 132px;
  padding: 22px 12px 18px;
  border: 1px solid var(--blue-line);
  border-radius: var(--radius);
  background: rgba(12, 17, 48, 0.62);
  cursor: pointer;
  text-align: center;
}

.option.selected {
  border-color: rgba(217, 168, 84, 0.9);
  background: rgba(30, 26, 56, 0.9);
}

.option-glyph {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border: 1.5px solid rgba(217, 168, 84, 0.7);
  transform: rotate(45deg);
}

.option-glyph span {
  width: 9px;
  height: 9px;
  display: block;
}

.option-name,
.time-name {
  color: var(--ink);
  font-family: Marcellus, serif;
  font-size: 18px;
}

.option-sub,
.time-sub {
  margin-top: 5px;
  color: rgba(185, 179, 166, 0.76);
  font-size: 11.5px;
}

.time-list {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.time-option {
  display: flex;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(120, 135, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(12, 17, 48, 0.62);
  cursor: pointer;
  text-align: left;
}

.time-orb {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid rgba(217, 168, 84, 0.5);
  border-radius: 50%;
}

.calc {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.calc-stage {
  position: relative;
  width: 280px;
  height: 340px;
  display: grid;
  place-items: center;
  margin-top: 34px;
}

.calc-stage::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(217, 168, 84, 0), rgba(217, 168, 84, 0.55), rgba(65, 227, 210, 0.4), rgba(217, 168, 84, 0));
  filter: blur(10px);
  animation: spin 1.1s linear infinite;
}

.calc-stage::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px dashed rgba(217, 168, 84, 0.35);
  border-radius: 50%;
  animation: spin 9s linear infinite reverse;
}

.calc-card,
.reveal-card,
.meaning-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 168, 84, 0.62);
  border-radius: 14px;
  box-shadow: 0 0 40px rgba(110, 150, 255, 0.34);
}

.calc-card {
  width: 186px;
}

.reveal-card {
  width: min(248px, 76vw);
  margin: 22px auto 0;
  animation: flipIn 0.9s cubic-bezier(0.2, 0.7, 0.25, 1) both, breathe 5s ease-in-out 1s infinite;
}

.reveal-card.teal-border {
  border-color: rgba(143, 216, 206, 0.56);
  box-shadow: 0 0 44px rgba(65, 227, 210, 0.3);
}

.center {
  text-align: center;
}

.result-heading {
  margin: 22px 0 0;
  color: var(--ink);
  font-family: Marcellus, serif;
  font-size: 34px;
  font-weight: 400;
  text-align: center;
}

.result-line {
  max-width: 300px;
  margin: 12px auto 0;
  color: #c9c3b6;
  font-size: 14.5px;
  line-height: 1.6;
  text-align: center;
}

.combined-card {
  width: 250px;
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 18px auto 0;
  padding: 16px 14px;
  border: 1px solid rgba(217, 168, 84, 0.55);
  border-radius: 18px;
  background: radial-gradient(140% 80% at 50% 0%, #141a4a 0%, #0a0f30 55%, #060919 100%);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.55), 0 0 34px rgba(110, 150, 255, 0.18);
  text-align: center;
}

.mini-cards {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  margin-top: 14px;
}

.mini-card {
  width: 47%;
}

.mini-card:first-child {
  transform: rotate(-3deg);
}

.mini-card:nth-child(2) {
  transform: rotate(3deg) translateY(10px);
}

.mini-frame {
  overflow: hidden;
  border: 1px solid rgba(217, 168, 84, 0.55);
  border-radius: 8px;
}

.mini-card:nth-child(2) .mini-frame {
  border-color: rgba(143, 216, 206, 0.55);
}

.locked {
  margin-top: 30px;
  padding: 22px 18px;
  border: 1px solid rgba(217, 168, 84, 0.45);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20, 22, 58, 0.82), rgba(9, 12, 36, 0.82));
  text-align: center;
}

.blur-lines {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  opacity: 0.55;
  filter: blur(5px);
}

.blur-lines span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(233, 228, 216, 0.42), rgba(233, 228, 216, 0.08));
}

.reading-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.reading-panel {
  padding: 20px 18px;
  border: 1px solid rgba(217, 168, 84, 0.4);
  border-radius: 16px;
  background: rgba(12, 17, 48, 0.62);
}

.reading-panel.teal-panel {
  border-color: rgba(143, 216, 206, 0.35);
}

.section-kicker {
  margin-top: 12px;
  color: rgba(217, 168, 84, 0.86);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.reading-panel p {
  margin: 4px 0 0;
  color: #d9d3c6;
  font-size: 13.5px;
  line-height: 1.6;
}

.meaning-card {
  width: min(220px, 72vw);
  margin: 18px auto 0;
}

.meaning-section {
  margin-top: 22px;
}

.meaning-section h3 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.meaning-section h3::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--gold-2);
  transform: rotate(45deg);
}

.meaning-section p {
  margin: 9px 0 0 18px;
  color: #d9d3c6;
  font-size: 14px;
  line-height: 1.65;
}

.shop-options {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.shop-card {
  padding: 16px;
  border: 1px solid var(--blue-line);
  border-radius: 16px;
  background: rgba(12, 17, 48, 0.62);
  cursor: pointer;
}

.shop-card.selected {
  border-color: rgba(240, 217, 160, 0.95);
  box-shadow: 0 0 26px rgba(217, 168, 84, 0.14);
}

.shop-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  font-family: Marcellus, serif;
  font-size: 20px;
}

.chip-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.chip {
  flex: 1;
  padding: 10px;
  border: 1px solid rgba(120, 135, 255, 0.4);
  border-radius: 999px;
  background: transparent;
  color: #c9c3b6;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.chip.selected {
  border-color: rgba(217, 168, 84, 0.9);
  background: linear-gradient(180deg, #f2dda6, var(--gold-2));
  color: #221605;
}

.checkout-bar {
  position: sticky;
  bottom: 0;
  z-index: 10;
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 24px -22px -48px;
  padding: 32px 18px 16px;
  background: linear-gradient(180deg, rgba(4, 6, 20, 0), rgba(4, 6, 20, 0.98) 28%);
}

.checkout-bar .cta {
  width: auto;
  min-width: 142px;
  padding: 0 22px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: end center;
  background: rgba(2, 3, 13, 0.74);
  backdrop-filter: blur(3px);
}

.picker {
  width: min(430px, 100vw);
  max-height: 70vh;
  padding: 18px 18px 28px;
  border: 1px solid rgba(217, 168, 84, 0.5);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(180deg, #151b4c, #0a0f30);
  box-shadow: 0 -12px 44px rgba(0, 0, 0, 0.6);
}

.picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(217, 168, 84, 0.45);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
}

.picker-grid {
  display: grid;
  gap: 8px;
  max-height: 46vh;
  margin-top: 14px;
  overflow: auto;
}

.picker-grid.month {
  grid-template-columns: repeat(3, 1fr);
}

.picker-grid.day {
  grid-template-columns: repeat(7, 1fr);
}

.picker-grid.year {
  grid-template-columns: repeat(4, 1fr);
}

.picker-item {
  padding: 11px 2px;
  border: 1px solid rgba(120, 135, 255, 0.25);
  border-radius: 10px;
  background: rgba(9, 12, 36, 0.5);
  color: #d9d3c6;
  cursor: pointer;
  font-family: Marcellus, serif;
}

.picker-item.selected {
  border-color: rgba(240, 217, 160, 0.95);
  background: linear-gradient(180deg, #f2dda6, var(--gold-2));
  color: #221605;
}

.video-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  background: rgba(2, 3, 13, 0.91);
}

.video-stage {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  background: radial-gradient(120% 80% at 50% 20%, #1a2260 0%, #0b1034 55%, #060919 100%);
  box-shadow: 0 0 44px rgba(65, 227, 210, 0.3), 0 0 110px rgba(255, 79, 163, 0.18);
}

.video-stage::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 0deg, transparent, rgba(65, 227, 210, 0.35), rgba(255, 79, 163, 0.3), rgba(255, 176, 46, 0.3), transparent);
  filter: blur(28px);
  animation: spin 5s linear infinite;
  z-index: 0;
}

.video-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px;
  text-align: center;
}

.video-copy h2 {
  max-width: 320px;
  margin: 14px 0 0;
  color: var(--ink);
  font-family: Marcellus, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.22;
}

.video-copy p {
  max-width: 310px;
  margin: 14px 0 0;
  color: #c9c3b6;
  font-size: 14px;
  line-height: 1.6;
}

.video-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
}

.video-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 4px;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, #41e3d2, #ff4fa3, #ffb02e);
  transition: width 150ms linear;
}

.intro-start {
  position: absolute;
  z-index: 5;
  right: 8%;
  bottom: 46px;
  left: 8%;
  width: auto;
  height: 132px;
  border: 0;
  border-radius: 36px;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

.intro-start.visible {
  opacity: 0;
  pointer-events: auto;
}

.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  z-index: 90;
  max-width: calc(100vw - 36px);
  padding: 12px 20px;
  border: 1px solid rgba(217, 168, 84, 0.55);
  border-radius: 999px;
  background: rgba(8, 11, 30, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  color: var(--gold);
  font-size: 13px;
  text-align: center;
  transform: translateX(-50%);
}

.fade-up {
  animation: fadeUp 0.48s ease both;
}

@keyframes drift {
  from { transform: translateY(0); }
  to { transform: translateY(-46px); }
}

@keyframes breathe {
  0%, 100% { box-shadow: 0 0 24px rgba(90, 140, 255, 0.25), 0 0 60px rgba(65, 227, 210, 0.1); }
  50% { box-shadow: 0 0 46px rgba(120, 160, 255, 0.5), 0 0 92px rgba(65, 227, 210, 0.22); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes flipIn {
  0% { opacity: 0; filter: brightness(2.2); transform: perspective(900px) rotateY(-92deg); }
  60% { filter: brightness(1.3); }
  100% { opacity: 1; filter: brightness(1); transform: perspective(900px) rotateY(0); }
}

@media (min-width: 760px) {
  .page {
    align-items: flex-start;
    padding: 38px 24px;
  }

  .phone {
    width: min(1120px, calc(100vw - 48px));
    min-height: calc(100vh - 76px);
    border: 1px solid rgba(217, 168, 84, 0.16);
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  }

  .topbar {
    border-radius: 24px 24px 0 0;
    padding-inline: 28px;
  }

  .screen {
    max-width: 920px;
    margin: 0 auto;
    padding: 26px 42px 64px;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    grid-template-rows: auto auto;
    gap: 44px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .hero-copy {
    text-align: left;
  }

  .hero h1,
  .hero .lede,
  .hero .eyebrow {
    text-align: left;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero .lede {
    max-width: 430px;
    margin-left: 0;
  }

  .motion-shell {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 240px;
    margin: 0;
  }

  .landing-cta {
    grid-column: 1;
    grid-row: 2;
    max-width: 390px;
    margin: -20px 0 0;
  }

  .landing-after {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: start;
    margin-top: 44px;
  }

  .duo {
    margin-top: 0;
  }

  .quote,
  .compare,
  .artisan,
  .testimonials {
    margin-top: 0;
  }

  .desktop-stack {
    display: grid;
    gap: 24px;
  }

  .screen-title {
    font-size: 38px;
  }

  .quiz-wrap,
  .result-wrap,
  .meaning-wrap,
  .shop-wrap {
    max-width: 560px;
    margin: 0 auto;
  }

  .result-wrap.wide {
    max-width: 820px;
  }

  .reading-grid,
  .shop-options {
    grid-template-columns: 1fr 1fr;
  }

  .shop-options {
    align-items: stretch;
  }

  .checkout-bar {
    margin-inline: -42px;
    margin-bottom: -64px;
    padding-inline: 42px;
  }

  .picker {
    border-radius: 20px;
    border-bottom: 1px solid rgba(217, 168, 84, 0.5);
  }

  .video-overlay {
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .video-stage {
    width: min(540px, calc((100dvh - 48px) * 9 / 16), calc(100vw - 48px));
    height: min(960px, calc(100dvh - 48px), calc((100vw - 48px) * 16 / 9));
    min-height: 0;
    border: 1px solid rgba(217, 168, 84, 0.55);
    border-radius: 24px;
  }

  .intro-embed.fullscreen {
    height: 100%;
  }

  .video-copy {
    min-height: min(760px, calc(100dvh - 76px));
  }
}
