:root {
  --ink: #08060c;
  --ink-soft: #100b18;
  --plum: #221126;
  --violet: #6e4b7d;
  --gold: #caa96b;
  --gold-bright: #ecd39a;
  --ivory: #eee8dc;
  --muted: #aaa1ac;
  --line: rgba(218, 187, 127, 0.22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 88% 28%, rgba(77, 45, 97, .18), transparent 28rem),
    radial-gradient(circle at 8% 74%, rgba(93, 47, 66, .12), transparent 30rem),
    var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .28;
  background-image:
    radial-gradient(circle at 18% 27%, rgba(255,255,255,.15) 0 1px, transparent 1.4px),
    radial-gradient(circle at 72% 63%, rgba(255,255,255,.1) 0 1px, transparent 1.3px),
    radial-gradient(circle at 42% 81%, rgba(255,255,255,.08) 0 .7px, transparent 1.1px);
  background-size: 113px 127px, 157px 149px, 97px 109px;
  mix-blend-mode: soft-light;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 999; background: var(--ivory); color: var(--ink); padding: .8rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, padding .4s ease;
}
.site-header.is-scrolled { padding-block: .8rem; background: rgba(8, 6, 12, .86); border-color: var(--line); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: .7rem; letter-spacing: .24em; font-size: .72rem; font-weight: 600; }
.brand-mark { display: grid; place-items: center; width: 1.9rem; height: 1.9rem; border: 1px solid var(--line); border-radius: 50%; color: var(--gold-bright); font-size: 1.05rem; }
.menu-toggle { display: grid; gap: .36rem; width: 2.8rem; height: 2.8rem; place-content: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(8, 6, 12, .45); color: white; }
.menu-toggle span:not(.sr-only) { display: block; width: 1rem; height: 1px; background: currentColor; transition: transform .3s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }
.site-nav {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: rgba(8, 6, 12, .97);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.site-nav.is-open { opacity: 1; visibility: visible; }
.site-nav a { font-family: var(--serif); font-size: clamp(1.7rem, 8vw, 3rem); }
.site-nav .nav-cta { color: var(--gold-bright); }

.hero { min-height: 100svh; position: relative; display: flex; align-items: flex-end; overflow: hidden; padding: 8rem 1.25rem 5.5rem; }
.hero-image { position: absolute; inset: -2rem; background: url("assets/hero-observatory.png") 62% center / cover no-repeat; transform: scale(1.03); animation: slow-drift 18s ease-in-out infinite alternate; }
.hero-vignette { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 4, 9, .14) 15%, rgba(5, 4, 9, .2) 45%, rgba(5, 4, 9, .9) 100%), linear-gradient(90deg, rgba(5, 4, 9, .78), transparent 78%); }
.hero-content { position: relative; z-index: 2; width: min(100%, 47rem); }
.eyebrow { display: flex; align-items: center; gap: .75rem; margin: 0 0 1.15rem; color: var(--gold-bright); font-size: .66rem; line-height: 1.4; letter-spacing: .24em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 2.4rem; height: 1px; background: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 1.35rem; font: 400 clamp(3.25rem, 14vw, 7.4rem)/.88 var(--serif); letter-spacing: -.045em; text-wrap: balance; }
.hero-copy { width: min(29rem, 90%); margin-bottom: 2rem; color: rgba(238, 232, 220, .76); font: italic 1rem/1.55 var(--serif); }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 2.5rem; min-width: 13.5rem; padding: .95rem 1.1rem; border: 1px solid var(--gold); color: var(--ivory); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; transition: color .3s ease, background .3s ease; }
.button:hover, .button:focus-visible { background: var(--gold-bright); color: var(--ink); outline: none; }
.scroll-cue { position: absolute; right: 1.25rem; bottom: 2rem; z-index: 2; display: none; align-items: center; gap: .8rem; color: var(--muted); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue i { width: 1px; height: 3.5rem; background: linear-gradient(var(--gold), transparent); }
.constellation { position: absolute; right: 7%; top: 18%; z-index: 1; width: 12rem; height: 10rem; opacity: .55; }
.constellation i { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 9px var(--gold-bright); }
.constellation i:nth-child(1) { left: 10%; top: 25%; }.constellation i:nth-child(2) { left: 45%; top: 7%; }.constellation i:nth-child(3) { left: 62%; top: 56%; }.constellation i:nth-child(4) { left: 22%; top: 77%; }.constellation i:nth-child(5) { left: 88%; top: 28%; }

.section-shell { width: min(100%, 90rem); margin-inline: auto; padding: 6rem 1.25rem; }
.section-intro { max-width: 44rem; margin-bottom: 2.5rem; }
h2 { margin-bottom: 1.1rem; font: 400 clamp(2.5rem, 9vw, 5.4rem)/.98 var(--serif); letter-spacing: -.035em; text-wrap: balance; }
.discovery { position: relative; padding-top: 7rem; }
.discovery-intro { width: min(100%, 54rem); margin-bottom: 2.5rem; }
.discovery-intro > p:not(.eyebrow, .discovery-boundary) { max-width: 37rem; color: var(--muted); font: italic 1rem/1.65 var(--serif); }
.discovery-boundary { color: #817986; font-size: .68rem; line-height: 1.6; letter-spacing: .04em; }
.discovery-frame { position: relative; min-height: 36rem; display: grid; align-items: center; padding: 1.25rem; border: 1px solid var(--line); background: radial-gradient(circle at 12% 15%, rgba(110, 75, 125, .18), transparent 24rem), rgba(10, 7, 14, .88); overflow: hidden; }
.discovery-frame::before { content: ""; position: absolute; inset: 1rem; border: 1px solid rgba(218, 187, 127, .08); pointer-events: none; }
.discovery-sigil { position: absolute; right: -4rem; top: -5rem; width: 16rem; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(218, 187, 127, .12); border-radius: 50%; color: rgba(236, 211, 154, .28); font: 2.2rem var(--serif); }
.discovery-sigil::before, .discovery-sigil::after { content: ""; position: absolute; inset: 17%; border: 1px solid rgba(218, 187, 127, .09); border-radius: 50%; transform: rotate(27deg); }
.discovery-sigil::after { inset: 34%; transform: rotate(-18deg); }
.discovery-sigil i { position: absolute; width: .35rem; height: .35rem; left: 17%; top: 29%; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 1rem var(--gold); }
.discovery-form, .discovery-result { position: relative; z-index: 2; width: min(100%, 48rem); margin-inline: auto; padding: 1rem .25rem; }
.discovery-progress { margin-bottom: 2rem; }
.discovery-progress p { margin-bottom: .7rem; color: var(--gold-bright); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; }
.discovery-progress-track { height: 1px; background: var(--line); }
.discovery-progress-track span { display: block; width: 25%; height: 1px; background: var(--gold-bright); transition: width .45s var(--ease); }
.discovery-step { min-width: 0; margin: 0; padding: 0; border: 0; }
.discovery-step legend { width: 100%; margin-bottom: 1.8rem; color: var(--ivory); font: 400 clamp(2rem, 8vw, 3.7rem)/1.05 var(--serif); letter-spacing: -.025em; }
.discovery-option { position: relative; display: grid; grid-template-columns: 1.1rem 2rem minmax(0, 1fr); align-items: center; gap: .8rem; min-height: 3.8rem; margin-top: .65rem; padding: .75rem; border: 1px solid var(--line); color: #c3bbc6; background: rgba(8, 6, 12, .56); cursor: pointer; transition: border-color .25s ease, background .25s ease, color .25s ease; }
.discovery-option:hover, .discovery-option:focus-within, .discovery-option:has(input:checked) { border-color: rgba(236, 211, 154, .68); color: var(--ivory); background: rgba(34, 17, 38, .72); }
.discovery-option input { width: 1rem; height: 1rem; margin: 0; appearance: none; border: 1px solid var(--gold); border-radius: 50%; background: transparent; cursor: pointer; }
.discovery-option input:focus-visible { outline: 1px solid var(--gold-bright); outline-offset: .22rem; }
.discovery-option input:checked { border-color: var(--gold-bright); background: var(--gold-bright); box-shadow: inset 0 0 0 .22rem var(--ink); }
.discovery-option-mark { display: grid; width: 1.8rem; height: 1.8rem; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold-bright); font: italic .72rem var(--serif); }
.discovery-option input:checked + .discovery-option-mark { border-color: var(--gold-bright); background: var(--gold-bright); color: var(--ink); }
.discovery-controls { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.6rem; }
.discovery-controls button, .discovery-restart { border: 0; color: var(--muted); background: transparent; cursor: pointer; font-size: .64rem; letter-spacing: .13em; text-transform: uppercase; }
.discovery-controls button:focus-visible, .discovery-restart:focus-visible { outline: 1px solid var(--gold-bright); outline-offset: .35rem; }
.discovery-next { display: inline-flex; align-items: center; justify-content: space-between; gap: 2rem; min-width: 11rem; padding: .9rem 1rem; border: 1px solid var(--gold) !important; color: var(--ivory) !important; }
.discovery-next:disabled { cursor: not-allowed; opacity: .38; }
.discovery-result { outline: none; text-align: center; }
.discovery-result .eyebrow { justify-content: center; }
.discovery-result .eyebrow::before { display: none; }
.discovery-result-kicker { margin-bottom: .45rem; color: var(--gold-bright); font: italic 1.1rem var(--serif); }
.discovery-result h3 { margin-bottom: 1.25rem; font: 400 clamp(2.8rem, 11vw, 5.8rem)/.94 var(--serif); letter-spacing: -.04em; }
.discovery-result > p:not(.eyebrow, .discovery-result-kicker, .discovery-boundary) { width: min(100%, 34rem); margin: 0 auto 1rem; color: var(--muted); font: italic 1rem/1.65 var(--serif); }
.discovery-result .discovery-boundary { width: min(100%, 34rem); margin-inline: auto; }
.discovery-result-actions { display: flex; flex-direction: column; align-items: center; gap: 1.15rem; margin: 2rem auto 1.5rem; }
.discovery-result-actions .button { width: min(100%, 18rem); }
.discovery-restart { padding: .5rem; border-bottom: 1px solid var(--line); }
.path-grid { display: grid; gap: 1rem; }
.path-card { position: relative; min-height: 31rem; display: flex; flex-direction: column; justify-content: space-between; padding: 1.4rem; border: 1px solid var(--line); overflow: hidden; background: #0b0810; isolation: isolate; }
.path-card::before, .path-card::after { content: ""; position: absolute; inset: 0; z-index: -2; }
.path-card::before { background-position: center; background-size: cover; filter: saturate(.76) contrast(1.04); transform: scale(1.015); transition: filter .7s ease, transform .9s var(--ease); }
.path-card::after { z-index: -1; background: linear-gradient(180deg, rgba(6, 5, 9, .18) 5%, rgba(6, 5, 9, .08) 45%, rgba(6, 5, 9, .94) 90%), linear-gradient(90deg, rgba(6, 5, 9, .25), transparent 70%); }
.path-card:hover::before { filter: saturate(.95) contrast(1.04) brightness(1.06); transform: scale(1.07); }
.path-card--tarot::before { background-image: url("assets/path-tarot-oracle.png"); background-position: 50% 58%; }
.path-card--timing::before { background-image: url("assets/path-timing-destiny.png"); background-position: 50% 48%; }
.path-card--objects::before { background-image: url("assets/path-sacred-objects.png"); background-position: 52% 52%; }
.path-number { color: var(--gold-bright); font: italic 1rem var(--serif); text-shadow: 0 2px 18px #050309; }
.path-copy { position: relative; z-index: 1; max-width: 19rem; }
.path-copy h3 { margin-bottom: .75rem; font: 400 2rem/1 var(--serif); }
.path-copy p { min-height: 3.3rem; color: var(--muted); font-size: .87rem; line-height: 1.55; }
.path-copy a { display: inline-flex; gap: .7rem; margin-top: 1rem; padding-bottom: .3rem; border-bottom: 1px solid transparent; color: var(--gold-bright); font-size: .64rem; letter-spacing: .13em; text-transform: uppercase; transition: border-color .25s ease; }
.path-copy a:hover, .path-copy a:focus-visible { border-color: var(--gold); outline: none; }

.story { display: grid; width: min(calc(100% - 2rem), 96rem); margin: 2rem auto 6rem; background: #0c0910; border: 1px solid var(--line); }
.story-image { min-height: 30rem; background: url("assets/collection-still-life.png") 47% center / cover no-repeat; }
.story-panel { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 3.5rem 1.5rem; overflow: hidden; }
.story-panel::after { content: ""; position: absolute; width: 18rem; height: 18rem; right: -11rem; bottom: -8rem; border: 1px solid var(--line); border-radius: 50%; box-shadow: 0 0 0 3rem rgba(200, 168, 104, .025); }
.story-kicker { margin-bottom: 2.5rem; color: var(--gold); font: italic 1rem/1.5 var(--serif); }
.story-panel h2 { font-size: clamp(2.7rem, 8vw, 4.9rem); }
.story-panel > p:not(.eyebrow, .story-kicker) { max-width: 30rem; color: var(--muted); line-height: 1.75; font-size: .9rem; }
.story-signature { display: flex; align-items: center; gap: .8rem; width: min(100%, 19rem); margin-top: 2rem; color: var(--gold-bright); }
.story-signature span { flex: 1; height: 1px; background: var(--line); }
.story-signature b { font-weight: 400; }

.collection { padding-top: 2rem; }
.collection-heading { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 2.4rem; }
.collection-heading h2 { max-width: 50rem; }
.text-link { display: inline-flex; gap: .75rem; padding-bottom: .4rem; border-bottom: 1px solid var(--gold); color: var(--gold-bright); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; }
.product-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1rem; }
.product-card { min-width: 0; }
.product-image { min-height: 24rem; border: 1px solid var(--line); background-repeat: no-repeat; background-size: cover; filter: saturate(.78); transition: filter .5s ease, transform .5s var(--ease); }
.product-card:hover .product-image { filter: saturate(1.05) brightness(1.08); }
.product-image--deck { background-image: linear-gradient(180deg, transparent 52%, rgba(7, 5, 11, .66)), url("assets/path-tarot-oracle.png"); background-position: center, 50% 68%; }
.product-image--journal { background-image: linear-gradient(180deg, transparent 52%, rgba(7, 5, 11, .72)), url("assets/collection-still-life.png"); background-position: center, 82% 52%; }
.product-image--pendant { background-image: linear-gradient(180deg, transparent 52%, rgba(7, 5, 11, .7)), url("assets/path-sacred-objects.png"); background-position: center, 47% 72%; }
.product-image--stand { background-image: linear-gradient(180deg, transparent 52%, rgba(7, 5, 11, .72)), url("assets/collection-still-life.png"); background-position: center, 58% 48%; }
.product-image--candle { background-image: linear-gradient(180deg, transparent 52%, rgba(7, 5, 11, .7)), url("assets/path-sacred-objects.png"); background-position: center, 85% 38%; }
.product-image--crystal { background-image: linear-gradient(180deg, transparent 52%, rgba(7, 5, 11, .7)), url("assets/path-sacred-objects.png"); background-position: center, 14% 51%; }
.product-meta { display: grid; grid-template-columns: auto 1fr; gap: .25rem .8rem; align-items: baseline; padding: 1rem .1rem 1.4rem; border-bottom: 1px solid var(--line); }
.product-meta span { grid-row: span 3; color: var(--gold); font: italic .8rem var(--serif); }
.product-meta h3 { margin: 0; font: 400 1.15rem var(--serif); }
.product-meta p { margin: 0; color: var(--muted); font-size: .68rem; }
.product-interest { grid-column: 2; justify-self: start; margin-top: .6rem; padding-bottom: .28rem; border-bottom: 1px solid rgba(202, 169, 107, .42); color: var(--gold-bright); font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; transition: border-color .25s ease, color .25s ease; }
.product-interest b { margin-left: .4rem; font-weight: 400; }
.product-interest:hover, .product-interest:focus-visible { border-color: var(--gold-bright); color: var(--ivory); outline: none; }
.collection-note { margin-top: 1.5rem; color: #766e78; font-size: .62rem; letter-spacing: .1em; text-align: center; text-transform: uppercase; }

.waitlist { position: relative; min-height: 48rem; display: grid; place-items: center; padding: 7rem 1.25rem; overflow: hidden; text-align: center; border-top: 1px solid var(--line); background: radial-gradient(circle at center, rgba(77, 48, 91, .34), transparent 35%), #09070d; }
.waitlist-content { position: relative; z-index: 2; width: min(100%, 48rem); }
.waitlist-content .eyebrow { justify-content: center; }.waitlist-content .eyebrow::before { display: none; }
.waitlist-content > p:not(.eyebrow, .form-status, .validation-mode) { color: var(--muted); font: italic 1rem var(--serif); }
.validation-mode { display: inline-flex; margin: .75rem 0 0; padding: .45rem .7rem; border: 1px solid rgba(202, 169, 107, .24); color: #8e8491; background: rgba(8, 6, 12, .42); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.waitlist-orbit { position: absolute; width: min(90vw, 45rem); aspect-ratio: 1; border: 1px solid rgba(204, 170, 107, .13); border-radius: 50%; animation: rotate 45s linear infinite; }
.waitlist-orbit::before, .waitlist-orbit::after { content: ""; position: absolute; border: 1px solid rgba(204, 170, 107, .1); border-radius: 50%; inset: 12%; }.waitlist-orbit::after { inset: 28%; }
.waitlist-orbit span { position: absolute; width: .35rem; height: .35rem; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 1rem var(--gold); }.waitlist-orbit span:first-child { left: 9%; top: 29%; }.waitlist-orbit span:nth-child(2) { right: 15%; bottom: 20%; }
.waitlist-orbit i { position: absolute; right: 20%; top: 13%; color: var(--gold); font-style: normal; }
.waitlist-form { display: grid; margin: 2.2rem auto 1rem; width: min(100%, 36rem); border: 1px solid var(--line); background: rgba(7, 5, 11, .7); }
.waitlist-form input { min-width: 0; padding: 1rem; border: 0; border-bottom: 1px solid var(--line); outline: none; color: var(--ivory); background: transparent; }
.waitlist-form input:focus { box-shadow: inset 0 0 0 1px var(--gold); }
.waitlist-form input::placeholder { color: #746b78; }
.waitlist-form button { display: flex; justify-content: space-between; padding: 1rem; border: 0; color: #151019; background: var(--gold-bright); cursor: pointer; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.waitlist-form button:disabled { cursor: wait; opacity: .72; }
.form-status { min-height: 1.2rem; margin: 0; color: #746b78; font-size: .66rem; }
.form-status.is-error { color: #e5a4a4; }.form-status.is-success { color: var(--gold-bright); }

.site-footer { display: grid; gap: 1.5rem; padding: 2.5rem 1.25rem; border-top: 1px solid var(--line); color: #756d77; font-size: .62rem; line-height: 1.6; }
.brand--footer { color: var(--ivory); }
.site-footer p { margin: 0; max-width: 38rem; }

.reveal { opacity: 0; transform: translateY(2rem); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes slow-drift { to { transform: scale(1.08) translate3d(-1%, -.5%, 0); } }
@keyframes rotate { to { transform: rotate(360deg); } }

@media (min-width: 48rem) {
  .site-header { padding: 1.35rem 3rem; }
  .menu-toggle { display: none; }
  .site-nav { position: static; z-index: auto; flex-direction: row; gap: 2rem; background: none; opacity: 1; visibility: visible; }
  .site-nav a { font: 500 .62rem var(--sans); letter-spacing: .13em; text-transform: uppercase; }
  .site-nav .nav-cta { padding-bottom: .35rem; border-bottom: 1px solid var(--gold); }
  .hero { align-items: center; padding: 8rem 5vw 5rem; }
  .hero-image { background-position: center; }
  .hero-vignette { background: linear-gradient(90deg, rgba(5, 4, 9, .88) 3%, rgba(5, 4, 9, .44) 48%, rgba(5, 4, 9, .12) 75%), linear-gradient(180deg, rgba(5,4,9,.1), rgba(5,4,9,.55)); }
  .hero-copy { font-size: 1.12rem; }
  .scroll-cue { display: flex; right: 3rem; }
  .section-shell { padding: 8.5rem 4vw; }
  .discovery { padding-top: 9rem; }
  .discovery-frame { min-height: 40rem; padding: 4rem; }
  .discovery-form, .discovery-result { padding: 1.5rem; }
  .discovery-option { grid-template-columns: 1.1rem 2.4rem minmax(0, 1fr); min-height: 4.3rem; padding: .9rem 1rem; }
  .discovery-result-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .path-grid { grid-template-columns: repeat(3, 1fr); }
  .path-card { min-height: 35rem; padding: 1.7rem; }
  .story { grid-template-columns: minmax(0, 1.35fr) minmax(24rem, .8fr); min-height: 48rem; }
  .story-panel { padding: 5vw; }
  .collection-heading { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .product-grid { grid-template-columns: repeat(12, 1fr); gap: 1rem; }
  .product-card { grid-column: span 4; }
  .product-card--oracle { grid-column: span 7; }
  .product-card--oracle + .product-card { grid-column: span 5; }
  .product-card--crystal { grid-column: 1 / -1; }
  .product-image { min-height: 29rem; }
  .product-card--oracle .product-image, .product-card--crystal .product-image { min-height: 36rem; }
  .waitlist-form { grid-template-columns: 1fr auto; }
  .waitlist-form input { border-bottom: 0; border-right: 1px solid var(--line); padding-inline: 1.3rem; }
  .waitlist-form button { min-width: 12rem; padding-inline: 1.25rem; }
  .site-footer { grid-template-columns: 1fr 2fr auto; align-items: center; padding: 2.5rem 3rem; }
  .site-footer p:last-child { text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
