/* ==========================================================================
   Tessera — design system
   Modelled on the Jump Seat landing page (onepagelove.com/jump-seat): deep
   indigo ground, one loud lime accent, geometric sans set tight and large,
   pill buttons, soft-edged white cards, generous vertical rhythm, and content
   that reveals on scroll.

   Surface tokens are re-declared per section rather than per component, so a
   band only has to say "I am light" and every card, table and rule inside it
   follows. That is why the old --ink / --paper names survive: view files carry
   inline styles referencing them, and they now mean "text/background on the
   current surface" rather than any fixed colour.
   ========================================================================== */

:root {
  /* brand palette */
  --night:      #060761;   /* the ground the whole site sits on */
  --night-2:    #0C0D74;   /* raised panel on the ground */
  --night-3:    #14156B;   /* hairline / hover wash */
  --lime:       #D1FA30;   /* the single accent — CTAs and emphasis only */
  --lime-d:     #B5DC18;
  --bone:       #F7F7F5;   /* light contrast band */
  --lilac:      #EDEDFA;   /* second light band, cooler */
  --slate:      #758696;   /* muted text on light */
  --slate-d:    #5D6C7B;

  /* --- surface tokens: dark by default, overridden inside light bands ----- */
  --paper:      var(--night);
  --paper-2:    var(--night-2);
  --paper-3:    #0A0B6B;
  --ink:        #FFFFFF;
  --ink-2:      #C3C6E8;
  --ink-3:      #9095CC;
  --rule:       rgba(255, 255, 255, .14);
  --accent:     var(--lime);
  --accent-ink: var(--night);   /* text that sits on the accent */
  --link:       var(--lime);

  /* legacy accent aliases, kept so older inline styles resolve */
  --verdigris:  var(--lime);
  --verdigris-d:var(--lime-d);
  --brass:      var(--lime);
  --brass-l:    rgba(209, 250, 48, .12);
  --clay:       #FF8A5B;
  --clay-l:     rgba(255, 138, 91, .12);

  /* Nohemi and Product Sans are the licensed faces the reference design uses.
     Neither ships here; drop the files in /public/fonts and add an @font-face
     and they take over — the CSP already allows font-src 'self'. */
  --sans: 'Nohemi', 'Product Sans', 'Segoe UI Variable Display', Inter,
          -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --serif: var(--sans);
  --mono: var(--sans);

  --wrap: 1240px;
  --gap: 24px;
  --radius: .63rem;
  --radius-lg: 1.25rem;
  --pill: 1.88rem;
  --shadow: 0 24px 60px -32px rgba(0, 0, 0, .65);
  --shadow-light: 0 20px 44px -28px rgba(6, 7, 97, .35);
}

/* Light bands. One class flips every surface token beneath it. */
.on-light,
.section--tint,
.section--light,
.pagehead,
.prose {
  --paper:   var(--bone);
  --paper-2: #FFFFFF;
  --paper-3: var(--lilac);
  --ink:     var(--night);
  --ink-2:   #3A4056;
  --ink-3:   var(--slate);
  --rule:    #E2E2EC;
  --link:    var(--night);
  background: var(--paper);
  color: var(--ink);
}
/* The cooler of the two light bands, so consecutive light sections still read
   as separate blocks rather than one long stretch of the same off-white. */
.section--light { --paper: var(--lilac); --paper-3: #FFFFFF; }

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--night);
  color: #F7F7F5;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .01rem;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--link); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--lime-d); }
.on-light a:hover, .section--tint a:hover, .prose a:hover, .pagehead a:hover { color: var(--slate-d); }

/* Display type: large, tight, and never in a decorative face. */
h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.03rem;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: 1.3rem; letter-spacing: -.01rem; line-height: 1.15; }
h4 { font-size: 1rem; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 28px; }
.narrow { max-width: 820px; }

/* The tessera motif is retired; the rule is now a single lime hairline. */
.tiles { height: 2px; background: var(--lime); opacity: .9; }
.tiles--verdigris { background: var(--lime); }

/* ==========================================================================
   Micro-labels, chips, buttons
   ========================================================================== */
.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12rem;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 1.1rem;
  display: flex; align-items: center; gap: .55rem;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: currentColor; flex: none; }
.on-light .eyebrow, .section--tint .eyebrow, .prose .eyebrow, .pagehead .eyebrow { color: var(--night); }

.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .08rem; text-transform: uppercase;
  padding: .4rem .75rem; border: 1px solid var(--rule); border-radius: var(--pill);
  background: transparent; color: var(--ink-2); white-space: nowrap;
}
.chip--age    { border-color: var(--lime); color: var(--lime); font-weight: 700; }
.chip--free   { border-color: rgba(209, 250, 48, .5); color: var(--lime); }
.chip--brass  { border-color: var(--rule); color: var(--ink-2); }
.on-light .chip--age, .section--tint .chip--age, .pagehead .chip--age { border-color: var(--night); color: var(--night); background: var(--lime); }
.on-light .chip--free, .section--tint .chip--free, .pagehead .chip--free { border-color: var(--night); color: var(--night); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-size: .95rem; font-weight: 600; letter-spacing: .01rem;
  padding: .95rem 1.7rem; border-radius: var(--pill); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .16s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--lime); color: var(--night); }
.btn--primary:hover { background: #E4FF66; color: var(--night); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--block { width: 100%; }
.btn--sm { padding: .55rem 1.05rem; font-size: .82rem; }
.btn[aria-disabled='true'] { background: transparent; color: var(--ink-3); border-color: var(--rule); cursor: not-allowed; }

/* ==========================================================================
   Header — sticky, dark, with the CTA always in reach
   ========================================================================== */
.topstrip {
  background: var(--lime); color: var(--night);
  font-size: .68rem; font-weight: 600; letter-spacing: .12rem; text-transform: uppercase;
}
.topstrip .wrap { display: flex; gap: 1rem; justify-content: center; align-items: center; padding-block: .55rem; text-align: center; }

.masthead {
  background: rgba(6, 7, 97, .88);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 40;
}
.masthead .wrap { display: flex; align-items: center; gap: 1.5rem; padding-block: 16px; }

.wordmark { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: #fff; flex: none; }
.wordmark__tiles { display: grid; grid-template-columns: repeat(2, 9px); gap: 2px; flex: none; transform: rotate(45deg); }
.wordmark__tiles i { width: 9px; height: 9px; background: var(--lime); display: block; border-radius: 1px; }
.wordmark__tiles i:nth-child(2) { background: rgba(209, 250, 48, .55); }
.wordmark__tiles i:nth-child(3) { background: rgba(209, 250, 48, .55); }
.wordmark__tiles i:nth-child(4) { background: #fff; }
.wordmark__text b { display: block; font-size: 1.3rem; font-weight: 700; letter-spacing: -.02rem; line-height: 1; }
.wordmark__text span { display: block; font-size: .55rem; font-weight: 600; letter-spacing: .2rem; color: var(--lime); margin-top: 4px; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
.nav a { font-size: .9rem; font-weight: 500; text-decoration: none; color: #C3C6E8; white-space: nowrap; }
.nav a:hover, .nav a[aria-current='page'] { color: var(--lime); }
.nav .chip { border-color: rgba(255,255,255,.25); }

/* The nav CTA repeats the hero action so it is never more than a glance away. */
.navcta { background: var(--lime); color: var(--night); font-weight: 600; font-size: .86rem; padding: .6rem 1.15rem; border-radius: var(--pill); }
.nav a.navcta:hover { background: #E4FF66; color: var(--night); }

.navtoggle {
  display: none; margin-left: auto; background: none; border: 1px solid var(--rule);
  border-radius: var(--pill); padding: .55rem .95rem; font-size: .72rem; font-weight: 600;
  letter-spacing: .1rem; cursor: pointer; color: #fff;
}

@media (max-width: 1040px) {
  .navtoggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--night);
    border-bottom: 1px solid var(--rule); flex-direction: column; align-items: stretch;
    gap: 0; padding: .5rem 28px 1.4rem; margin-left: 0; display: none;
  }
  .nav[data-open='true'] { display: flex; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--rule); }
  .nav a.navcta { margin-top: 1rem; text-align: center; border-bottom: 0; }
}

/* ==========================================================================
   Hero — oversized statement, marks underneath, panel to the side
   ========================================================================== */
.hero {
  padding: 96px 0 84px;
  background:
    radial-gradient(900px 520px at 78% -20%, rgba(209, 250, 48, .16) 0%, transparent 60%),
    radial-gradient(700px 420px at 8% 110%, rgba(237, 237, 250, .08) 0%, transparent 60%),
    var(--night);
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.hero h1 { margin-bottom: .28em; }
.hero__lead { font-size: 1.2rem; color: var(--ink-2); max-width: 32em; }
.hero__marks { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.8rem 0 2.1rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; }

.keyfacts {
  background: var(--night-2); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden;
}
.keyfacts__head {
  background: var(--lime); color: var(--night); padding: 1rem 1.4rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .12rem; text-transform: uppercase;
}
.keyfacts dl { margin: 0; padding: .5rem 1.4rem 1.4rem; }
.keyfacts dt { font-size: .66rem; font-weight: 600; letter-spacing: .11rem; text-transform: uppercase; color: var(--lime); margin-top: 1.3rem; }
.keyfacts dd { margin: .35rem 0 0; font-size: .97rem; color: #E8E9F7; }
.keyfacts a { color: #fff; }

@media (max-width: 1000px) {
  .hero { padding: 60px 0 56px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 104px 0; }
.section--tint { padding: 104px 0; }
.section--light { padding: 104px 0; }
.section--ink { background: var(--night); color: #E8E9F7; padding: 104px 0; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink .eyebrow { color: var(--lime); }
.section--ink a { color: var(--lime); }
.section__head { max-width: 780px; margin-bottom: 3rem; }
.section__head p { color: var(--ink-2); font-size: 1.08rem; }
.section--ink .section__head p { color: var(--ink-2); }

@media (max-width: 800px) {
  .section, .section--tint, .section--light, .section--ink { padding: 64px 0; }
}

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1040px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* --- generic card: soft edges, no hard border on light --------------------- */
.card {
  background: var(--paper-2); border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem; position: relative; overflow: hidden;
  border: 1px solid var(--rule);
  transition: transform .2s ease, box-shadow .2s ease;
}
.on-light .card, .section--tint .card, .prose .card { border-color: transparent; box-shadow: var(--shadow-light); }
.card:hover { transform: translateY(-4px); }
.card::before { content: none; }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .97rem; color: var(--ink-2); }
.card__num {
  font-size: .7rem; font-weight: 700; letter-spacing: .12rem; text-transform: uppercase;
  color: var(--ink-3); display: block; margin-bottom: 1rem;
}
.on-light .card__num, .section--tint .card__num, .prose .card__num { color: var(--slate); }

/* --- numbered process steps ---------------------------------------------- */
.steps { display: grid; gap: 18px; counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; align-items: start;
  background: var(--paper-2); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 2.1rem 2rem;
}
.on-light .step, .section--tint .step { border-color: transparent; box-shadow: var(--shadow-light); }
.step__no {
  font-size: .68rem; font-weight: 700; letter-spacing: .13rem; text-transform: uppercase;
  background: var(--lime); color: var(--night); border-radius: var(--pill);
  padding: .45rem .9rem; white-space: nowrap;
}
.step h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); margin-bottom: .5rem; }
.step p { color: var(--ink-2); font-size: 1rem; margin-bottom: 0; }
@media (max-width: 620px) {
  .step { grid-template-columns: 1fr; gap: 1rem; padding: 1.6rem 1.4rem; }
  .step__no { justify-self: start; }
}

/* --- coin comparison ------------------------------------------------------ */
.coins { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
@media (max-width: 800px) { .coins { grid-template-columns: 1fr; } }
.coin {
  border-radius: var(--radius-lg); padding: 2.2rem 2rem;
  border: 1px solid var(--rule); background: var(--paper-2);
}
.on-light .coin, .section--tint .coin { border-color: transparent; box-shadow: var(--shadow-light); }
.coin--gold { background: var(--night-2); color: #fff; border-color: rgba(255,255,255,.14); }
.coin--gold h3, .coin--gold p, .coin--gold li { color: #E8E9F7 !important; }
.coin--sweeps { background: var(--lime); border-color: var(--lime); }
.coin--sweeps h3, .coin--sweeps p, .coin--sweeps li { color: var(--night) !important; }
.coin__mark {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 700; font-size: .85rem; letter-spacing: .04rem; margin-bottom: 1.2rem;
}
.coin--gold .coin__mark { background: var(--lime); color: var(--night); }
.coin--sweeps .coin__mark { background: var(--night); color: var(--lime); }
.coin ul { margin: 1.2rem 0 0; padding: 0; list-style: none; }
.coin li { position: relative; padding-left: 1.5rem; margin-bottom: .7rem; font-size: .96rem; }
.coin li::before { content: ''; position: absolute; left: 0; top: .58em; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.coin--sweeps li::before { background: var(--night); }

/* ==========================================================================
   Brand cards and offer panels
   ========================================================================== */
.brandcard {
  background: var(--paper-2); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.on-light .brandcard, .section--tint .brandcard, .prose .brandcard { border-color: transparent; box-shadow: var(--shadow-light); }
.brandcard:hover { transform: translateY(-4px); }
.brandcard__top { display: flex; align-items: flex-start; gap: .8rem; padding: 1rem 1.3rem .8rem; }
.brandcard__rank {
  font-size: .68rem; font-weight: 700; letter-spacing: .1rem; color: var(--night);
  background: var(--lime); border-radius: var(--pill); padding: .35rem .7rem; flex: none;
}
.brandcard__name { font-size: 1.3rem; font-weight: 700; letter-spacing: -.02rem; margin: 0 0 .15rem; line-height: 1.05; }
.brandcard__name a { text-decoration: none; color: var(--ink); }
.brandcard__name a:hover { color: var(--ink); text-decoration: underline; text-decoration-color: var(--lime); text-decoration-thickness: 2px; }
.brandcard__sum { font-size: .88rem; color: var(--ink-3); margin: 0; }
.brandcard__body { padding: 0 1.3rem 1.3rem; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.brandcard__body p { font-size: .95rem; color: var(--ink-2); }
.brandcard__actions { margin-top: auto; display: grid; gap: .55rem; }

/* The offer panel is the loudest thing on a card: indigo block, lime figures. */
.offer { border: 0; border-radius: var(--radius); background: var(--night); padding: .95rem 1.05rem; }
.offer__label { font-size: .62rem; font-weight: 700; letter-spacing: .14rem; text-transform: uppercase; color: var(--lime); margin: 0 0 .6rem; }
.offer__text { font-size: 1.2rem; font-weight: 600; line-height: 1.2; margin: 0; color: #fff; }
.offer__sub { font-size: .82rem; color: #B9BDE4; margin: .5rem 0 0; }
.offer--pending { background: var(--night-2); }
.offer--pending .offer__label { color: #9095CC; }
.offer--pending .offer__text { font-size: .92rem; color: #9095CC; }

.offernote { font-size: .71rem; color: var(--ink-3); line-height: 1.45; margin: 0; }

/* ==========================================================================
   Tables and lists
   ========================================================================== */
.tablewrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: var(--radius-lg); background: var(--paper-2); }
.on-light .tablewrap, .section--tint .tablewrap, .prose .tablewrap { border-color: transparent; box-shadow: var(--shadow-light); }
table { width: 100%; border-collapse: collapse; font-size: .94rem; min-width: 560px; }
th, td { padding: 1.05rem 1.3rem; text-align: left; border-bottom: 1px solid var(--rule); vertical-align: middle; }
th {
  font-size: .64rem; font-weight: 700; letter-spacing: .12rem; text-transform: uppercase;
  color: var(--night); background: var(--lime);
}
.section--ink th, body > table th { color: var(--night); }
td { color: var(--ink-2); }
td strong { color: var(--ink); }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(209, 250, 48, .07); }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.checklist li { position: relative; padding-left: 2rem; color: var(--ink-2); font-size: .98rem; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: .38em; width: 14px; height: 14px;
  background: var(--lime); border-radius: 50%;
}
.checklist--watch li::before { background: transparent; border: 2px solid var(--lime); }

.statelist { display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.statelist li {
  font-size: .74rem; font-weight: 500; letter-spacing: .02rem; padding: .4rem .75rem;
  border-radius: var(--pill); background: transparent; border: 1px solid var(--rule); color: var(--ink-2);
}
.statelist--out li { border-color: rgba(117, 134, 150, .5); color: var(--ink-3); }
.statelist--in li { border-color: var(--lime); color: var(--ink); background: rgba(209, 250, 48, .14); }

/* ==========================================================================
   Callouts — flat blocks, one lime edge, no decorative tint
   ========================================================================== */
.callout {
  border: 1px solid var(--rule); border-left: 4px solid var(--lime);
  border-radius: var(--radius); background: var(--paper-2); padding: 1.6rem 1.7rem;
}
.on-light .callout, .section--tint .callout, .prose .callout { border-color: transparent; border-left-color: var(--lime); box-shadow: var(--shadow-light); }
.callout--clay { border-left-color: var(--lime); background: var(--night); color: #E8E9F7; }
.callout--clay h3 { color: #fff; }
.callout--clay p { color: #C3C6E8; }
.callout--clay a { color: var(--lime); }
.callout--brass { border-left-color: var(--lime); }
.callout h3 { font-size: .78rem; font-weight: 700; letter-spacing: .11rem; text-transform: uppercase; margin-bottom: .7rem; }
.callout p { font-size: .95rem; color: var(--ink-2); }
.callout p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Full-width call-to-action band
   ========================================================================== */
.ctaband { background: var(--lime); color: var(--night); padding: 84px 0; text-align: center; }
.ctaband h2 { color: var(--night); max-width: 18ch; margin-inline: auto; }
.ctaband p { color: rgba(6, 7, 97, .78); font-size: 1.1rem; max-width: 46ch; margin-inline: auto 1.8rem; margin-inline: auto; margin-bottom: 2rem; }
.ctaband .btn--primary { background: var(--night); color: var(--lime); }
.ctaband .btn--primary:hover { background: #0C0D74; color: var(--lime); }
.ctaband .btn--ghost { color: var(--night); border-color: rgba(6, 7, 97, .35); }
.ctaband .btn--ghost:hover { background: var(--night); color: var(--lime); border-color: var(--night); }
.ctaband__row { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.ctaband small { display: block; margin-top: 1.6rem; font-size: .76rem; color: rgba(6, 7, 97, .7); max-width: 60ch; margin-inline: auto; line-height: 1.55; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq { display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--rule); border-radius: var(--radius); background: var(--paper-2); overflow: hidden; }
.on-light .faq__item, .section--tint .faq__item { border-color: transparent; box-shadow: var(--shadow-light); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--sans); font-size: 1.05rem; font-weight: 600; color: var(--ink);
  padding: 1.4rem 1.6rem;
}
.faq__q::after {
  content: '+'; font-size: 1.5rem; font-weight: 400; line-height: 1; color: var(--lime); flex: none;
  transition: transform .2s ease;
}
.faq__item[data-open='true'] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 1.6rem 1.5rem; color: var(--ink-2); font-size: .97rem; }
.faq__a[hidden] { display: none; }

/* ==========================================================================
   Article / legal pages
   ========================================================================== */
.pagehead { padding: 88px 0 56px; }
.pagehead h1 { margin-bottom: .25em; font-size: clamp(2.3rem, 5.4vw, 4rem); }
.pagehead p { color: var(--ink-2); font-size: 1.1rem; max-width: 48em; }

.prose { padding: 64px 0 96px; }
.prose h2 { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--rule); font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { margin-top: 2.2rem; }
.prose ul, .prose ol { padding-left: 1.25rem; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; color: var(--ink-2); }
.prose > p, .prose > div > p { color: var(--ink-2); }
.prose .callout, .prose .tablewrap { margin: 1.8rem 0; }

.crumbs { font-size: .68rem; font-weight: 600; letter-spacing: .11rem; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1.3rem; }
.crumbs a { color: var(--ink-3); }

.toc { background: var(--paper-3); border-radius: var(--radius-lg); padding: 1.6rem 1.8rem; margin-bottom: 2.6rem; }
.toc p { font-size: .64rem; font-weight: 700; letter-spacing: .13rem; text-transform: uppercase; color: var(--ink-3); margin-bottom: .8rem; }
.toc ol { margin: 0; padding-left: 1.1rem; columns: 2; column-gap: 2.4rem; }
.toc li { margin-bottom: .4em; font-size: .93rem; }
@media (max-width: 700px) { .toc ol { columns: 1; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--night); color: #9095CC; padding: 88px 0 0; font-size: .93rem; }
.footer a { color: #C3C6E8; text-decoration: none; }
.footer a:hover { color: var(--lime); }
.footer h4 { font-size: .64rem; font-weight: 700; letter-spacing: .14rem; text-transform: uppercase; color: var(--lime); margin: 0 0 1.2rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 56px; }
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 580px) { .footer__grid { grid-template-columns: 1fr; } }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer__mark b { color: #fff; font-size: 1.5rem; font-weight: 700; letter-spacing: -.02rem; display: block; }
.footer__mark span { font-size: .55rem; font-weight: 600; letter-spacing: .2rem; color: var(--lime); }
.footer__mark p { margin-top: 1.1rem; font-size: .9rem; line-height: 1.65; }

.footer__legal { border-top: 1px solid var(--rule); padding: 32px 0 48px; display: grid; gap: 1rem; }
.footer__legal p { font-size: .79rem; line-height: 1.7; color: #7C81BC; margin: 0; }
.footer__marks { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer__marks .chip { border-color: rgba(255,255,255,.2); color: #C3C6E8; }
.footer__marks .chip--age { border-color: var(--lime); color: var(--lime); }

/* ==========================================================================
   Cookie banner
   ========================================================================== */
.cookie {
  position: fixed; bottom: 18px; left: 18px; z-index: 90; max-width: 390px;
  background: var(--night-2); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem; box-shadow: var(--shadow); color: #E8E9F7;
}
.cookie[hidden] { display: none; }
.cookie p { font-size: .85rem; color: #C3C6E8; margin-bottom: 1rem; }
.cookie a { color: var(--lime); }
.cookie__row { display: flex; gap: .5rem; }
.cookie .btn { padding: .6rem 1rem; font-size: .84rem; flex: 1; }
.cookie .btn--ghost { color: #fff; border-color: var(--rule); }
@media (max-width: 520px) { .cookie { left: 12px; right: 12px; bottom: 12px; max-width: none; } }

/* ==========================================================================
   Scroll reveal
   The reference design animates each block in as it enters the viewport. JS
   adds .is-in; without JS, or with reduced motion, everything is simply visible.
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.is-in { opacity: 1; transform: none; }
/* A .reveal used as a grid item must not collapse the card inside it, or the
   cards in a row stop matching heights. */
.grid > .reveal { display: flex; }
.grid > .reveal > * { flex: 1; }

/* Anchor targets sit under the sticky masthead without this. */
:target { scroll-margin-top: 104px; }

/* accessibility */
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; z-index: 100; background: var(--lime); color: var(--night); padding: .7rem 1.2rem; border-radius: var(--pill); font-weight: 600; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   Offer figures
   The numbers are why someone is on the page, so they get display weight and
   the accent colour — nothing else on a light band is allowed lime type.
   ========================================================================== */
.headline {
  font-size: clamp(1.25rem, 2.1vw, 1.55rem); font-weight: 700; line-height: 1.1;
  letter-spacing: -.025rem; color: var(--ink); margin: 0 0 .25rem;
}
.headline--lg { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: .6rem; color: var(--ink); }
.headline--sm { font-size: 1.15rem; margin-bottom: .4rem; }
.headline__sub {
  font-size: .64rem; font-weight: 600; letter-spacing: .12rem;
  text-transform: uppercase; color: var(--ink-3); margin: 0 0 .8rem;
}

/* Tier stack inside the offer panel: label / figure / price. */
.tiers { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.tier {
  display: grid; grid-template-columns: 1fr auto; gap: .15rem .9rem;
  padding-bottom: .55rem; border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.tier:last-child { padding-bottom: 0; border-bottom: 0; }
.tier__label {
  grid-column: 1 / -1;
  font-size: .58rem; font-weight: 700; letter-spacing: .13rem;
  text-transform: uppercase; color: #9095CC;
}
.tier__headline { font-size: 1.02rem; font-weight: 600; line-height: 1.25; color: #fff; }
.tier__price { font-weight: 700; font-size: .88rem; color: #fff; white-space: nowrap; align-self: end; }
/* The free tier is the one policy wants read first, so it carries the accent. */
.tier--welcome .tier__label { color: var(--lime); }
.tier--welcome .tier__headline { font-size: 1.14rem; color: var(--lime); }
.tier--welcome .tier__price { color: var(--lime); }

/* Tier label used in tables, where the stacked layout will not fit. */
.tag {
  display: inline-block; font-size: .58rem; font-weight: 700; letter-spacing: .11rem;
  text-transform: uppercase; padding: .35rem .65rem; border-radius: var(--pill);
  border: 1px solid var(--rule); background: transparent; color: var(--ink-2); white-space: nowrap;
}
.tag--welcome { border-color: var(--night); background: var(--night); color: var(--lime); }
.tag--pack { border-color: var(--night); color: var(--night); }
.tag--extra { border-color: var(--rule); color: var(--ink-3); }

.ta-r { text-align: right; }

@media (max-width: 580px) {
  .tier { grid-template-columns: 1fr; }
  .tier__price { align-self: start; }
}

/* ==========================================================================
   Brand logos
   Supplied artwork varies: transparent PNG/WebP with dark wordmarks, one JPG
   with a baked-in white rectangle, and one white wordmark. A plate behind each
   one normalises them — white by default, indigo where the art demands it —
   so the row reads as a set rather than seven unrelated crops.
   ========================================================================== */
/* Flex, not grid. As a centred grid item the image's containing block height is
   treated as indefinite, so height/max-height percentages collapse to auto, the
   image overflows the plate and overflow:hidden crops it. A flex container's
   content box is definite, so the percentages resolve and the mark is never cut. */
.logo {
  display: flex; align-items: center; justify-content: center; flex: none;
  border-radius: var(--radius); overflow: hidden;
  background: #FFFFFF;
}
.logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; }
.logo--dark { background: var(--night); }

/* Card and detail-page plates. */
.logo--md { width: 100%; height: 76px; padding: 6px 12px; }
.logo--lg { width: 200px; height: 84px; padding: 10px 16px; }
/* Inline plate for table rows, where the brand name carries the identification
   and the logo is only a recognition cue. */
.logo--sm { width: 78px; height: 32px; padding: 3px 6px; border-radius: 5px; }

/* On a white surface an all-white plate would float, so it gets a hairline. */
.on-light .logo:not(.logo--dark),
.section--tint .logo:not(.logo--dark),
.prose .logo:not(.logo--dark),
.pagehead .logo:not(.logo--dark) { box-shadow: inset 0 0 0 1px #E2E2EC; }

/* Logo band across the top of a brand card. */
.brandcard__logo { padding: 1.1rem 1.2rem 0; }
.brandcard__logo .logo--md { height: 72px; }

.tablecell__brand { display: flex; align-items: center; gap: .7rem; }
@media (max-width: 700px) { .logo--lg { width: 168px; height: 70px; } }
