/* ═══════════════════════════════════════════════════════════════
   Drip Drops — marketing site
   Tokens and measurements come from design_handoff_website.
   Reference viewport 1440×1030.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* colour */
  --bg:          #0b0a09;
  --ink:         #f6efe2;
  --ink-soft:    #f2eadd;
  --ink-body:    rgba(240, 232, 218, .52);
  --ink-muted:   rgba(240, 232, 218, .34);
  --hairline:    rgba(240, 232, 218, .09);

  /* tweakable props — a single dial for how theatrical the hero reads */
  --om-accent:      #c8a24a;
  --om-accent-soft: #e0c078;
  --om-accent-deep: #a2803c;
  --om-glow:        1;      /* 0–1.7, multiplies every ambient light layer */

  /* type */
  --display: 'Cormorant Garamond', Georgia, serif;
  --ui:      'Jost', system-ui, -apple-system, sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, monospace;

  /* metrics */
  --shell:  1280px;
  --gutter: 40px;
  --nav-h:  74px;

  /* hero composition — scaled down at each breakpoint */
  --box-scale: 1;
  --hero-min:  1030px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  background: var(--bg);
  color: #f0e8da;
  font-family: var(--ui);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--om-accent); text-decoration: none; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 18px;
  background: var(--bg);
  color: var(--ink);
  font: 500 11px/1 var(--ui);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 1px solid var(--om-accent);
  outline-offset: 3px;
}

/* ── keyframes ────────────────────────────────────────────────── */
@keyframes om-drift  { 0%,100% { transform: translate3d(0,0,0) scale(1); }
                       50%     { transform: translate3d(-4%,3%,0) scale(1.14); } }
@keyframes om-bob    { 0%,100% { transform: translateY(0); }
                       50%     { transform: translateY(-14px); } }
@keyframes om-floats { 0%,100% { transform: translateY(0); }
                       50%     { transform: translateY(-8px); } }
@keyframes om-sheen  { 0%   { transform: translateX(-130%) skewX(-16deg); }
                       100% { transform: translateX(340%)  skewX(-16deg); } }
@keyframes om-foil   { 0%   { background-position: 0% 50%; }
                       100% { background-position: 200% 50%; } }
@keyframes om-ring   { 0%   { opacity: 0;  transform: translate(-50%,50%) scale(.85); }
                       18%  { opacity: .5; }
                       100% { opacity: 0;  transform: translate(-50%,50%) scale(1.75); } }
@keyframes om-in     { from { opacity: 0; transform: translateY(20px); }
                       to   { opacity: 1; transform: none; } }
@keyframes om-cone   { 0%,100% { opacity: .5; }
                       50%     { opacity: .86; } }

/* ═══ NAV ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: linear-gradient(180deg, rgba(11,10,9,.86), rgba(11,10,9,.42));
  box-shadow: inset 0 -1px 0 var(--hairline);
}

.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark { display: flex; flex-direction: column; gap: 4px; }
.wordmark__name {
  font: 500 12px/1 var(--ui);
  letter-spacing: .52em;
  /* at this tracking a plain space no longer reads as a word break */
  word-spacing: .3em;
  white-space: nowrap;
  text-transform: uppercase;
  color: #f0e8da;
}
.wordmark__tag {
  font: 300 italic 11px/1 var(--display);
  color: rgba(240, 232, 218, .4);
}

.nav__links { display: flex; align-items: center; gap: 34px; }

.nav__link {
  font: 500 9.5px/1 var(--ui);
  letter-spacing: .3em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(240, 232, 218, .6);
  transition: color .25s ease;
}
.nav__link:hover { color: #f0e8da; }

.cta {
  position: relative;
  overflow: hidden;
  padding: 11px 22px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--om-accent-soft), var(--om-accent-deep));
  color: #2b1a0c;
  font: 500 9.5px/1 var(--ui);
  letter-spacing: .26em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: filter .25s ease;
}
.cta:hover { color: #2b1a0c; filter: brightness(1.06); }
.cta::after {
  content: "";
  position: absolute;
  top: -30%; left: -24%;
  width: 46%; height: 170%;
  background: linear-gradient(90deg, transparent, rgba(255,250,238,.45), transparent);
  animation: om-sheen 6.4s 1.4s ease-in-out infinite;
}

/* ═══ HERO ══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: var(--hero-min);
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg);
}

.hero__wash {
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 66% at 50% -12%, #26201a 0%, rgba(11,10,9,0) 62%);
}

.hero__orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  opacity: var(--om-glow);
}
.hero__orb--gold {
  top: -16%; left: -14%;
  width: 64%; height: 70%;
  filter: blur(70px);
  background: radial-gradient(closest-side, rgba(200,162,74,.2), transparent 72%);
  animation: om-drift 34s ease-in-out infinite;
}
.hero__orb--cool {
  top: 22%; right: -20%;
  width: 62%; height: 64%;
  filter: blur(76px);
  background: radial-gradient(closest-side, rgba(150,168,196,.13), transparent 72%);
  animation: om-drift 46s ease-in-out infinite reverse;
}

.hero__hatch {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .4;
  background: repeating-linear-gradient(46deg, rgba(240,232,218,.05) 0 1px, transparent 1px 8px);
}

.hero__cone {
  position: absolute;
  left: 50%; bottom: 0;
  width: min(1120px, 96vw);
  height: 78%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(16px);
  opacity: var(--om-glow);
  clip-path: polygon(41.5% 0, 58.5% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(232,207,142,.3), rgba(200,162,74,.09) 46%, rgba(200,162,74,0) 84%);
  animation: om-cone 7s ease-in-out infinite;
}

/* copy block and box stage are stacked flex layers — they must not overlap */
.hero__copy {
  position: relative;
  z-index: 5;
  flex: none;
  padding-top: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 30px;
  animation: om-in .7s ease both;
}
.eyebrow__rule { width: 42px; height: 1px; }
.eyebrow__rule--l { background: linear-gradient(90deg,  transparent, rgba(200,162,74,.6)); }
.eyebrow__rule--r { background: linear-gradient(270deg, transparent, rgba(200,162,74,.6)); }
.eyebrow__text {
  font: 500 9.5px/1 var(--ui);
  letter-spacing: .44em;
  text-transform: uppercase;
  color: rgba(240, 232, 218, .56);
}

.hero__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 7.6vw, 124px);
  line-height: .9;
  letter-spacing: -.022em;
  color: var(--ink);
  text-wrap: balance;
  animation: om-in .8s .06s ease both;
}

.foil {
  font-style: italic;
  background: linear-gradient(100deg, #f3e2b4, #c8a24a 34%, #fff2cf 56%, #a2803c);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: om-foil 6s linear infinite;
}

.hero__lead {
  max-width: 600px;
  margin: 26px 0 0;
  font: 300 italic 20px/1.55 var(--display);
  color: rgba(240, 232, 218, .62);
  text-wrap: pretty;
  animation: om-in .8s .12s ease both;
}

/* ── box stage ────────────────────────────────────────────────── */
.stage {
  position: relative;
  z-index: 4;
  flex: 1;
  min-height: calc(392px * var(--box-scale));
}

.stage__ellipse {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  border-radius: 50%;
  opacity: var(--om-glow);
}
.stage__ellipse--outer {
  bottom: calc(66px * var(--box-scale));
  width:  calc(900px * var(--box-scale));
  height: calc(190px * var(--box-scale));
  border: 1px solid rgba(200,162,74,.13);
}
.stage__ellipse--inner {
  bottom: calc(100px * var(--box-scale));
  width:  calc(560px * var(--box-scale));
  height: calc(118px * var(--box-scale));
  border: 1px solid rgba(200,162,74,.2);
}
.stage__pool {
  position: absolute;
  left: 50%;
  bottom: calc(142px * var(--box-scale));
  width:  calc(340px * var(--box-scale));
  height: calc(70px  * var(--box-scale));
  transform: translateX(-50%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(22px);
  opacity: var(--om-glow);
  background: radial-gradient(closest-side, rgba(232,207,142,.4), transparent 74%);
}

/* wrapper owns centring + scale so the bob keyframe stays a pure translateY */
.box {
  position: absolute;
  left: 50%;
  bottom: calc(76px * var(--box-scale));
  width: 262px;
  height: 322px;
  pointer-events: none;
  transform: translateX(-50%) scale(var(--box-scale));
  transform-origin: 50% 100%;
}
.box__float {
  position: absolute;
  inset: 0;
  animation: om-bob 7s ease-in-out infinite;
  filter: drop-shadow(0 44px 70px rgba(0,0,0,.8));
}

.box__shell {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(152deg, #5a4128 0%, #3c2c1a 48%, #241a10 100%);
  box-shadow: inset 0 0 0 1px rgba(232,207,142,.22),
              inset 0 40px 90px rgba(255,240,208,.07);
}
.box__grain {
  position: absolute; inset: 0;
  opacity: .5;
  background: repeating-linear-gradient(58deg, rgba(255,244,222,.05) 0 2px, transparent 2px 7px);
}
.box__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,244,222,.12), rgba(0,0,0,.34) 78%);
}
.box__sheen {
  position: absolute;
  top: -30%; left: -24%;
  width: 46%; height: 170%;
  background: linear-gradient(90deg, transparent, rgba(255,250,238,.3), transparent);
  animation: om-sheen 6.4s 1s ease-in-out infinite;
}
.box__inset {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(232,207,142,.16);
  border-radius: 3px;
}
.box__strap {
  position: absolute;
  left: 0; right: 0; top: 34%;
  height: 36px;
  background: linear-gradient(180deg, #efe4cd, #cbbb9c);
  box-shadow: 0 1px 0 rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.6);
}
.box__strap-weave {
  position: absolute;
  left: 0; right: 0; top: 34%;
  height: 36px;
  opacity: .5;
  background: repeating-linear-gradient(90deg, rgba(122,84,38,.1) 0 1px, transparent 1px 5px);
}
.box__latch {
  position: absolute;
  left: 50%; top: calc(34% + 3px);
  transform: translateX(-50%);
  width: 52px; height: 40px;
  border-radius: 3px;
  background: linear-gradient(150deg, #f2ddab, #b9913f 55%, #8a6a2c);
  box-shadow: 0 3px 8px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,252,238,.7);
}
.box__keyhole {
  position: absolute;
  left: 50%; top: calc(34% + 16px);
  transform: translateX(-50%);
  width: 20px; height: 5px;
  border-radius: 2px;
  background: rgba(52,34,14,.5);
}
.box__corner {
  position: absolute;
  width: 30px; height: 30px;
}
.box__corner--tl { top: 13px; left: 13px;
  border-top: 2px solid rgba(232,207,142,.6);
  border-left: 2px solid rgba(232,207,142,.6);
  border-top-left-radius: 4px; }
.box__corner--tr { top: 13px; right: 13px;
  border-top: 2px solid rgba(232,207,142,.6);
  border-right: 2px solid rgba(232,207,142,.6);
  border-top-right-radius: 4px; }
.box__corner--bl { bottom: 13px; left: 13px;
  border-bottom: 2px solid rgba(232,207,142,.6);
  border-left: 2px solid rgba(232,207,142,.6);
  border-bottom-left-radius: 4px; }
.box__corner--br { bottom: 13px; right: 13px;
  border-bottom: 2px solid rgba(232,207,142,.6);
  border-right: 2px solid rgba(232,207,142,.6);
  border-bottom-right-radius: 4px; }

.ring {
  position: absolute;
  left: 50%;
  bottom: calc(76px * var(--box-scale));
  width:  calc(400px * var(--box-scale));
  height: calc(400px * var(--box-scale));
  transform: translate(-50%, 50%);
  pointer-events: none;
  border-radius: 50%;
  opacity: var(--om-glow);
  animation: om-ring 5.5s ease-out infinite;
}
.ring--a { border: 1px solid rgba(232,207,142,.3); }
.ring--b { border: 1px solid rgba(232,207,142,.22); animation-delay: 2.75s; }

.chip {
  position: absolute;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(18,16,14,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.chip__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #d9b055;
  box-shadow: 0 0 9px rgba(217,176,85,.75);
}
.chip__label {
  font: 500 8px/1 var(--ui);
  letter-spacing: .28em;
  text-transform: uppercase;
  white-space: nowrap;
}
.chip--drippy {
  left: calc(50% - (296px * var(--box-scale)));
  bottom: calc(268px * var(--box-scale));
  box-shadow: inset 0 0 0 1px rgba(217,176,85,.34);
  animation: om-floats 6s ease-in-out infinite;
}
.chip--drippy .chip__label { color: #e3c684; }
.chip--value {
  left: calc(50% + (168px * var(--box-scale)));
  bottom: calc(140px * var(--box-scale));
  box-shadow: inset 0 0 0 1px rgba(240,232,218,.16);
  animation: om-floats 7.4s .8s ease-in-out infinite;
}
.chip--value .chip__dot {
  background: #6b8ac4;
  box-shadow: 0 0 9px rgba(107,138,196,.6);
}
.chip--value .chip__label { color: rgba(240,232,218,.72); }

.hero__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 210px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11,10,9,0), var(--bg) 74%);
}

/* ═══ SHARED SECTION FURNITURE ══════════════════════════════════ */
.section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.section-head__label {
  font: 500 9px/1 var(--ui);
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(240,232,218,.42);
}
.section-head__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(240,232,218,.14), transparent);
}
.section-head__num {
  font: 400 9px/1 var(--mono);
  color: rgba(240,232,218,.28);
}

.h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.015em;
  color: var(--ink);
}

.lead {
  margin: 22px 0 0;
  font: 300 15px/1.7 var(--ui);
  color: var(--ink-body);
  text-wrap: pretty;
}

/* ═══ TIERS ═════════════════════════════════════════════════════ */
.ladder {
  position: relative;
  margin-top: 118px;
  padding: 110px 0;
  background: radial-gradient(90% 70% at 50% 0%, #1b1712 0%, #0b0a09 66%);
  box-shadow: inset 0 1px 0 rgba(240,232,218,.07);
}

.ladder__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 70px;
  align-items: start;
}

.featured {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 34px;
  padding-top: 26px;
  box-shadow: inset 0 1px 0 rgba(240,232,218,.1);
}
.featured__name {
  font: 500 9px/1 var(--ui);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(240,232,218,.4);
}
.featured__price {
  font: 400 24px/1.4 var(--mono);
  color: var(--om-accent);
}
.featured__floor {
  font: 300 italic 15px/1 var(--display);
  color: rgba(240,232,218,.5);
}

.tiers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.tier {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 19px 4px;
  box-shadow: inset 0 -1px 0 rgba(240,232,218,.08);
}
.tier__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--tier);
  box-shadow: 0 0 12px var(--tier-glow);
}
.tier__name {
  font: 400 17px/1 var(--display);
  letter-spacing: .03em;
  color: var(--ink-soft);
}
.tier__band {
  min-width: 150px;
  text-align: right;
  font: 400 13px/1 var(--mono);
  color: rgba(240,232,218,.5);
}

/* ═══ VAULT ═════════════════════════════════════════════════════ */
.vault { padding: 118px var(--gutter) 0; }

.vault__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vault__panel {
  position: relative;
  height: 470px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(165deg, #221c14, #141009);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.85),
              inset 0 0 0 1px rgba(240,232,218,.08);
}
.vault__panel-wash {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(70% 44% at 50% 0%, rgba(232,207,142,.16), transparent 68%);
}
.vault__still {
  position: absolute;
  top: 22px; left: 22px;
  width:  calc(100% - 44px);
  height: calc(100% - 44px);
  border-radius: 8px;
  overflow: hidden;
}
.vault__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vault__chip {
  position: absolute;
  left: 34px; bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(11,10,9,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(217,176,85,.36);
}
.vault__chip-label {
  font: 400 11px/1 var(--mono);
  color: #e3c684;
}

.vault__lead { margin-bottom: 40px; max-width: 460px; }

.terms { display: flex; flex-direction: column; margin: 0; }
.term {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  box-shadow: inset 0 -1px 0 var(--hairline);
}
.term__name {
  font: 400 19px/1 var(--display);
  color: var(--ink-soft);
}
.term__value {
  margin: 0;
  font: 500 15px/1 var(--mono);
  color: var(--om-accent);
  white-space: nowrap;
}

/* ═══ FOOTER ════════════════════════════════════════════════════ */
.footer {
  padding: 44px var(--gutter) 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  box-shadow: inset 0 1px 0 var(--hairline);
}
.footer__brand { display: flex; flex-direction: column; gap: 10px; }
.footer__name {
  font: 500 11px/1 var(--ui);
  letter-spacing: .52em;
  word-spacing: .3em;
  text-transform: uppercase;
  color: rgba(240,232,218,.72);
}
.footer__est {
  font: 300 italic 12px/1 var(--display);
  color: var(--ink-muted);
}
.footer__cols { display: flex; gap: 54px; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__head {
  font: 500 8.5px/1 var(--ui);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.footer__col a {
  font: 300 13px/1 var(--ui);
  color: rgba(240,232,218,.6);
  transition: color .25s ease;
}
.footer__col a:hover { color: #f0e8da; }
.footer__legal {
  max-width: 280px;
  margin: 0;
  font: 300 11px/1.7 var(--ui);
  color: rgba(240,232,218,.3);
  text-wrap: pretty;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   Not specified in the prototype (open question 1). The rule below
   the desktop reference: keep the hero theatrical but let it shrink,
   and collapse both two-column grids to a single column.
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1180px) {
  :root { --box-scale: .88; --hero-min: 900px; }
  .ladder__grid { gap: 48px; }
  .vault__grid  { gap: 44px; }
}

@media (max-width: 960px) {
  :root { --gutter: 30px; --box-scale: .78; --hero-min: 820px; }

  .ladder { margin-top: 90px; padding: 88px 0; }
  .ladder__grid { grid-template-columns: 1fr; gap: 46px; }

  .vault { padding-top: 90px; }
  .vault__grid { grid-template-columns: 1fr; gap: 40px; }
  .vault__panel { height: 420px; }

  .hero__copy { padding-top: 118px; }
}

@media (max-width: 760px) {
  :root { --box-scale: .66; --hero-min: 720px; }

  .hero { height: 100svh; }
  .hero__copy { padding-top: 104px; }
  .hero__lead { font-size: 17px; margin-top: 20px; }
  .eyebrow { gap: 10px; margin-bottom: 24px; }
  .eyebrow__rule { width: 26px; }
  .eyebrow__text { font-size: 8.5px; letter-spacing: .34em; }

  /* pin the chips to the stage edges — centre-relative offsets overflow here */
  .chip--drippy { left: 4px;  bottom: calc(250px * var(--box-scale)); }
  .chip--value  { left: auto; right: 4px; bottom: calc(120px * var(--box-scale)); }

  .nav__links { gap: 20px; }
  .nav__link { display: none; }
  .wordmark__tag { display: none; }

  .footer { flex-direction: column; gap: 34px; }
  .footer__cols { flex-wrap: wrap; gap: 34px; }
  .footer__legal { max-width: none; flex-basis: 100%; }
}

@media (max-width: 480px) {
  :root { --gutter: 22px; --box-scale: .54; --hero-min: 640px; }

  .hero__copy { padding-top: 96px; }

  /* the prototype's 56px clamp floor breaks the headline into four lines here */
  .hero__title { font-size: clamp(38px, 12vw, 56px); }
  .hero__lead  { font-size: 16px; }

  /* keep the eyebrow on one line */
  .eyebrow__rule { display: none; }
  .eyebrow__text { font-size: 8px; letter-spacing: .26em; }
  .vault__panel { height: 360px; }
  .vault__still { top: 14px; left: 14px; width: calc(100% - 28px); height: calc(100% - 28px); }
  .vault__chip { left: 22px; bottom: 22px; }

  .tier { grid-template-columns: 14px 1fr auto; gap: 12px; }
  .tier__band { min-width: 0; font-size: 12px; }
  .tier__name { font-size: 16px; }

  .term { gap: 16px; }
  .term__name { font-size: 17px; }
  .term__value { font-size: 14px; }

  .cta { padding: 10px 16px; letter-spacing: .2em; }

  /* the two-word name needs its tracking back to share the row with the CTA */
  .wordmark__name { letter-spacing: .34em; word-spacing: .2em; }
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
   Every animation here is ambient decoration (open question 4), so
   all of it goes — nothing is load-bearing for comprehension.
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  /* keep the entrance states settled rather than mid-keyframe */
  .eyebrow, .hero__title, .hero__lead { opacity: 1; transform: none; }
  .box__sheen, .cta::after, .ring { display: none; }
  .foil { background-position: 40% 50%; }
}
