/*
 * Axiom — luxe.css
 * -----------------------------------------------------------------
 * The landing-page brand layer. Loaded AFTER app.css and scoped to
 * `body.luxe`, so the storefront's seven other pages keep the shared
 * design system untouched while the front door gets the full launch
 * treatment.
 *
 * The register: obsidian and platinum, with champagne used scarcely
 * enough to stay precious, and the brand's sapphire/violet kept as the
 * jewel tone it always was. Serif display against a grotesque body —
 * the editorial contrast luxury houses use — at sizes that trust the
 * words to carry the page. Generous negative space is the point, not
 * an absence of content.
 *
 * No external fonts, no images, no network: the CSP is `default-src
 * 'self'` and the site must render from a static host or file://.
 * Every surface here is built from gradients, hairlines and type.
 */

body.luxe {
  /* ---- luxury palette, layered over the app.css brand tokens ---- */
  --void: #040507;
  --obsidian: #080A0E;
  --platinum: #F2F5F8;
  --silver: #A9B3BF;
  --pewter: #6E7885;
  --champagne: #C9A961;
  --champagne-soft: #E0CFA6;

  --hair: rgba(242, 245, 248, 0.09);
  --hair-strong: rgba(242, 245, 248, 0.17);
  --glass: rgba(255, 255, 255, 0.022);

  --font-display: ui-serif, 'Iowan Old Style', 'Palatino Linotype', Palatino,
                  'Book Antiqua', Georgia, 'Times New Roman', serif;

  --slow: cubic-bezier(0.16, 1, 0.3, 1);

  background: var(--void);
  color: var(--platinum);
  background-image:
    radial-gradient(70% 48% at 50% 0%, rgba(79, 140, 255, 0.11), transparent 62%),
    radial-gradient(48% 38% at 88% 12%, rgba(122, 92, 255, 0.09), transparent 60%);
  background-attachment: fixed;
}

/* The engineering grid from app.css is too busy under this treatment. */
body.luxe::before { opacity: 0.35; }

/* Film grain over the whole page — the thing that stops a dark site
   looking flat. Pure CSS: a tiled SVG would need an external file. */
body.luxe::after {
  content: '';
  position: fixed;
  inset: -50%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.018;
  background-image:
    repeating-conic-gradient(rgba(255,255,255,0.9) 0% 0.0009%, transparent 0% 0.0018%),
    repeating-conic-gradient(rgba(255,255,255,0.6) 0% 0.0007%, transparent 0% 0.0021%);
  background-size: 180px 180px, 240px 240px;
  mix-blend-mode: overlay;
}

/* ------------------------------------------------------------ typography */

body.luxe h1, body.luxe h2, body.luxe h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.022em;
  color: var(--platinum);
}

.luxe-display {
  font-size: clamp(2.9rem, 7.4vw, 6.4rem);
  line-height: 0.99;
  margin: 0.18em 0 0;
  text-wrap: balance;
}

.luxe-display em {
  font-style: italic;
  background: linear-gradient(100deg, var(--champagne-soft), var(--champagne));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.luxe-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-sans);
  font-size: 0.688rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 0;
}

.luxe-eyebrow::before {
  content: '';
  width: 2.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne));
}

.luxe-eyebrow.is-center::before { display: none; }

.luxe-lead {
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
  line-height: 1.62;
  color: var(--silver);
  max-width: 60ch;
  margin: 1.5rem 0 0;
  text-wrap: pretty;
}

.luxe-lead strong { color: var(--platinum); font-weight: 600; }

/* ---------------------------------------------------------------- header */

body.luxe .site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--slow), border-color 0.5s var(--slow),
              backdrop-filter 0.5s var(--slow);
}

body.luxe .site-header[data-scrolled] {
  background: rgba(4, 5, 7, 0.72);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--hair);
}

body.luxe .site-header .nav a {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--silver);
}

body.luxe .site-header .nav a:hover { color: var(--platinum); }

body.luxe .brand-word {
  font-family: var(--font-display);
  font-size: 1.22rem;
  letter-spacing: 0.06em;
  color: var(--platinum);
}

/* ------------------------------------------------------------------ hero */

.luxe-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7.5rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
}

/* The WebGL host. Sized by CSS, never by attributes, so a failed
   context leaves the fallback gradient in exactly the same box. */
.luxe-stage {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  /* Fallback that stands alone if WebGL never starts: a lit monolith
     silhouette suggested with gradients only. */
  background:
    radial-gradient(38% 52% at 50% 46%, rgba(79, 140, 255, 0.16), transparent 68%),
    radial-gradient(24% 40% at 58% 38%, rgba(122, 92, 255, 0.14), transparent 70%),
    linear-gradient(180deg, transparent 62%, rgba(4, 5, 7, 0.9) 100%);
}

.luxe-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Once the shader is live the CSS stand-in would double the glow. */
.luxe-stage[data-luxe-state='live'] { background: none; }

.luxe-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,5,7,0.55) 0%, transparent 26%,
                              transparent 62%, var(--void) 100%);
}

.luxe-hero .container { position: relative; z-index: 1; }

.luxe-hero-inner { max-width: 46rem; }

.luxe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.luxe-actions.is-center { justify-content: center; }

/* --------------------------------------------------------------- buttons */

body.luxe .btn {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 1.05rem 1.9rem;
  transition: transform 0.4s var(--slow), background 0.4s var(--slow),
              border-color 0.4s var(--slow), color 0.4s var(--slow),
              box-shadow 0.4s var(--slow);
  transform: translate(var(--mx, 0px), var(--my, 0px));
}

body.luxe .btn-primary {
  background: linear-gradient(100deg, var(--champagne-soft), var(--champagne));
  color: #16120A;
  border: 1px solid transparent;
  box-shadow: 0 18px 44px -22px rgba(201, 169, 97, 0.85);
}

body.luxe .btn-primary:hover {
  box-shadow: 0 22px 60px -20px rgba(201, 169, 97, 0.95);
  color: #0F0C06;
}

body.luxe .btn-ghost {
  background: transparent;
  border: 1px solid var(--hair-strong);
  color: var(--platinum);
}

body.luxe .btn-ghost:hover {
  border-color: var(--champagne);
  color: var(--champagne-soft);
  background: rgba(201, 169, 97, 0.05);
}

/* app.css sets `.nav .btn-nav { background: var(--accent-grad) }` — the blue
   gradient survives unless the background is explicitly reset here, which is
   why this is matched at the same `.nav` depth rather than on the class alone. */
body.luxe .nav .btn-nav {
  background: transparent;
  border: 1px solid var(--hair-strong);
  border-radius: 2px;
  padding: 0.6rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--champagne);
  box-shadow: none;
}

body.luxe .nav .btn-nav:hover {
  border-color: var(--champagne);
  background: rgba(201, 169, 97, 0.07);
  color: var(--champagne-soft);
  box-shadow: none;
  filter: none;
}

/* ----------------------------------------------------------- trust strip */

.luxe-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
  margin-top: 3.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--hair);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pewter);
}

.luxe-trust span { display: inline-flex; align-items: center; gap: 0.55em; }
.luxe-trust span::before {
  content: '';
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--champagne);
}

/* -------------------------------------------------------------- sections */

.luxe-section { padding: clamp(5.5rem, 11vw, 9.5rem) 0; position: relative; }
.luxe-section + .luxe-section { border-top: 1px solid var(--hair); }

.luxe-head { max-width: 54rem; }
.luxe-head.is-center { margin-inline: auto; text-align: center; }
.luxe-head.is-center .luxe-lead { margin-inline: auto; }

/* The founding band and closing CTA centre their own copy. */
.luxe-founding .luxe-lead,
.luxe-cta .luxe-lead { margin-inline: auto; }
.luxe-founding .luxe-eyebrow,
.luxe-cta .luxe-eyebrow { justify-content: center; }

.luxe-title {
  font-size: clamp(1.9rem, 3.9vw, 3.1rem);
  line-height: 1.1;
  margin: 1rem 0 0;
  text-wrap: balance;
}

/* Lookbook numbering — quiet, but it makes the page feel composed. */
.luxe-num {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  color: var(--pewter);
  display: block;
  margin-bottom: 1.6rem;
}

/* ----------------------------------------------------------------- cards */

.luxe-grid { display: grid; gap: 1px; margin-top: 3.6rem; background: var(--hair); border: 1px solid var(--hair); }
.luxe-grid-2 { grid-template-columns: repeat(2, 1fr); }
.luxe-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Hairline-separated cells read as one engineered object rather than
   floating boxes — closer to a spec sheet than a marketing grid. */
.luxe-cell {
  background: var(--obsidian);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  position: relative;
  transition: background 0.6s var(--slow);
}

.luxe-cell:hover { background: #0B0E13; }

.luxe-cell h3 {
  font-size: 1.32rem;
  margin: 0 0 0.7rem;
  line-height: 1.24;
}

.luxe-cell p {
  margin: 0;
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.68;
}

.luxe-cell .luxe-idx {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  color: var(--champagne);
  display: block;
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------- product duet */

.luxe-duet { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hair);
             border: 1px solid var(--hair); margin-top: 3.6rem; }

.luxe-product {
  background: var(--obsidian);
  padding: clamp(2rem, 3.4vw, 3.2rem);
  display: flex;
  flex-direction: column;
}

.luxe-product.is-flagship {
  background:
    radial-gradient(120% 70% at 0% 0%, rgba(201, 169, 97, 0.07), transparent 58%),
    var(--obsidian);
}

.luxe-kicker {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pewter);
  display: block;
  margin-bottom: 1.1rem;
}

.luxe-product.is-flagship .luxe-kicker { color: var(--champagne); }

.luxe-product h3 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin: 0 0 0.85rem; }

.luxe-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.8rem 0 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--hair);
}

.luxe-price .amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  color: var(--platinum);
  line-height: 1;
}

.luxe-price .strike { color: var(--pewter); text-decoration: line-through; font-size: 1rem; }
.luxe-price .per { color: var(--pewter); font-size: 0.8rem; letter-spacing: 0.04em; }

.luxe-feats { list-style: none; margin: 1.7rem 0 0; padding: 0; display: grid; gap: 0.85rem; }

.luxe-feats li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.55;
}

.luxe-feats .tick { color: var(--champagne); font-size: 0.8rem; }

.luxe-product .btn { margin-top: auto; }
.luxe-product .luxe-actions { margin-top: 2.4rem; }

/* ------------------------------------------------------------- founding */

.luxe-founding {
  border: 1px solid var(--hair-strong);
  padding: clamp(2.2rem, 5vw, 4.4rem);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(201, 169, 97, 0.08), transparent 55%),
    radial-gradient(80% 100% at 0% 100%, rgba(79, 140, 255, 0.07), transparent 55%),
    var(--obsidian);
  text-align: center;
}

.luxe-founding-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin: 2.2rem 0;
}

.luxe-founding-price .now {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  background: linear-gradient(100deg, var(--champagne-soft), var(--champagne));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.luxe-founding-price .was {
  font-size: 1.2rem;
  color: var(--pewter);
  text-decoration: line-through;
}

.luxe-founding-price .save {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid rgba(201, 169, 97, 0.34);
  padding: 0.45rem 0.85rem;
}

/* Slot pips — app.js fills [data-founding-slots] with .slot-pip elements and
   marks sold ones .is-claimed. Restyled from rounded bars to fine rules. */
body.luxe .slot-pips { gap: 7px; }

body.luxe .slot-pip {
  width: 30px;
  height: 2px;
  border: 0;
  border-radius: 0;
  background: var(--hair-strong);
}

body.luxe .slot-pip.is-claimed {
  background: linear-gradient(90deg, var(--champagne-soft), var(--champagne));
  border-color: transparent;
}

/* app.css puts the caption in --font-mono, which reads as terminal output
   rather than as a launch. */
body.luxe .slot-caption {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pewter);
}

body.luxe .slot-caption strong { color: var(--platinum); font-weight: 600; }

/* Centred inside the founding band, left-aligned in the hero. */
.luxe-founding .slot-tracker { align-items: center; margin: 0 0 1.8rem; }
.luxe-hero .slot-tracker { margin: 2.2rem 0 0; }

.luxe-note {
  display: flex;
  gap: 0.9rem;
  text-align: left;
  max-width: 44rem;
  margin: 2.4rem auto 0;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--hair);
  background: rgba(255, 255, 255, 0.015);
  font-size: 0.86rem;
  line-height: 1.66;
  color: var(--silver);
}

.luxe-note .ic { color: var(--champagne); }
.luxe-note strong { color: var(--platinum); }

/* ------------------------------------------------------------------ faq */

body.luxe .faq { margin-top: 3.2rem; border-top: 1px solid var(--hair); }

body.luxe .faq details {
  border: none;
  border-bottom: 1px solid var(--hair);
  border-radius: 0;
  background: transparent;
  padding: 0;
}

/* Block, not flex. These summaries contain inline <span data-money> children,
   and `justify-content: space-between` distributes EVERY flex child — which
   tore "What does the £1,000 deposit do?" into three pieces spread across the
   row. Positioning the marker keeps the question as one run of text. */
body.luxe .faq summary {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  padding: 1.7rem 3rem 1.7rem 0;
  color: var(--platinum);
  cursor: pointer;
  list-style: none;
  display: block;
  position: relative;
  transition: color 0.4s var(--slow);
}

body.luxe .faq summary:hover { color: var(--champagne-soft); }

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

body.luxe .faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--champagne);
  font-family: var(--font-sans);
  font-size: 1.3rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.4s var(--slow);
}

body.luxe .faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

body.luxe .faq p {
  margin: 0 0 1.8rem;
  color: var(--silver);
  max-width: 62ch;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ------------------------------------------------------------- closing */

.luxe-cta {
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  border: 1px solid var(--hair-strong);
  background:
    radial-gradient(70% 130% at 50% 0%, rgba(79, 140, 255, 0.10), transparent 60%),
    var(--obsidian);
}

/* -------------------------------------------------------------- footer */

body.luxe .site-footer {
  border-top: 1px solid var(--hair);
  padding: 3.4rem 0;
  font-size: 0.8rem;
  color: var(--pewter);
}

body.luxe .site-footer a { color: var(--silver); }
body.luxe .site-footer a:hover { color: var(--champagne); }

/* ------------------------------------------------------------- reveals */

/* Applied by luxe.js only — a no-JS visitor never gets hidden content. */
.luxe-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.05s var(--slow), transform 1.05s var(--slow);
  will-change: opacity, transform;
}

.luxe-reveal-ready [data-reveal='in'] {
  opacity: 1;
  transform: none;
}

/* ---------------------------------------------------------- responsive */

@media (max-width: 900px) {
  .luxe-grid-3 { grid-template-columns: 1fr; }
  .luxe-grid-2, .luxe-duet { grid-template-columns: 1fr; }
  .luxe-hero { min-height: auto; padding: 8.5rem 0 4.5rem; }

  /* There is no room to stand the monolith beside the copy on a phone, so it
     recentres behind it (see the aspect term in the SDF). Dimmed here because
     legible text beats a visible object every time. */
  .luxe-stage { opacity: 0.5; }
  .luxe-display { font-size: clamp(2.6rem, 12vw, 3.6rem); }
  .luxe-trust { gap: 0.9rem 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  body.luxe *, body.luxe *::before, body.luxe *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .luxe-reveal-ready [data-reveal] { opacity: 1; transform: none; }
}

/* Print: strip the theatre, keep the words. */
@media print {
  body.luxe::after, .luxe-stage { display: none; }
  body.luxe { background: #fff; color: #000; }
}

/* =========================================================================
   INTERIOR PAGES
   =========================================================================
   The landing was re-treated first, which left the storefront speaking two
   languages: a champagne-and-obsidian front door opening onto generic blue
   SaaS cards on exactly the pages where the £1,000 deposit is actually
   decided. This layer closes that seam.

   It restyles the app.css COMPONENTS the interior pages already use rather
   than asking those pages to adopt new markup, so a page joins the treatment
   by adding `class="luxe"` and the stylesheet link — no structural edits, and
   nothing that could disturb data-money hydration or the gate/portal scripts.

   The translation is consistent throughout: accent blue and violet become
   champagne; pills and 999px radii become hairlines and 2px; drop shadows and
   hover lifts become quiet changes in ground tone. Weight is carried by the
   serif and by space, never by chrome.
   ------------------------------------------------------------------------ */

/* Interior pages have no WebGL hero to sit under, so the ambient wash is
   pulled back — it should feel like paper stock, not a light show. */
body.luxe.luxe-interior {
  background-image:
    radial-gradient(58% 34% at 50% 0%, rgba(79, 140, 255, 0.06), transparent 64%),
    radial-gradient(40% 30% at 92% 6%, rgba(201, 169, 97, 0.05), transparent 62%);
}

body.luxe .section { padding: clamp(4rem, 8.5vw, 7.5rem) 0; }
body.luxe .section-tight { padding: clamp(2.4rem, 5vw, 4rem) 0; }
body.luxe .section + .section { border-top: 1px solid var(--hair); }

/* ---------------------------------------------------------------- type */

body.luxe .sec-head { max-width: 54rem; }
body.luxe .sec-head h2 { margin: 0.9rem 0 0; text-wrap: balance; }

body.luxe .lead {
  font-family: var(--font-sans);
  color: var(--silver);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.72;
}

body.luxe .muted, body.luxe .microcopy { color: var(--pewter); }
body.luxe .mono { font-family: var(--font-sans); letter-spacing: 0.04em; }

/* The pill eyebrow is the single loudest generic tell on these pages. It
   becomes the landing's hairline-and-letterspacing treatment instead. */
body.luxe .eyebrow {
  font-family: var(--font-sans);
  font-size: 0.688rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  gap: 0.7em;
}

body.luxe .eyebrow::before {
  content: '';
  width: 2.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne));
}

body.luxe .center .eyebrow::before,
body.luxe .cta-band .eyebrow::before { display: none; }

/* --------------------------------------------------------------- cards */

body.luxe .card {
  background: var(--obsidian);
  border: 1px solid var(--hair);
  border-radius: 2px;
  padding: clamp(1.6rem, 2.6vw, 2.3rem);
  box-shadow: none;
  transition: background 0.6s var(--slow), border-color 0.6s var(--slow);
}

/* No hover lift. A card that jumps under the cursor reads as a web widget;
   these should read as panels in a spec sheet. */
body.luxe .value-card:hover,
body.luxe .hw-card:hover,
body.luxe .card:hover {
  transform: none;
  background: #0B0E13;
  border-color: var(--hair-strong);
  box-shadow: none;
}

body.luxe .card h3 { font-size: 1.28rem; margin: 0 0 0.6rem; line-height: 1.26; }
body.luxe .card p { color: var(--silver); line-height: 1.68; }

/* Numbered badge: filled blue square -> hairline square with a serif numeral. */
body.luxe .value-card .ic-badge {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 1px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--champagne);
  background: none;
  border: 1px solid var(--hair-strong);
  margin-bottom: 1.1rem;
}

/* -------------------------------------------------------------- prices */

body.luxe .price-card { gap: 0.5rem; }
body.luxe .price-card .plan-name {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pewter);
}

/* Money is the one place the serif is allowed to be large. */
body.luxe .price .amount,
body.luxe .founding-price .now,
body.luxe .hw-price .amount {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--platinum);
}

body.luxe .price .per,
body.luxe .hw-price .note { color: var(--pewter); font-size: 0.9rem; }

body.luxe .founding-price .was,
body.luxe .price .was {
  color: var(--pewter);
  text-decoration: line-through;
  font-size: 1.1rem;
}

/* The saving was a green pill — the one colour on the page that belonged to
   another brand entirely. */
body.luxe .founding-price .save,
body.luxe .save {
  color: var(--champagne);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none;
  border: 1px solid rgba(201, 169, 97, 0.42);
  border-radius: 1px;
  padding: 0.34rem 0.6rem;
}

body.luxe .price-card.is-featured,
body.luxe .founding-card {
  border-color: rgba(201, 169, 97, 0.42);
  box-shadow: none;
}

body.luxe .founding-card::before,
body.luxe .custom-band::before {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}

body.luxe .deposit-cta {
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: 2px;
  background: rgba(201, 169, 97, 0.05);
}

/* --------------------------------------------------------------- lists */

/* Ticks and spec bullets were success-green and accent-blue. Both become
   champagne so a page never shows a third colour. */
body.luxe .feature-list li .tick,
body.luxe .spec-list li .ic { color: var(--champagne); }
body.luxe .feature-list li,
body.luxe .spec-list li { color: var(--silver); line-height: 1.6; }
body.luxe .feature-list li .no { color: var(--pewter); }

/* --------------------------------------------------------------- bands */

body.luxe .cta-band {
  border: 1px solid var(--hair);
  border-radius: 2px;
  background:
    radial-gradient(64% 120% at 50% 0%, rgba(201, 169, 97, 0.07), transparent 68%),
    var(--obsidian);
  padding: clamp(3rem, 7vw, 5.5rem);
}

body.luxe .custom-band { border-color: rgba(201, 169, 97, 0.32); box-shadow: none; }
body.luxe .custom-band .eyebrow { color: var(--champagne); }

body.luxe .custom-pillar {
  border: 1px solid var(--hair);
  border-radius: 2px;
  background: var(--glass);
  padding: 1.4rem;
}
body.luxe .custom-pillar h3 { font-size: 1.02rem; margin: 0 0 0.4rem; }
body.luxe .custom-pillar p { color: var(--silver); }

/* --------------------------------------------------------------- steps */

body.luxe .step { border-color: var(--hair); }
body.luxe .step .marker,
body.luxe .step .when { color: var(--champagne); }

/* ---------------------------------------------------------- page heads */

/* Interior pages open on a quiet head rather than the monolith — the hero
   treatment belongs to the landing alone, and repeating it would spend the
   one moment of theatre the site has.

   The hook is `.mkt-hero`, NOT `.stage`: `.stage` on this site means a row of
   the build roadmap, and targeting it here put ten rems of padding and a rule
   between every timeline entry. */
body.luxe .mkt-hero {
  padding: clamp(7rem, 13vw, 10.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--hair);
  position: relative;
}
body.luxe .mkt-hero h1 { margin: 1rem 0 0; text-wrap: balance; }
body.luxe .mkt-hero .lead { margin-top: 1.4rem; max-width: 46rem; }

/* ----------------------------------------------------------- roadmap */

body.luxe .roadmap .stage .marker {
  border-color: var(--champagne);
  background: var(--void);
}
body.luxe .roadmap .stage.is-done .marker { background: var(--champagne); }
body.luxe .roadmap .stage.is-now .marker {
  border-color: var(--champagne);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.16);
}
body.luxe .roadmap .stage:not(:last-child)::before { background: var(--hair); }
body.luxe .roadmap .stage h4 { font-family: var(--font-display); font-weight: 400; }
body.luxe .roadmap .stage p { color: var(--silver); }

@media (max-width: 900px) {
  body.luxe .custom-pillars { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------ grid fit */

/* `repeat(N, 1fr)` is really `repeat(N, minmax(auto, 1fr))`, so a track can
   never shrink below its content's min-content width. The roomier padding
   above raised that floor and pushed the four-up editions grid 117px past the
   viewport at 1440. minmax(0, 1fr) lets the tracks shrink as intended; the
   min-width reset does the same for the cards inside them. */
body.luxe .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
body.luxe .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
body.luxe .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
body.luxe .grid > * { min-width: 0; }

/* Four panels across is dense by nature — it gets its own tighter measure
   rather than forcing every card on the site to be cramped. */
body.luxe .grid-4 .card { padding: clamp(1.1rem, 1.5vw, 1.5rem); }
body.luxe .grid-4 .card h3 { font-size: 1.12rem; }

@media (max-width: 1040px) {
  body.luxe .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  body.luxe .grid-2,
  body.luxe .grid-3,
  body.luxe .grid-4 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------- mobile fits */

/* Three long-standing overflows on phones, all the same root cause: a box
   that cannot shrink below its content. Measured on production before this
   change — /axiom-os ran 10px past a 390px viewport and /support 15px — so
   these are fixes, not regressions from the treatment above.

   .cmp-wrap already sets overflow-x:auto and .cmp a 520px min-width, but the
   wrapper inherits min-width:auto from its parent track and grows to fit the
   table instead of scrolling it. Giving the wrapper a floor of zero is what
   lets the scroll container actually contain. */
body.luxe .cmp-wrap { min-width: 0; max-width: 100%; }

/* The hero glow is decoration and must never widen the document. */
body.luxe .hero-aurora { max-width: 100%; }
body.luxe .mkt-hero { overflow-x: clip; }

/* `axiom license activate <YOUR-LICENSE-KEY>` has no break opportunity, and
   the step grid's 1fr track will not shrink under it. */
body.luxe .step { min-width: 0; }
body.luxe .step > * { min-width: 0; }
body.luxe .step .cmd,
body.luxe code { overflow-wrap: anywhere; }

/* Deliberately NOT `body { overflow-x: clip }`. Clipping the body hides a
   sideways drag instead of removing its cause, and it would leave every future
   overflow undetectable — including by tools/site-doctor.mjs, which is what
   found these in the first place. Overflow stays visible so it stays findable. */

/* The landing's buttons are generous — 1.9rem of side padding under uppercase,
   letterspaced type. That is right at full width and 35px too wide on a phone
   once a label reads "RESERVE WINDOWS EDITION", because .btn is nowrap. On
   small screens they tighten and are allowed to wrap. */
@media (max-width: 620px) {
  body.luxe .btn {
    padding: 0.95rem 1.15rem;
    letter-spacing: 0.04em;
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }
}

/* Footer navigation sat at a 20px target height. WCAG 2.5.8 asks for 24px on
   anything that isn't an inline link inside a sentence, and these are a nav
   row, not prose. Padding buys the height without moving the layout. */
body.luxe .foot-links a {
  display: inline-block;
  padding-block: 0.2rem;
  min-height: 24px;
}

/* ------------------------------------------------------- comparison table */

body.luxe .cmp th,
body.luxe .cmp td { border-bottom-color: var(--hair); }
body.luxe .cmp thead th { color: var(--pewter); letter-spacing: 0.18em; }
body.luxe .cmp td .yes { color: var(--champagne); }
body.luxe .cmp td .no { color: var(--pewter); }

/* Prose links carried the old accent blue, which was the last cool colour
   left on an otherwise champagne page. */
body.luxe main p a:not(.btn),
body.luxe main li a:not(.btn),
body.luxe main td a:not(.btn) {
  color: var(--champagne);
  text-decoration-color: rgba(201, 169, 97, 0.4);
  text-underline-offset: 0.2em;
}
body.luxe main p a:not(.btn):hover,
body.luxe main li a:not(.btn):hover,
body.luxe main td a:not(.btn):hover { color: var(--champagne-soft); }

/* A link that is the whole of its paragraph is a call to action, not prose, so
   it needs a real target height — as does the gate's help/legal nav. Both sat
   at 17px against the 24px WCAG 2.5.8 minimum. */
body.luxe .microcopy > a:only-child,
body.luxe nav.gate-foot a {
  display: inline-block;
  padding-block: 0.25rem;
  min-height: 24px;
}
