/* ─────────────────────────────────────────────────────────────────────────
   Stockboard

   Built on the Stockpilot design system (stockpilot.win), which is the
   user's own site: same tokens, same type scale, same section rhythm, same
   nav pill and card shapes. Dark hero on #070A2B, light sections in white
   and #f6f6f6, Schibsted Grotesk with JetBrains Mono for figures.

   The old near-black + hot pink identity was retired on 2026-09-23.
   Corner radii are deliberately HALF the Stockpilot values (user, 2026-09-23):
   section 32, card 12, tile 6, button 6. Pills and circles stay round.
   ───────────────────────────────────────────────────────────────────────── */

:root {
  /* ink and greys */
  --c-ink: #1f1f1f;
  --c-g800: #454545;
  --c-g700: #4f4f4f;
  --c-g600: #5d5d5d;
  --c-g500: #6d6d6d;
  --c-g300: #b0b0b0;
  --c-g200: #d1d1d1;
  --c-g100: #e7e7e7;
  --c-g50: #f6f6f6;
  --c-white: #fff;
  --c-rule: #e4e4e4;
  --c-rule-dark: #ffffff24;
  --c-up: #742BFF;
  --c-down: #cf1035;

  /* dark surfaces */
  --deep: #070A2B;
  --deep-2: #0d1340;
  --srf: #0f1546;
  --srf-head: #0b1038;
  --srf-hi: #ffffff0f;
  --on: #ECEBFF;
  --on-70: #ECEBFFb8;
  --on-55: #ECEBFF8f;
  --on-line: #A88CFF2e;
  --on-line-soft: #A88CFF1c;
  --acc-d: #A88CFF;
  --up-d: #FF7A32;

  /* head / nav */
  --head-bg: #0a0c30cc;
  --head-line: #ffffff1f;
  --head-fg-70: #f2f2ecdb;
  --head-hover: #ffffff0f;
  --head-shadow: none;
  --head-gloss: #ffffff1a;

  /* layout */
  --w-container: 1224px;
  --pad-page: 24px;
  --nav-h: 64px;
  --head-gap: 12px;
  --section-y: 128px;
  --section-y-tight: 96px;
  --section-y-open: 152px;

  /* radii (half of Stockpilot), shadow, motion */
  --r-section: 0px; /* no rounded section edges: fades between sections instead */
  --r-card: 12px;
  --r-tile: 6px;
  --r-btn: 6px;
  --r-pill: 99px;
  --sh-lift: none;
  --shadow: none;
  --ease: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);

  /* type */
  --fs-h1: clamp(33px, 1rem + 5vw, 92px);
  --fs-h2: clamp(31px, 1.1rem + 3.4vw, 62px);
  --fs-h3: clamp(23px, 1rem + 1.6vw, 38px);
  --fs-h4: clamp(19px, 1.05rem + 0.6vw, 25px);
  --fs-lead: clamp(17px, 1rem + 0.36vw, 21px);
  --fs-body: clamp(17px, 1rem + 0.15vw, 18px);
  --fs-small: clamp(15px, 0.94rem + 0.07vw, 16px);
  --fs-micro: 12px;
  --fs-xs: 13px;
  --fs-ctl: 15px;
  --tr-h1: -0.035em;
  --tr-h2: -0.028em;
  --tr-h3: -0.022em;
  --tr-h4: -0.016em;
}

/* ── base ───────────────────────────────────────────────────────────── */

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--deep);
  color: var(--on);
  font-family: "Schibsted Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; font-weight: 600; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.mono {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-variant-numeric: tabular-nums;
}

.h1 { font-size: var(--fs-h1); font-weight: 700; line-height: 1.03; letter-spacing: var(--tr-h1); }
.hero h1 span { display: block; white-space: nowrap; }
.h2 { font-size: var(--fs-h2); font-weight: 700; line-height: 1.09; letter-spacing: var(--tr-h2); text-wrap: balance; }
.h3 { font-size: var(--fs-h3); font-weight: 600; line-height: 1.15; letter-spacing: var(--tr-h3); }
.h4 { font-size: var(--fs-h4); font-weight: 600; line-height: 1.25; letter-spacing: var(--tr-h4); }
.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--c-g600); }
.small { font-size: var(--fs-small); }
.muted { color: var(--c-g600); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: var(--fs-micro); font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-g500);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: 0.6; }
.hero .eyebrow, .sec--dark .eyebrow { color: var(--on-70); }

.skip { position: absolute; left: -9999px; }
.skip:focus {
  left: 12px; top: 12px; z-index: 99;
  background: var(--c-white); color: var(--c-ink);
  padding: 12px 18px;
  border-radius: var(--r-btn);
}
:focus-visible { outline: 2px solid var(--acc-d); outline-offset: 3px; border-radius: 3px; }

.wrap { width: 100%; max-width: var(--w-container); margin: 0 auto; padding: 0 var(--pad-page); }

/* ── buttons ────────────────────────────────────────────────────────── */

/* Frosted-glass buttons: translucent fill, backdrop blur, soft border and a
   top gloss highlight. Hover reduces the blur, lifts brightness and scales up
   a touch for a crisp premium feel. The gloss is a ::before so it sits over
   the blurred backdrop but under the label. */
.btn {
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--r-btn);
  font-size: var(--fs-ctl); font-weight: 600; letter-spacing: -0.01em;
  white-space: nowrap; cursor: pointer;
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  transition: background var(--ease), border-color var(--ease), color var(--ease),
    transform var(--ease), filter var(--ease), box-shadow var(--ease), backdrop-filter var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 46%);
  opacity: 0.9; pointer-events: none;
}
.btn:hover {
  transform: translateY(-1px) scale(1.03);
  filter: brightness(1.08);
  -webkit-backdrop-filter: blur(7px) saturate(1.5);
  backdrop-filter: blur(7px) saturate(1.5);
}
.btn:active { transform: translateY(0) scale(0.99); filter: brightness(1); }

/* Bright glass, for the primary CTA: reads as white but with a glass sheen. */
.btn--primary { background: linear-gradient(90deg, #FF2DAA, #D900FF, #742BFF); color: #fff; border-color: rgba(255, 255, 255, 0.24); }
.btn--primary:hover { background: linear-gradient(90deg, #FF44B6, #E01FFF, #8340FF); }
/* Dark glass, for the on-light "get" CTA. */
.btn--dark { background: rgba(28, 28, 32, 0.82); color: var(--c-white); border-color: rgba(255, 255, 255, 0.14); }
.btn--dark::before { background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 46%); }
.btn--dark:hover { background: rgba(40, 40, 46, 0.86); }
/* Subtle glass, on the dark hero. */
.btn--ghost { background: rgba(255, 255, 255, 0.07); color: var(--on); border-color: var(--on-line); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.13); }
/* Outline glass, on light sections. */
.btn--line { background: rgba(255, 255, 255, 0.45); color: var(--c-ink); border-color: var(--c-g200); }
.btn--line::before { background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 50%); }
.btn--line:hover { background: rgba(255, 255, 255, 0.7); }
.btn--sm { height: 40px; padding: 0 16px; font-size: 14px; }
@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}
.btn--primary .btn__soon { background: rgba(0, 0, 0, 0.24); color: #fff; }
.btn__soon {
  font-family: "JetBrains Mono", monospace; font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  background: #1f1f1f14; color: var(--c-g600);
}
.btn--ghost .btn__soon, .btn--dark .btn__soon { background: #ffffff1f; color: var(--on-70); }

/* ── nav ────────────────────────────────────────────────────────────── */

.bar-outer { position: fixed; inset: 12px 0 auto; z-index: 60; pointer-events: none; }
.bar {
  pointer-events: auto;
  display: flex; align-items: center; gap: 18px;
  height: var(--nav-h); padding: 0 16px;
  margin: 0 auto; max-width: min(100% - 48px, var(--w-container));
  background: var(--head-bg); border: 1px solid var(--head-line);
  border-radius: var(--r-card);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--head-gloss) inset;
  color: var(--c-white);
}
.bar__mark { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.02em; }
.bar__logo { width: 30px; height: 26px; object-fit: contain; display: block; }
.bar__mark span { font-size: 17px; }
.bar__links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.bar__links a {
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px; color: var(--head-fg-70);
  transition: background var(--ease), color var(--ease);
}
.bar__links a:hover { background: var(--head-hover); color: var(--c-white); }
.bar__end { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.bar__burger {
  display: none; width: 40px; height: 40px; align-items: center; justify-content: center;
  background: #ffffff0f; border: 1px solid var(--head-line);
  border-radius: 5px;
  color: var(--c-white);
}

/* ── hero ───────────────────────────────────────────────────────────── */

.hero {
  position: relative; overflow: hidden;
  background: var(--deep); color: var(--on);
  padding: calc(var(--nav-h) + 56px) 0 88px;
  border-bottom-left-radius: var(--r-section);
  border-bottom-right-radius: var(--r-section);
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, #0b1046 0%, #06082a 22%, #010105 52%);
}
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(32px, 4vw, 64px); align-items: center;
}
.hero h1 { margin-top: 18px; color: var(--on); }
.hero .lead { margin-top: 20px; max-width: 30ch; color: var(--on-70); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.status {
  margin-top: 32px; max-width: 420px;
  border: 1px solid var(--on-line);
  border-radius: var(--r-card);
  background: #ffffff08; padding: 18px 20px;
}
.status__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.status__label {
  font-family: "JetBrains Mono", monospace; font-size: var(--fs-micro);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-55);
}
.status__state { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-xs); color: var(--on-70); }
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: #e8b64c; }
.status__line { margin-top: 12px; font-size: var(--fs-small); color: var(--on-70); }

.stats {
  position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 72px; padding-top: 28px; border-top: 1px solid var(--on-line-soft);
}
.stats__n { font-size: clamp(26px, 2vw, 34px); font-weight: 700; letter-spacing: -0.02em; color: var(--on); }
.stats__l {
  margin-top: 6px; font-family: "JetBrains Mono", monospace; font-size: var(--fs-micro);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-55);
}

/* ── hero stage: app window, rules block, phone ─────────────────────── */

.stage { position: relative; }
.win {
  position: absolute; left: 20%; top: 7%; width: 80%;
  background: rgba(10, 21, 36, 0.66); border: 1px solid var(--on-line);
  border-radius: 9px;
  -webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3);
  overflow: hidden;
}
.win__head {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: var(--srf-head); border-bottom: 1px solid var(--on-line-soft);
  font-size: var(--fs-xs); color: var(--on-55);
}
.win__dots { display: flex; gap: 6px; }
.win__dots i { width: 9px; height: 9px; border-radius: 50%; background: #ffffff24; }
.win__cols { display: grid; grid-template-columns: 34% 1fr; }
.win__side { padding: 16px 14px; border-right: 1px solid var(--on-line-soft); display: grid; gap: 9px; align-content: start; }
.win__side i { display: block; height: 8px; border-radius: 2px; background: #ffffff12; }
.win__side i:nth-child(2) { width: 72%; }
.win__side i:nth-child(3) { width: 84%; }
.win__side i:nth-child(4) { width: 62%; }
.win__body { padding: 18px 20px 22px; }
.win__label { font-size: var(--fs-xs); color: var(--on-55); }
.win__big { margin-top: 6px; font-size: 38px; font-weight: 700; letter-spacing: -0.03em; color: var(--on); }
.win__sub { margin-top: 4px; font-size: var(--fs-xs); color: var(--on-55); }
.win__week { display: flex; align-items: flex-end; gap: 7px; height: 72px; margin-top: 20px; }
.win__week i { flex: 1; height: 6%; border-radius: 2.5px; background: #ffffff1f; transition: height 0.8s var(--ease-out-quart); }
.win__week i.is-peak { background: var(--up-d); }
.win__rows { margin-top: 18px; border-top: 1px solid var(--on-line-soft); }
.win__row { display: flex; justify-content: space-between; padding: 9px 0; font-size: var(--fs-xs); color: var(--on-70); border-bottom: 1px solid var(--on-line-soft); }
.win__row b { color: var(--on); font-weight: 500; }

.code {
  position: absolute; right: 0; top: 0; width: 48%; z-index: 6;
  background: rgba(11, 22, 38, 0.72); border: 1px solid var(--on-line);
  border-radius: 7px;
  -webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3);
  overflow: hidden;
}
.code__head {
  padding: 9px 14px; background: #0c1140; border-bottom: 1px solid var(--on-line-soft);
  font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--on-55);
}
.code__body { padding: 12px 14px; font-family: "JetBrains Mono", monospace; font-size: 11.5px; line-height: 1.75; color: var(--on-70); }
.code__body .k { color: var(--acc-d); }
.code__body .v { color: var(--up-d); }
.code__body .n { color: var(--on-55); }

/* The device is a photoreal render (Higgsfield, 2026-09-23) with its
   background removed. The live keyboard UI is positioned inside the measured
   screen rectangle, so the keys and counter stay real text, not pixels. */
.phone { position: absolute; left: 0; bottom: 0; width: 40%; max-width: 224px; z-index: 5; }
.phone__img { width: 100%; height: auto; }
.phone__screen {
  position: absolute; left: 4.57%; top: 2.01%; width: 89.78%; height: 89.45%;
  display: flex; flex-direction: column;
  background: #04061e;
  border-radius: 5% / 2.3%;
  overflow: hidden;
}
.chrome { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 12px 16px 6px; font-size: 10.5px; color: var(--on-55); }
.chrome__app { color: var(--on-70); font-weight: 600; }
.thread { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; padding: 12px 12px 8px; }
.bubble { max-width: 80%; padding: 7px 11px; font-size: 11.5px; line-height: 1.35; border-radius: 7px; }
.bubble--them { background: #171b45; color: var(--on-70); border-bottom-left-radius: 2px; }
.bubble--me { align-self: flex-end; min-height: 28px; background: #262a9e; color: var(--on); border-bottom-right-radius: 2px; }
[data-caret] { display: inline-block; width: 1.5px; height: 12px; background: #ffffffd9; vertical-align: -2px; margin-left: 1px; animation: blink 1.05s steps(2, start) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.earnbar {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 10px; background: #080a30; border-top: 1px solid var(--on-line-soft);
  font-size: 10px; color: var(--on-55);
}
.earnbar__tag {
  font-family: "JetBrains Mono", monospace; font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--on-line); padding: 2px 5px; color: var(--on-55);
  border-radius: 99px;
}
.earnbar__keys b { color: var(--on); font-family: "JetBrains Mono", monospace; font-weight: 500; }
.earnbar__money { margin-left: auto; color: var(--up-d); font-weight: 500; font-size: 11px; font-family: "JetBrains Mono", monospace; }

.keys { display: grid; gap: 4px; padding: 7px 5px 12px; background: #080a30; }
.keys__row { display: flex; gap: 4px; justify-content: center; }
.keys__row--pad { padding: 0 5%; }
.key {
  flex: 1; height: 22px; display: grid; place-items: center;
  background: #171b45; font-size: 10px; color: var(--on-70);
  border-radius: 2.5px;
  transition: background 0.09s linear, transform 0.09s linear, color 0.09s linear;
}
.key--wide { flex: 2.2; }
.key--space { flex: 5; }
.key.is-hit { background: var(--acc-d); color: #070A2B; transform: translateY(1px) scale(0.97); }

/* ── sections ───────────────────────────────────────────────────────── */

.sec { padding: var(--section-y) 0; }
.sec--tight { padding: var(--section-y-tight) 0; }
.sec--g50 { background: var(--c-g50); }
.sec--dark { background: var(--deep); color: var(--on); border-radius: var(--r-section); }
.sec--dark .lead, .sec--dark .muted { color: var(--on-70); }
.sec__head { max-width: 760px; }
.sec__head .h2 { margin-top: 18px; }
.sec__head .lead { margin-top: 18px; }

.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.trio__item { padding-top: 22px; border-top: 1px solid var(--c-rule); }
.sec--dark .trio__item { border-color: var(--on-line-soft); }
.trio__item p { margin-top: 10px; color: var(--c-g600); }
.sec--dark .trio__item p { color: var(--on-70); }

.steps {
  margin-top: 56px; display: grid; gap: 1px; background: var(--c-rule);
  border-radius: var(--r-card);
  overflow: hidden;
}
.sec--dark .steps { background: var(--on-line-soft); }
.step { display: grid; grid-template-columns: 76px 1fr; gap: 20px; padding: 26px 28px; background: var(--c-white); }
.sec--dark .step { background: var(--deep); }
.sec--g50 .step { background: var(--c-g50); }
.step__n { font-family: "JetBrains Mono", monospace; font-size: var(--fs-micro); letter-spacing: 0.12em; color: var(--c-g500); padding-top: 5px; }
.sec--dark .step__n { color: var(--on-55); }
.step p { margin-top: 8px; color: var(--c-g600); max-width: 62ch; }
.sec--dark .step p { color: var(--on-70); }

.tbl { margin-top: 48px; width: 100%; border-collapse: collapse; }
.tbl th {
  text-align: left; padding: 0 0 12px; border-bottom: 1px solid var(--c-rule);
  font-family: "JetBrains Mono", monospace; font-size: var(--fs-micro); font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-g500);
}
.sec--dark .tbl th { border-color: var(--on-line-soft); color: var(--on-55); }
.tbl td { padding: 16px 0; border-bottom: 1px solid var(--c-rule); vertical-align: top; }
.sec--dark .tbl td { border-color: var(--on-line-soft); }
.tbl td:last-child { text-align: right; white-space: nowrap; }
.tbl__note { display: block; margin-top: 4px; font-size: var(--fs-small); color: var(--c-g600); }
.sec--dark .tbl__note { color: var(--on-55); }
.pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 5px 11px;
  border-radius: 99px;
  font-size: var(--fs-xs); font-weight: 600;
}
.pill--yes { background: #742BFF1f; color: var(--c-up); }
.pill--no { background: #1f1f1f0f; color: var(--c-g600); }
.sec--dark .pill--yes { background: #FF7A3224; color: var(--up-d); }
.sec--dark .pill--no { background: #ffffff14; color: var(--on-55); }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
.card {
  background: rgba(255, 255, 255, 0.55); border: 1px solid var(--c-rule);
  border-radius: var(--r-card);
  padding: 28px;
  -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2);
}
.sec--dark .card { background: rgba(255, 255, 255, 0.05); border-color: var(--on-line); }
.card p { margin-top: 10px; color: var(--c-g600); }
.sec--dark .card p { color: var(--on-70); }
.card__tag {
  float: right; font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-g500); border: 1px solid var(--c-rule); padding: 3px 8px;
  border-radius: 99px;
}
.sec--dark .card__tag { color: var(--on-55); border-color: var(--on-line); }

.split { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 64px); align-items: center; }
.figure {
  background: rgba(255, 255, 255, 0.55); border: 1px solid var(--c-rule);
  border-radius: var(--r-card);
  padding: 28px;
  -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2);
}
.sec--dark .figure { background: rgba(10, 21, 36, 0.6); border-color: var(--on-line); -webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3); }
.figure__label { font-size: var(--fs-xs); color: var(--c-g500); }
.sec--dark .figure__label { color: var(--on-55); }
.figure__big { margin-top: 8px; font-size: clamp(34px, 3.4vw, 52px); font-weight: 700; letter-spacing: -0.03em; }
.figure__sub { margin-top: 6px; font-size: var(--fs-small); color: var(--c-g600); }
.sec--dark .figure__sub { color: var(--on-70); }
.week { display: flex; align-items: flex-end; gap: 8px; height: 96px; margin-top: 24px; }
.week i { flex: 1; height: 4%; border-radius: 3px; background: var(--c-g100); transition: height 0.8s var(--ease-out-quart); }
.week i.is-peak { background: var(--c-ink); }
.sec--dark .week i { background: #ffffff1f; }
.sec--dark .week i.is-peak { background: var(--up-d); }

.folio { margin-top: 20px; }
.folio__row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--c-rule); }
.sec--dark .folio__row { border-color: var(--on-line-soft); }
.folio__badge {
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 5px;
  background: var(--c-g50); font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--c-g600);
}
.sec--dark .folio__badge { background: #ffffff0f; color: var(--on-70); }
.folio__name { display: flex; flex-direction: column; }
.folio__ticker { font-weight: 600; font-size: var(--fs-small); }
.folio__label { font-size: var(--fs-xs); color: var(--c-g500); }
.sec--dark .folio__label { color: var(--on-55); }
.folio__amt { margin-left: auto; font-family: "JetBrains Mono", monospace; font-size: var(--fs-small); }

.storefile {
  margin-top: 24px; border: 1px solid var(--on-line);
  border-radius: var(--r-tile);
  background: #ffffff08; padding: 18px 20px;
  font-family: "JetBrains Mono", monospace; font-size: var(--fs-xs); color: var(--on-70);
}
.storefile div { display: flex; justify-content: space-between; padding: 5px 0; }
.storefile b { color: var(--on); font-weight: 500; }

.faq { margin-top: 48px; border-top: 1px solid var(--c-rule); }
.faq details { border-bottom: 1px solid var(--c-rule); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0; cursor: pointer; list-style: none;
  font-size: var(--fs-h4); font-weight: 600; letter-spacing: var(--tr-h4);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--c-g500); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq p { padding: 0 0 26px; max-width: 80ch; color: var(--c-g600); }

.cta-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cta-card {
  display: flex; flex-direction: column; justify-content: space-between; gap: 28px;
  padding: 36px; border: 1px solid var(--c-rule); background: rgba(255, 255, 255, 0.55);
  border-radius: var(--r-card);
  -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2);
}
.cta-card p { margin-top: 10px; color: var(--c-g600); }

/* ── footer ─────────────────────────────────────────────────────────── */

.foot {
  background: var(--deep); color: var(--on); padding: 80px 0 40px;
  border-top-left-radius: var(--r-section);
  border-top-right-radius: var(--r-section);
}
.foot__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.foot h4 { font-family: "JetBrains Mono", monospace; font-size: var(--fs-micro); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-55); }
.foot ul { margin-top: 16px; display: grid; gap: 10px; }
.foot ul a { font-size: var(--fs-small); color: var(--on-70); }
.foot ul a:hover { color: var(--on); }
.foot__legal { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--on-line-soft); display: grid; gap: 10px; }
.foot__legal li { font-size: var(--fs-xs); color: var(--on-55); line-height: 1.6; max-width: 105ch; }
.foot__base { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: var(--fs-xs); color: var(--on-55); }

.notice { margin-top: 18px; font-size: var(--fs-small); color: var(--c-ink); font-weight: 600; }
.hero .notice, .sec--dark .notice { color: var(--acc-d); }

/* ── reveal ─────────────────────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease-out-quart), transform 0.7s var(--ease-out-quart); }
.reveal.is-in { opacity: 1; transform: none; }

/* ── responsive ─────────────────────────────────────────────────────── */

@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; }
  .split, .cards, .cta-pair { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --section-y: 88px; --section-y-tight: 72px; --r-section: 0px; }
  .bar { gap: 12px; padding: 0 12px; }
  .bar__links { display: none; }
  .bar__burger { display: flex; order: -1; }
  .bar__mark span { font-size: 16px; }
  .hide-sm { display: none; }
  .trio { grid-template-columns: 1fr; gap: 28px; }
  .stats { grid-template-columns: 1fr; gap: 20px; margin-top: 48px; }
  .stats > div { display: flex; align-items: baseline; gap: 12px; }
  .stats__l { margin-top: 0; }
  .step { grid-template-columns: 1fr; gap: 6px; padding: 22px; }
  .tbl td:last-child { text-align: left; }
  /* the hero scene stacks under the copy */
  .stage { margin-top: 28px; }
}

@media (max-width: 560px) {
  .foot__grid { grid-template-columns: 1fr; }
  .cta-card { padding: 28px; }
  .hero { padding-top: calc(var(--nav-h) + 40px); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── scroll story: TYPE > COUNT > EARN > BUILD ───────────────────────── */

.story { position: relative; background: var(--deep); color: var(--on); }
.story.is-live { height: 320vh; }
.story__pin { position: sticky; top: 0; min-height: 100svh; display: flex; align-items: center; padding: 96px 0; }
.story__grid {
  display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 88px); align-items: center; width: 100%;
}
.story__copy .h2 { margin-top: 18px; }

.stepper { position: relative; margin-top: 36px; display: grid; }
.stepper li {
  position: relative; display: flex; gap: 16px;
  padding: 18px 0; opacity: 0.38; transition: opacity 0.45s var(--ease-out-quart);
}
.stepper__k { flex: 0 0 32px; }
.stepper__t { flex: 1; min-width: 0; }
.stepper li.is-active { opacity: 1; }
.stepper__k { font-family: "JetBrains Mono", monospace; font-size: var(--fs-micro); color: var(--on-55); padding-top: 4px; letter-spacing: 0.1em; }
.stepper li.is-active .stepper__k { color: var(--up-d); }
.stepper__t b { font-size: var(--fs-h4); font-weight: 600; letter-spacing: var(--tr-h4); }
.stepper__t p { margin-top: 4px; font-size: var(--fs-small); color: var(--on-70); }
/* the vertical rail runs behind the numbers and fills with scroll progress */
.stepper::before, .stepper__fill {
  content: ""; position: absolute; left: 19px; top: 26px; bottom: 26px; width: 2px;
  background: var(--on-line-soft); border-radius: 2px;
}
.stepper__fill { background: linear-gradient(180deg, var(--acc-d), var(--up-d)); transform-origin: top; transform: scaleY(0); }

.story__stage { display: flex; justify-content: center; }
.storycard {
  position: relative; width: 100%; max-width: 440px;
  border: 1px solid var(--on-line); border-radius: var(--r-card);
  background: rgba(10, 21, 36, 0.66);
  -webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3);
  overflow: hidden;
}
.storycard__head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-bottom: 1px solid var(--on-line-soft);
  font-size: var(--fs-xs); color: var(--on-70);
}
.storycard__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--up-d); }
.storycard__title { font-weight: 600; color: var(--on); }
.storycard__tag {
  margin-left: auto; font-family: "JetBrains Mono", monospace; font-size: 9px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-55);
  border: 1px solid var(--on-line); border-radius: 99px; padding: 2px 7px;
}
.storycard__body { position: relative; height: 420px; }
.scene {
  position: absolute; inset: 0; padding: 26px 24px;
  display: flex; flex-direction: column; opacity: 0; will-change: opacity, transform;
}

/* scene 0: type */
.sc-thread { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.sc-thread .bubble { max-width: 82%; }
.sc-caret { display: inline-block; width: 2px; height: 15px; background: #ffffffd9; vertical-align: -2px; margin-left: 1px; animation: blink 1.05s steps(2, start) infinite; }
.sc-keys { display: grid; gap: 5px; margin-top: 14px; }
.sc-keys__row { display: flex; gap: 5px; justify-content: center; }
.sc-key { flex: 1; height: 26px; border-radius: 4px; background: #171b45; transition: background 0.12s linear, transform 0.12s linear; }
.sc-key.is-hit { background: var(--acc-d); transform: translateY(1px) scale(0.96); }

/* scene 1: count */
.sc-label { font-size: var(--fs-xs); color: var(--on-55); }
.sc-big { margin-top: 6px; font-size: clamp(48px, 6vw, 68px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.sc-sub { margin-top: 8px; font-size: var(--fs-small); color: var(--on-70); }
.sc-week { display: flex; align-items: flex-end; gap: 9px; height: 120px; margin-top: auto; }
.sc-week i { flex: 1; height: 4%; border-radius: 4px; background: #ffffff1f; }
.sc-week i.is-peak { background: var(--up-d); }

/* scene 2: earn */
.sc-earn { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.sc-earn__keys { font-size: 20px; color: var(--on-70); }
.sc-earn__arrow { color: var(--on-55); width: 26px; height: 26px; }
.sc-earn__arrow svg { width: 26px; height: 26px; }
.sc-token {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 12px;
  border: 1px solid var(--on-line); background: rgba(255, 122, 50, 0.1);
  transform: scale(0.6); opacity: 0;
}
.sc-token__b { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 7px; background: rgba(168, 140, 255, 0.16); color: var(--acc-d); font-size: 12px; }
.sc-token__v { font-size: 20px; font-weight: 500; color: var(--up-d); }

/* scene 3: build */
.sc-muted { color: var(--on-55); font-weight: 400; }
.sc-folio { margin-top: 14px; display: grid; gap: 4px; }
.sc-folio li { display: grid; grid-template-columns: 34px 52px 1fr auto; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--on-line-soft); }
.sc-folio__b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 7px; background: #ffffff0f; font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--on-70); }
.sc-folio__t { font-size: var(--fs-small); font-weight: 600; }
.sc-folio__bar { height: 8px; border-radius: 99px; background: #ffffff12; overflow: hidden; }
.sc-folio__bar i { display: block; height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--acc-d), var(--up-d)); }
.sc-folio__v { font-family: "JetBrains Mono", monospace; font-size: var(--fs-small); }
.sc-total { margin-top: auto; padding-top: 14px; display: flex; justify-content: space-between; align-items: baseline; font-size: var(--fs-small); color: var(--on-70); }
.sc-total b { font-size: 22px; color: var(--on); }

@media (max-width: 900px) {
  .story__grid { grid-template-columns: 1fr; gap: 28px; }
  .storycard { max-width: 420px; margin: 0 auto; }
}

/* Reduced motion / no-JS: unpin, drop the tall scroll, show the count scene. */
.story[data-static] .story__pin { position: static; min-height: 0; padding: var(--section-y) 0; }
.story[data-static] .stepper li { opacity: 1; }
.story[data-static] .storycard__body { height: auto; }
.story[data-static] .scene { position: relative; opacity: 1; border-top: 1px solid var(--on-line-soft); }
.story[data-static] .scene:first-child { border-top: 0; }

/* compact stepper for phones */
.story__mob { display: none; }
.story__mobbar { display: flex; gap: 6px; }
.story__mobbar i { position: relative; flex: 1; height: 3px; border-radius: 99px; background: var(--on-line-soft); overflow: hidden; }
.story__mobbar i::after { content: ""; position: absolute; inset: 0; transform-origin: left; transform: scaleX(var(--seg, 0)); background: linear-gradient(90deg, var(--acc-d), var(--up-d)); border-radius: 99px; }
.story__mobttl { margin-top: 16px; font-size: var(--fs-h4); font-weight: 600; }
.story__mobttl [data-mob-num] { color: var(--up-d); margin-right: 8px; font-size: var(--fs-small); }
.story__mobdesc { margin-top: 4px; font-size: var(--fs-small); color: var(--on-70); }

@media (max-width: 900px) {
  .story.is-live { height: 300vh; }
  .story__pin { align-items: flex-start; padding: 84px 0 32px; }
  .story__copy .h2 { font-size: 30px; }
  .stepper { display: none; }
  .story__mob { display: block; margin-top: 20px; }
  .storycard__body { height: 360px; }
}

/* privacy: typed text rising and dissolving to nothing */
.dissolve {
  position: relative; height: 128px; margin-top: 12px; overflow: hidden;
  -webkit-mask-image: linear-gradient(to top, #000 26%, transparent 94%);
  mask-image: linear-gradient(to top, #000 26%, transparent 94%);
}
.dissolve__rows { display: grid; gap: 7px; animation: dissolve-rise 11s linear infinite; will-change: transform; }
@keyframes dissolve-rise { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.dissolve__row {
  font-family: "JetBrains Mono", monospace; font-size: 13px; line-height: 1;
  letter-spacing: 3px; white-space: nowrap; color: var(--on-55);
}
.dissolve__verdict { margin-top: 10px; font-size: var(--fs-small); font-weight: 600; color: var(--up-d); }
.dissolve__rule { height: 1px; margin: 22px 0 20px; background: var(--on-line-soft); }
@media (prefers-reduced-motion: reduce) { .dissolve__rows { animation: none; } }

/* staggered reveals: children of a revealed list cascade in */
.steps.reveal .step,
.tbl.reveal tbody tr {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.55s var(--ease-out-quart), transform 0.55s var(--ease-out-quart);
}
.steps.reveal.is-in .step,
.tbl.reveal.is-in tbody tr { opacity: 1; transform: none; }
.steps.reveal.is-in .step:nth-child(2), .tbl.reveal.is-in tbody tr:nth-child(2) { transition-delay: 0.05s; }
.steps.reveal.is-in .step:nth-child(3), .tbl.reveal.is-in tbody tr:nth-child(3) { transition-delay: 0.10s; }
.steps.reveal.is-in .step:nth-child(4), .tbl.reveal.is-in tbody tr:nth-child(4) { transition-delay: 0.15s; }
.steps.reveal.is-in .step:nth-child(5), .tbl.reveal.is-in tbody tr:nth-child(5) { transition-delay: 0.20s; }
.tbl.reveal.is-in tbody tr:nth-child(6) { transition-delay: 0.25s; }
.tbl.reveal.is-in tbody tr:nth-child(7) { transition-delay: 0.30s; }
.tbl.reveal.is-in tbody tr:nth-child(8) { transition-delay: 0.35s; }
@media (prefers-reduced-motion: reduce) {
  .steps.reveal .step, .tbl.reveal tbody tr { opacity: 1; transform: none; transition: none; }
}

/* Sections meet as crisp flat edges: no rounded corners, no fades
   (both were rejected 2026-09-23). Dark blocks butt directly onto light. */

/* ── static 3D gaming keyboard (decorative, no animation) ────────────────
   A generic mechanical/gaming keyboard laid back in perspective. The solid
   drop under the deck fakes the chassis thickness; a faint accent strip on
   the front edge reads as static backlight. */
.gkb { position: absolute; left: 40%; right: 0; bottom: 4%; z-index: 4; perspective: 1100px; pointer-events: none; }
.gkb__deck {
  position: relative;
  transform: rotateX(54deg) rotateZ(-3deg);
  transform-origin: center 80%;
  display: grid; gap: 7px; padding: 15px 15px 19px;
  border-radius: 12px;
  background: linear-gradient(158deg, #141a52 0%, #080a2e 72%);
  border: 1px solid #2e2f70;
  box-shadow: 0 20px 0 #05061c, 0 24px 0 #030418, 0 60px 55px -22px rgba(0, 0, 0, 0.75);
}
.gkb__deck::before {
  content: ""; position: absolute; left: 12%; right: 12%; bottom: -3px; height: 3px; border-radius: 99px;
  display: none;
}
.gkb__row { display: flex; gap: 6px; }
.gkb__key {
  flex: 1; height: 20px; border-radius: 5px;
  background: linear-gradient(#2a2f66, #141a4a);
  box-shadow: 0 2px 0 #05061c, inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.gkb__key--w { flex: 1.7; }
.gkb__key--x { flex: 2.4; }
.gkb__key--space { flex: 6; }
.gkb__key.is-lit {
  background: linear-gradient(#3a2f8a, #241a6e);
  box-shadow: 0 2px 0 #05061c, inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
  /* in the stacked mobile stage the keyboard sits flat under the phone */
  .gkb { position: relative; left: auto; right: auto; bottom: auto; max-width: 420px; margin: 0 auto; }
  .gkb__deck { transform: rotateX(40deg); transform-origin: center; }
}
@media (max-width: 560px) { .gkb { display: none; } }

/* download button stack in the get section */
.cta-card__dl { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.cta-card__dl .btn { width: 100%; justify-content: space-between; }
.cta-card__dl .notice { margin-top: 4px; }


/* ── full-dark theme: no light sections (they were too bright) ───────────
   Sections carry .sec--dark so the existing dark component styles win by
   specificity; .sec--g50 is now a lighter navy for alternation. */
.sec--g50 { background: var(--deep-2); }
.sec--g50 .step { background: var(--deep-2); }
/* components that had no dark variant */
.faq { border-top-color: var(--on-line-soft); }
.faq details { border-bottom-color: var(--on-line-soft); }
.faq summary::after { color: var(--on-55); }
.faq p { color: var(--on-70); }
.cta-card { background: rgba(255, 255, 255, 0.05); border-color: var(--on-line); }
.cta-card p { color: var(--on-70); }

/* ── account: the "Sign in" nav link (a subtle text link in the bar) ─────── */
.bar__signin {
  font-size: 15px;
  color: var(--head-fg-70);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: background var(--ease), color var(--ease);
}
.bar__signin:hover { background: var(--head-hover); color: var(--on); }
@media (max-width: 560px) {
  .bar__signin { padding: 8px 10px; }
  /* Make room for Sign in on phones: the burger only jumped to #how (no real
     menu), and the nav CTA's Prototype chip is still shown on the hero button
     and the status card, so drop both here. */
  .bar__burger { display: none; }
  .bar__end .btn__soon { display: none; }
}

/* ── HERO SCENE (2026-09-24): one cohesive 3D product render with live glass ──
   The chosen Higgsfield renders are the scene (keyboard = the product). The
   live counter + counting.rules are composited in as glass matched to the
   render's light, perspective and depth, so it reads as one scene, not cards
   over an image. Desktop = landscape render + glass; mobile = the real app UI
   on the phone's front screen. */

.hero-scene { position: relative; width: 100%; }
.hero-scene--mob { display: none; }

/* the render melts into the dark hero background: all four edges fade out */
.hero-scene__art {
  display: block; width: 100%; height: auto;
  /* single-layer radial fade so the render melts into the dark hero bg on all
     sides (a multi-layer mask-composite silently hid the image in Chrome) */
  -webkit-mask-image: radial-gradient(135% 130% at 50% 44%, #000 64%, transparent 100%);
  mask-image: radial-gradient(135% 130% at 50% 44%, #000 64%, transparent 100%);
}

/* glass panels that sit INSIDE the scene */
.glass {
  position: absolute; z-index: 3; isolation: isolate;
  background: linear-gradient(150deg, rgba(26,20,64,0.60), rgba(9,8,28,0.50));
  border: 1px solid var(--on-line);
  border-radius: 11px;
  -webkit-backdrop-filter: blur(13px) saturate(1.4); backdrop-filter: blur(13px) saturate(1.4);
  box-shadow: 0 22px 55px -22px rgba(0,0,0,0.75), 0 0 42px -14px rgba(116,43,255,0.55);
}
.glass::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, rgba(168,140,255,0.20), rgba(255,255,255,0) 42%);
}

/* counting.rules panel — further back, tilted to face the camera from the left */
.glass--rules {
  left: 0%; top: 1%; width: 45%;
  padding: 12px 14px 14px;
  transform: perspective(1200px) rotateY(9deg) rotateX(3deg);
  opacity: 0.97;
}
.glass__head {
  font-family: "JetBrains Mono", monospace; font-size: 10px; color: var(--on-55);
  padding-bottom: 8px; margin-bottom: 9px; border-bottom: 1px solid var(--on-line-soft);
}
.glass .code__body { padding: 0; font-size: 10px; line-height: 1.7; color: var(--on-70); }
.glass .code__body .k { color: var(--acc-d); }
.glass .code__body .v { color: var(--up-d); }
.glass .code__body .n { color: var(--on-55); }

/* live counter — closer, sharper, hovering over the keys */
.glass--counter {
  left: 30%; bottom: 9%; z-index: 4;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 14px;
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.8), 0 0 52px -12px rgba(255,45,170,0.5);
}
.glass__tag {
  font-family: "JetBrains Mono", monospace; font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--on-line); padding: 2px 6px; color: var(--on-55); border-radius: 99px;
}
.glass__keys { font-size: 12px; color: var(--on-70); white-space: nowrap; }
.glass__keys b { color: var(--on); font-family: "JetBrains Mono", monospace; font-weight: 600; }
.glass__money { color: var(--up-d); font-weight: 600; font-size: 14px; font-family: "JetBrains Mono", monospace; }

/* ── mobile scene: the app UI runs on the rendered phone's screen ── */
.hero-scene__device { position: relative; }
.phone-ui {
  position: absolute;
  /* measured screen rect of hero-mobile.jpg (refined via screenshot) */
  left: 38%; top: 15.5%; width: 32%; height: 35%;
  display: flex; flex-direction: column;
  background: #04061e; overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 0 18px -2px rgba(120,60,255,0.35);
}
.phone-ui .chrome { padding: 6px 8px 3px; font-size: 8px; }
.phone-ui .thread { padding: 6px 7px 4px; gap: 4px; }
.phone-ui .bubble { font-size: 8.5px; padding: 4px 6px; border-radius: 5px; max-width: 82%; }
.phone-ui .earnbar { padding: 5px 7px; font-size: 7.5px; gap: 5px; }
.phone-ui .earnbar__tag { font-size: 6.5px; padding: 1px 4px; }
.phone-ui .earnbar__keys b { font-size: 8px; }
.phone-ui .earnbar__money { font-size: 9px; }
.phone-ui .keys { padding: 5px 4px 7px; gap: 2.5px; }
.phone-ui .key { height: 13px; font-size: 6.5px; border-radius: 2px; }

.glass--rules-mob {
  position: relative; left: auto; top: auto; width: 100%;
  transform: none; margin-top: 18px; max-width: 380px;
}

@media (max-width: 600px) {
  .hero-scene--desk { display: none; }
  .hero-scene--mob { display: block; }
}
