/* =========================================================================
   Pixup Play — site stylesheet
   Brand-derived: colours sampled from the logo lockup, and the ascending
   skewed bar of the mark is the structural motif throughout.
     #00AAEB cyan · #00222F navy · #9B9B9B/#C3C3C3/#E2E2E2 bar ramp
   Committed to a dark ground: the wordmark's "PLAY" is white.
   1 tokens · 2 reset · 3 layout · 4 masthead · 5 type
   6 motif · 7 blocks · 8 pages · 9 footer
   Breakpoints: 34 / 48 / 62rem. Mobile is the base case.
   ========================================================================= */

/* ---------- 1. tokens ---------- */
:root {
  /* brand */
  --cyan:        #00AAEB;
  --cyan-lift:   #4FC3F7;
  --cyan-deep:   #0089BD;
  --bar-1:       #9B9B9B;
  --bar-2:       #C3C3C3;
  --bar-3:       #E2E2E2;

  /* ground + ink */
  --ground:      #00222F;
  --ground-lift: #04303F;
  --ground-deep: #001721;
  --ink:         #EAF4F8;
  --ink-soft:    #9FBECA;
  --ink-faint:   #6B8B99;
  --rule:        #0C3D4E;
  --rule-lift:   #14556B;

  --skew: -14deg;

  --s-1: .5rem;  --s-2: .75rem; --s-3: 1rem;
  --s-4: 1.5rem; --s-5: 2rem;   --s-6: 3rem;

  --band-y: clamp(3rem, 7vw, 5.5rem);
  --measure: 34rem;
  --shell: 76rem;
  --gutter: 1.25rem;

  --f-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-text: "Spectral", Georgia, "Times New Roman", serif;
  --f-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

@media (min-width: 48rem) { :root { --gutter: 2rem; } }

/* ---------- 2. reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, figure, ul, ol { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

/* ---------- 3. layout ---------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.band { padding-block: var(--band-y); }
section { border-top: 1px solid var(--rule); }
.band__head { max-width: 46rem; margin-bottom: var(--s-5); }
@media (min-width: 48rem) { .band__head { margin-bottom: var(--s-6); } }
.stack-3 > * + * { margin-top: var(--s-3); }
.stack-4 > * + * { margin-top: var(--s-4); }

/* ---------- 4. masthead ---------- */
.masthead {
  position: sticky; top: 0; z-index: 30;
  background: rgba(0, 34, 47, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}

.masthead__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4); min-height: 4rem;
}

.wordmark { display: inline-flex; align-items: center; }
.wordmark img { height: 30px; width: auto; }
@media (min-width: 48rem) { .wordmark img { height: 34px; } }

.nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-mono); font-size: .6875rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); background: none;
  border: 1px solid var(--rule-lift); padding: .5rem .75rem; cursor: pointer;
}

.nav-toggle__bars { display: grid; gap: 3px; transform: skewX(var(--skew)); }
.nav-toggle__bars i { display: block; height: 2px; background: var(--cyan); }
.nav-toggle__bars i:nth-child(1) { width: 8px; }
.nav-toggle__bars i:nth-child(2) { width: 12px; }
.nav-toggle__bars i:nth-child(3) { width: 16px; }

.nav { display: flex; flex-direction: column; font-size: 1rem; font-weight: 500; }

.nav a {
  text-decoration: none; color: var(--ink-soft);
  padding-block: var(--s-2); border-bottom: 1px solid var(--rule);
  transition: color .18s ease;
}

.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--cyan); }

.nav-panel { display: none; padding-bottom: var(--s-4); border-top: 1px solid var(--rule); }
.nav-panel[data-open="true"] { display: block; }

@media (min-width: 62rem) {
  .nav-toggle { display: none; }
  .nav-panel { display: block !important; padding: 0; border-top: 0; }
  .masthead__bar { min-height: 4.5rem; }
  .masthead__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); }
  .nav { flex-direction: row; gap: var(--s-4); font-size: .875rem; }
  .nav a { padding-block: .25rem; border-bottom: 2px solid transparent; }
  .nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--cyan); }
}

/* ---------- 5. type ---------- */
h1, h2, h3 { font-family: var(--f-display); font-weight: 800; letter-spacing: -.03em; text-wrap: balance; }

h1 { font-size: clamp(2.15rem, 6.4vw, 4.15rem); line-height: 1.0; text-transform: uppercase; }
h1 em { font-style: normal; color: var(--cyan); }

.band__head h2, .h2 { font-size: clamp(1.55rem, 4.2vw, 2.4rem); line-height: 1.08; margin-top: var(--s-2); text-transform: uppercase; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-mono); font-size: .6875rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--cyan);
}

/* the mark, miniaturised: three ascending skewed bars */
.eyebrow::before {
  content: ""; width: 15px; height: 11px; flex: none;
  background:
    linear-gradient(var(--bar-1) 0 0) 0 100% / 3px 5px no-repeat,
    linear-gradient(var(--bar-2) 0 0) 6px 100% / 3px 8px no-repeat,
    linear-gradient(var(--bar-3) 0 0) 12px 100% / 3px 11px no-repeat;
  transform: skewX(var(--skew));
}

.lede { max-width: var(--measure); color: var(--ink-soft); font-size: clamp(1.0625rem, 2.4vw, 1.1875rem); line-height: 1.55; }

.prose { font-family: var(--f-text); line-height: 1.65; }
.prose p + p { margin-top: var(--s-3); }
.prose em { font-style: italic; color: var(--ink); }

/* ---------- 6. motif: the ascending bar ---------- */
.rule-bars {
  display: flex; align-items: flex-end; gap: 5px; height: 26px;
  transform: skewX(var(--skew)); margin-bottom: var(--s-4);
}
.rule-bars i { display: block; width: 7px; background: var(--bar-1); }
.rule-bars i:nth-child(2) { height: 62%; background: var(--bar-2); }
.rule-bars i:nth-child(1) { height: 38%; }
.rule-bars i:nth-child(3) { height: 100%; background: var(--cyan); }

/* ---------- 7. blocks ---------- */
.btn {
  display: inline-block; font-family: var(--f-display);
  font-size: .875rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; text-decoration: none; text-align: center;
  padding: .85rem 1.5rem; border: 2px solid var(--cyan);
  background: var(--cyan); color: #00222F;
  transform: skewX(var(--skew));
  transition: background .16s ease, color .16s ease;
}

.btn > span { display: inline-block; transform: skewX(calc(var(--skew) * -1)); }
.btn--ghost { background: transparent; color: var(--cyan); }
.btn--ghost:hover { background: var(--cyan); color: #00222F; }
.btn:hover { background: var(--cyan-lift); border-color: var(--cyan-lift); }

.cta-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }
@media (max-width: 26rem) { .cta-row .btn { flex: 1 1 100%; } }

.chips { font-family: var(--f-mono); font-size: .75rem; color: var(--ink-faint); display: flex; flex-wrap: wrap; gap: .35rem .9rem; }
.chips b { font-weight: 500; color: var(--ink-soft); }

.grid-cards { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
@media (min-width: 34rem) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62rem) { .grid-cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card { background: var(--ground); padding: var(--s-4) var(--s-3); display: flex; flex-direction: column; gap: var(--s-1); transition: background .2s ease; }
@media (min-width: 48rem) { .card { padding: var(--s-5) var(--s-4); } }
.card:hover { background: var(--ground-lift); }
.card h3 { font-size: 1.0625rem; text-transform: uppercase; letter-spacing: -.01em; }
.card p { font-family: var(--f-text); font-size: .9375rem; color: var(--ink-soft); }
.card__tag { font-family: var(--f-mono); font-size: .625rem; letter-spacing: .11em; text-transform: uppercase; color: var(--cyan); }

.figures { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4) var(--s-3); }
@media (min-width: 48rem) { .figures { grid-template-columns: repeat(3, 1fr); gap: var(--s-5) var(--s-4); } }
@media (min-width: 62rem) { .figures--6 { grid-template-columns: repeat(6, 1fr); } }

.figure { border-top: 2px solid var(--cyan); padding-top: var(--s-2); }
.figure__n { display: block; font-weight: 800; font-size: clamp(1.7rem, 5vw, 2.7rem); letter-spacing: -.05em; font-variant-numeric: tabular-nums; line-height: 1; }
.figure__n sup { font-size: .4em; font-weight: 700; vertical-align: super; margin-left: .08em; color: var(--cyan); }
.figure__c { display: block; margin-top: var(--s-1); font-family: var(--f-text); font-size: .8125rem; color: var(--ink-soft); line-height: 1.4; }
@media (min-width: 48rem) { .figure__c { font-size: .875rem; } }

.ledger { border-top: 1px solid var(--rule); }
.ledger__row { display: grid; grid-template-columns: 1fr; gap: var(--s-1); padding-block: var(--s-4); border-bottom: 1px solid var(--rule); }
@media (min-width: 54rem) { .ledger__row { grid-template-columns: minmax(0, 19rem) minmax(0, 1fr); gap: var(--s-5); align-items: start; } }
.ledger__row h3 { font-size: 1.0625rem; line-height: 1.25; text-transform: uppercase; }
.ledger__row p { font-family: var(--f-text); font-size: .9375rem; color: var(--ink-soft); }

/* ---------- the cost comparison, drawn as the mark ---------- */
.compare { background: var(--ground-deep); border: 1px solid var(--rule); padding: var(--s-4) var(--s-3); }
@media (min-width: 48rem) { .compare { padding: var(--s-5) var(--s-4); } }

.compare__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-3); padding-bottom: var(--s-4); border-bottom: 1px solid var(--rule); }
.compare__title { font-size: .9375rem; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; }
.compare__unit { font-family: var(--f-mono); font-size: .625rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); white-space: nowrap; }

/* bars rise from a shared baseline, skewed to the mark's angle */
.plot { display: flex; align-items: flex-end; gap: clamp(.8rem, 4vw, 1.6rem); height: 190px; margin-top: var(--s-5); padding-inline: var(--s-1); }
.col { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }

.col__bar {
  transform: skewX(var(--skew)); transform-origin: bottom left;
  animation: rise .9s cubic-bezier(.2,.75,.3,1) both;
}

.col:nth-child(1) .col__bar { height: 53%;  background: var(--bar-1); animation-delay: .05s; }
.col:nth-child(2) .col__bar { height: 100%; background: var(--bar-2); animation-delay: .15s; }
.col:nth-child(3) .col__bar { height: 13%;  background: var(--cyan); animation-delay: .3s; }

@keyframes rise { from { transform: skewX(var(--skew)) scaleY(0); } to { transform: skewX(var(--skew)) scaleY(1); } }
@media (prefers-reduced-motion: reduce) { .col__bar { animation: none; } }

.col__val { font-weight: 800; font-size: clamp(1.1rem, 3.6vw, 1.5rem); letter-spacing: -.03em; font-variant-numeric: tabular-nums; margin-bottom: var(--s-1); }
.col:nth-child(3) .col__val { color: var(--cyan); }

.plot-legend { display: flex; gap: clamp(.8rem, 4vw, 1.6rem); margin-top: var(--s-2); padding-inline: var(--s-1); }
.plot-legend span { flex: 1; font-family: var(--f-mono); font-size: .625rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); line-height: 1.35; }

.compare__note { margin-top: var(--s-4); padding-top: var(--s-3); border-top: 1px solid var(--rule); font-family: var(--f-text); font-size: .9375rem; color: var(--ink-soft); }

.pubmark { display: inline-block; font-weight: 700; font-size: .9375rem; text-transform: uppercase; letter-spacing: .02em; color: var(--cyan); text-decoration: none; border-bottom: 2px solid var(--rule-lift); padding-bottom: 3px; }
.pubmark:hover { border-bottom-color: var(--cyan); }

/* ---------- 8. pages ---------- */
.hero { padding-block: clamp(2.5rem, 8vw, 5.5rem) var(--band-y); }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: var(--s-6); align-items: start; }
@media (min-width: 62rem) { .hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(2.5rem, 6vw, 4.5rem); } }

.split { display: grid; grid-template-columns: 1fr; gap: var(--s-5); }
@media (min-width: 58rem) { .split { grid-template-columns: minmax(0, 15rem) minmax(0, var(--measure)); gap: clamp(2rem, 6vw, 4.5rem); } }

.tone-deep { background: var(--ground-deep); }

.tiers { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
@media (min-width: 52rem) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier { background: var(--ground); padding: var(--s-4) var(--s-3); display: flex; flex-direction: column; gap: var(--s-2); }
@media (min-width: 48rem) { .tier { padding: var(--s-5) var(--s-4); } }
.tier--lead { background: var(--ground-lift); }
.tier__rate { font-weight: 800; font-size: clamp(2.2rem, 7vw, 3rem); letter-spacing: -.045em; line-height: 1; font-variant-numeric: tabular-nums; }
.tier--lead .tier__rate { color: var(--cyan); }
.tier__rate small { font-family: var(--f-mono); font-size: .28em; font-weight: 400; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); margin-left: .4em; }
.tier ul { display: flex; flex-direction: column; gap: var(--s-2); font-family: var(--f-text); font-size: .9375rem; color: var(--ink-soft); }
.tier li { padding-left: 1.15rem; position: relative; }
.tier li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 2px; background: var(--cyan); transform: skewX(var(--skew)); }

.note { font-family: var(--f-text); font-size: .9375rem; color: var(--ink-faint); border-left: 2px solid var(--cyan); padding-left: var(--s-3); max-width: var(--measure); }

.close { background: var(--cyan); color: #00222F; border-top: 0; }
.close .eyebrow { color: #00222F; }
.close .eyebrow::before { filter: brightness(.35) saturate(0); }
.close h2 { font-size: clamp(1.7rem, 5.2vw, 2.9rem); line-height: 1.03; max-width: 22ch; margin-top: var(--s-2); text-transform: uppercase; }
.close p { font-family: var(--f-text); color: #063845; max-width: var(--measure); margin-top: var(--s-3); }
.close .btn { background: #00222F; border-color: #00222F; color: var(--cyan); }
.close .btn:hover { background: #001721; border-color: #001721; }
.close .btn--ghost { background: transparent; color: #00222F; border-color: #00222F; }
.close .btn--ghost:hover { background: #00222F; color: var(--cyan); }

/* ---------- 9. footer ---------- */
.colophon {
  border-top: 1px solid var(--rule); padding-block: var(--s-5) var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-2);
  font-family: var(--f-mono); font-size: .75rem; color: var(--ink-faint);
}
@media (min-width: 48rem) { .colophon { flex-direction: row; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3) var(--s-5); align-items: baseline; } }
.colophon a { text-decoration: none; }
.colophon a:hover { color: var(--cyan); }
.footlinks { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* ---------- 10. added: reveals, faq, footer, links ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 60;
  background: var(--cyan); color: #00222F; padding: .7rem 1rem;
  font-weight: 700; text-decoration: none;
}
.skip:focus { left: 0; }

/* scroll reveal — a short rise, staggered by the observer, never a bounce */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,.75,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.hero__narrow { max-width: 46rem; }
.hero__narrow h1 { margin-block: var(--s-3) 0; }
.hero__narrow .lede, .hero__narrow .cta-row { margin-top: var(--s-4); }

h1 br { display: none; }
@media (min-width: 40rem) { h1 br { display: inline; } }

/* cards became links */
a.card { text-decoration: none; }
.card__go { margin-top: auto; padding-top: var(--s-2); font-family: var(--f-mono); font-size: .6875rem; letter-spacing: .08em; text-transform: uppercase; color: var(--cyan); }
a.ledger__row--link { text-decoration: none; }
a.ledger__row--link:hover h3 { color: var(--cyan); }
a.ledger__row--link .card__go { margin-top: var(--s-2); }
@media (min-width: 54rem) { a.ledger__row--link .card__go { grid-column: 2; } }

/* faq */
.faq { border-top: 1px solid var(--rule); max-width: 52rem; }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__item summary {
  list-style: none; cursor: pointer; padding-block: var(--s-3);
  font-weight: 700; font-size: 1rem; display: flex; gap: var(--s-3);
  align-items: baseline; justify-content: space-between;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex: none; width: 11px; height: 11px; margin-top: .35em;
  border-right: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg); transition: transform .22s ease;
}
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__item summary:hover { color: var(--cyan); }
.faq__body { padding-bottom: var(--s-4); }
.faq__body p { font-family: var(--f-text); color: var(--ink-soft); max-width: var(--measure); }

/* footer */
.foot { border-top: 1px solid var(--rule); background: var(--ground-deep); }
.foot__grid { display: grid; grid-template-columns: 1fr; gap: var(--s-5); padding-top: var(--s-6); }
@media (min-width: 44rem) { .foot__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68rem) { .foot__grid { grid-template-columns: 1.1fr .8fr 1.3fr; gap: var(--s-6); } }
.foot__col { display: flex; flex-direction: column; gap: var(--s-2); }
.foot__col a { text-decoration: none; font-size: .9375rem; color: var(--ink-soft); }
.foot__col a:hover { color: var(--cyan); }
.foot__col .eyebrow { margin-bottom: var(--s-1); }
.foot__legal p { font-family: var(--f-text); font-size: .8125rem; line-height: 1.55; color: var(--ink-faint); }
.foot__lic { color: var(--ink-soft) !important; border-left: 2px solid var(--cyan); padding-left: var(--s-2); }

/* ---------- 11. the operator console, illustrated ---------- */
.console {
  border: 1px solid var(--rule-lift); background: var(--ground);
  display: grid; gap: 0; overflow: hidden;
}

.console__bar {
  display: flex; align-items: center; gap: var(--s-2);
  padding: var(--s-2) var(--s-3); border-bottom: 1px solid var(--rule);
  background: var(--ground-lift);
  font-family: var(--f-mono); font-size: .6875rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint);
}
.console__dot { width: 7px; height: 7px; background: var(--bar-1); flex: none; transform: skewX(var(--skew)); }
.console__title { flex: 1; }
.console__live { display: inline-flex; align-items: center; gap: .45rem; color: var(--cyan); }
.console__live i { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.8); } }

.console__kpis { display: grid; grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid var(--rule); }
@media (min-width: 46rem) { .console__kpis { grid-template-columns: repeat(4, 1fr); } }
.kpi { padding: var(--s-3); border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
@media (min-width: 46rem) { .kpi { border-bottom: 0; } .kpi:last-child { border-right: 0; } }
.kpi__k { display: block; font-family: var(--f-mono); font-size: .625rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.kpi__v { display: block; margin-top: .35rem; font-weight: 800; font-size: clamp(1.1rem, 3.4vw, 1.45rem); letter-spacing: -.03em; font-variant-numeric: tabular-nums; color: var(--ink); }

.console__chart { padding: var(--s-3); border-bottom: 1px solid var(--rule); }
.console__chart svg { width: 100%; height: 64px; display: block; }
.spark {
  fill: none; stroke: var(--cyan); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 400; stroke-dashoffset: 400;
}
.is-in .spark { animation: draw 1.6s cubic-bezier(.3,.7,.3,1) .3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.console__feed { display: flex; flex-direction: column; }
.ev {
  display: flex; gap: var(--s-2); align-items: baseline;
  padding: .6rem var(--s-3); border-bottom: 1px solid var(--rule);
  font-family: var(--f-text); font-size: .8125rem; color: var(--ink-soft);
  opacity: 0; transform: translateX(-6px);
}
.ev:last-child { border-bottom: 0; }
.is-in .ev { animation: slidein .5s ease forwards; }
.is-in .ev:nth-child(1) { animation-delay: .6s; }
.is-in .ev:nth-child(2) { animation-delay: 1.0s; }
.is-in .ev:nth-child(3) { animation-delay: 1.4s; }
.is-in .ev:nth-child(4) { animation-delay: 1.8s; }
@keyframes slidein { to { opacity: 1; transform: none; } }
.ev__t {
  flex: none; font-family: var(--f-mono); font-size: .5625rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--cyan);
  border: 1px solid var(--rule-lift); padding: .1rem .4rem;
}
.ev--warn .ev__t { color: var(--bar-3); border-color: var(--bar-1); }

@media (prefers-reduced-motion: reduce) {
  .console__live i { animation: none; }
  .spark { stroke-dashoffset: 0; }
  .ev { opacity: 1; transform: none; }
  .is-in .ev, .is-in .spark { animation: none; }
}

/* headline words rise in sequence */
.h-word { display: inline-block; opacity: 0; transform: translateY(.5em); animation: word .55s cubic-bezier(.22,.75,.3,1) forwards; }
@media (prefers-reduced-motion: reduce) { .h-word { opacity: 1; transform: none; animation: none; } }
@keyframes word { to { opacity: 1; transform: none; } }

/* cards lean into the motif on hover */
.card { position: relative; }
.card::after {
  content: ""; position: absolute; left: var(--s-3); bottom: var(--s-3);
  width: 0; height: 3px; background: var(--cyan);
  transform: skewX(var(--skew)); transition: width .25s ease;
}
.card:hover::after { width: 26px; }

/* ---------- 12. the module rail: eight products, one balance ----------
   The claim on this page is that the modules compose onto a single balance.
   Rather than list them, the rail draws it: tiles in the mark's geometry,
   each dropping onto a continuous spine that runs underneath all of them. */
.rail { margin-top: var(--s-5); }

.rail__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
@media (min-width: 30rem) { .rail__row { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 62rem) { .rail__row { grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 5px; } }

.mod {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 3.1rem; padding: .5rem .35rem;
  background: var(--ground-lift);
  border-top: 3px solid var(--bar-1);
  transform: skewX(var(--skew));
  opacity: 0;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

/* the ramp of the mark, walked across the eight tiles */
.mod:nth-child(1) { border-top-color: var(--bar-1); }
.mod:nth-child(2) { border-top-color: var(--bar-1); }
.mod:nth-child(3) { border-top-color: var(--bar-2); }
.mod:nth-child(4) { border-top-color: var(--bar-2); }
.mod:nth-child(5) { border-top-color: var(--bar-3); }
.mod:nth-child(6) { border-top-color: var(--bar-3); }
.mod:nth-child(7) { border-top-color: var(--cyan); }
.mod:nth-child(8) { border-top-color: var(--cyan); }

.mod span {
  display: block; transform: skewX(calc(var(--skew) * -1));
  font-family: var(--f-mono); font-size: .625rem; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-soft); text-align: center; line-height: 1.3;
}

/* the tick that ties each tile to the spine below */
.mod::after {
  content: ""; position: absolute; left: 50%; bottom: -9px;
  width: 1px; height: 9px; background: var(--rule-lift);
  transition: background .2s ease;
}

.mod:hover { background: var(--ground); border-top-color: var(--cyan); transform: skewX(var(--skew)) translateY(-3px); }
.mod:hover span { color: var(--ink); }
.mod:hover::after { background: var(--cyan); }

/* the spine: one balance, drawn as one unbroken line */
.rail__spine { position: relative; margin-top: 9px; height: 3px; background: var(--rule-lift); overflow: hidden; }
.rail__spine i { display: block; height: 100%; width: 100%; background: var(--cyan); transform: scaleX(0); transform-origin: left center; }
.is-in .rail__spine i { animation: spine .9s cubic-bezier(.22,.75,.3,1) .55s forwards; }
@keyframes spine { to { transform: scaleX(1); } }

.rail__label {
  margin-top: var(--s-2);
  font-family: var(--f-mono); font-size: .625rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cyan);
}

/* tiles land left to right, then the spine draws under them */
.is-in .mod { animation: drop .5s cubic-bezier(.22,.9,.3,1) forwards; }
.is-in .mod:nth-child(1) { animation-delay: .05s; }
.is-in .mod:nth-child(2) { animation-delay: .11s; }
.is-in .mod:nth-child(3) { animation-delay: .17s; }
.is-in .mod:nth-child(4) { animation-delay: .23s; }
.is-in .mod:nth-child(5) { animation-delay: .29s; }
.is-in .mod:nth-child(6) { animation-delay: .35s; }
.is-in .mod:nth-child(7) { animation-delay: .41s; }
.is-in .mod:nth-child(8) { animation-delay: .47s; }
@keyframes drop { from { opacity: 0; transform: skewX(var(--skew)) translateY(-10px); } to { opacity: 1; transform: skewX(var(--skew)); } }

@media (prefers-reduced-motion: reduce) {
  .mod { opacity: 1; animation: none !important; }
  .rail__spine i { transform: scaleX(1); animation: none !important; }
}

/* ---------- 13. licensing strip ----------
   Regulatory detail has to be present and findable, but it is not a
   selling point — so it sits on its own quiet line above the copyright,
   with the licence number given the only emphasis it needs. */
.licence {
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: .35rem;
}

.licence__mark {
  display: inline-flex; align-items: baseline; gap: .55rem;
  font-family: var(--f-mono); font-size: .6875rem;
  letter-spacing: .06em; color: var(--ink-soft);
}
.licence__mark::before {
  content: ""; width: 9px; height: 9px; flex: none;
  background: var(--cyan); transform: skewX(var(--skew)); align-self: center;
}
.licence__meta {
  font-family: var(--f-mono); font-size: .625rem;
  letter-spacing: .04em; color: var(--ink-faint); line-height: 1.6;
}

.foot__note {
  font-family: var(--f-text); font-size: .8125rem;
  line-height: 1.55; color: var(--ink-faint); max-width: 26rem;
}

.colophon { padding-block: var(--s-3) var(--s-6); border-top: 0; }

/* ---------- 14. whatsapp ----------
   A tab in the brand's own geometry rather than the usual green circle:
   this is a B2B sales channel, so it should read as part of the page. */
.wa {
  position: fixed; right: var(--s-3); bottom: 12vh; z-index: 40;
  display: inline-flex; align-items: center;
  background: var(--cyan); color: #00222F;
  text-decoration: none;
  padding: .7rem 1rem .7rem .85rem;
  transform: skewX(var(--skew));
  border: 2px solid var(--cyan);
  box-shadow: 0 6px 22px rgba(0, 0, 0, .32);
  transition: background .18s ease, transform .18s ease;
}

.wa__in {
  display: inline-flex; align-items: center; gap: .5rem;
  transform: skewX(calc(var(--skew) * -1));
}

.wa b {
  font-family: var(--f-display); font-weight: 700;
  font-size: .8125rem; letter-spacing: .04em; text-transform: uppercase;
}

.wa:hover { background: var(--cyan-lift); border-color: var(--cyan-lift); transform: skewX(var(--skew)) translateX(-3px); }

/* on phones the label costs more than it earns — keep the glyph only */
@media (max-width: 34rem) {
  .wa { right: var(--s-2); bottom: 5vh; padding: .7rem .8rem; }
  .wa b { display: none; }
}

@media (prefers-reduced-motion: reduce) { .wa { transition: none; } }
