/* ==========================================================================
   OneEarth Solar — design system
   Mobile first. Everything below 640px is the primary target.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* surfaces */
  --ink: #04070e;
  --ink-2: #070b14;
  --surface: #0b1220;
  --surface-2: #111a2b;

  /* lines */
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --line-3: rgba(255, 255, 255, 0.28);

  /* type */
  --fg: #ffffff;
  --fg-2: rgba(255, 255, 255, 0.62);
  --fg-3: rgba(255, 255, 255, 0.38);

  /* brand */
  --blue: #1c6bff;
  --blue-2: #4f8dff;
  --blue-deep: #0a3fb0;
  --solar: #ffc629;
  --green: #3fb950;
  --alert: #ff6b4a;

  /* rhythm */
  --pad: clamp(20px, 5.4vw, 80px);
  --gap: clamp(16px, 2.4vw, 32px);
  --section: clamp(62px, 9.5vh, 168px);
  --maxw: 1560px;
  --measure: 46ch;

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.7s;

  /* chrome */
  --nav-h: 62px;
  --radius: 4px;

  --font-display: "Archivo", "Helvetica Neue", "Arial Narrow", Helvetica, Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

@media (min-width: 900px) {
  :root { --nav-h: 76px; }
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* the sticky header must not cover anchored sections */
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  background: var(--ink);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }

button { background: none; border: 0; cursor: pointer; }

ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid var(--solar);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--blue); color: #fff; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: var(--pad); top: 8px;
  transform: translateY(-200%);
  background: var(--fg); color: var(--ink);
  padding: 10px 16px; z-index: 300; font-weight: 600;
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
.display,
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.028em;
  text-transform: uppercase;
  text-wrap: balance;
  /* long place and product names must break rather than escape the column */
  overflow-wrap: break-word;
}

/* Fluid scale. The clamp minimums are set so nothing breaks at 320px. */
.t-hero   { font-size: clamp(2.55rem, 10.4vw, 8.25rem); line-height: 0.88; letter-spacing: -0.038em; }
.t-xl     { font-size: clamp(2.1rem, 7.6vw, 5.75rem); line-height: 0.9;  letter-spacing: -0.034em; }
.t-lg     { font-size: clamp(1.75rem, 5.4vw, 3.6rem); line-height: 0.95; letter-spacing: -0.03em; }
.t-md     { font-size: clamp(1.28rem, 3.1vw, 2.05rem); line-height: 1.04; letter-spacing: -0.024em; }
.t-sm     { font-size: clamp(1.02rem, 1.9vw, 1.28rem); line-height: 1.16; letter-spacing: -0.018em; }

.lede {
  font-size: clamp(0.98rem, 2.1vw, 1.2rem);
  line-height: 1.58;
  color: var(--fg-2);
  max-width: var(--measure);
  letter-spacing: -0.004em;
}
.lede--wide { max-width: 62ch; }

.body-copy { color: var(--fg-2); max-width: var(--measure); }
.body-copy + .body-copy { margin-top: 1em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 120px;
}
.eyebrow--plain::after { display: none; }
.eyebrow b { color: var(--solar); font-weight: 500; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.accent { color: var(--solar); }
.accent-blue { color: var(--blue-2); }
.dim { color: var(--fg-3); }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  position: relative;
  padding-block: var(--section);
}
.section--tight { padding-block: clamp(56px, 8vh, 104px); }
.section--flush-top { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }

.section--edge { border-top: 1px solid var(--line); }

.bg-ink { background: var(--ink); }
.bg-surface { background: var(--surface); }
.bg-deep { background: #02040a; }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.split {
  display: grid;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (min-width: 960px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; }
  .split--40 { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
  .split--60 { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); }
  .split--sticky { align-items: start; }
  .split--sticky > .split__pin { position: sticky; top: calc(var(--nav-h) + 48px); }
}

.stack { display: grid; gap: clamp(18px, 2.4vw, 28px); align-content: start; justify-items: start; }
.stack--sm { gap: 14px; }

/* Display sizes are viewport-based, which is too large once a heading is
   confined to one half of a split — long words then spill into the other
   column. Step the scale down inside a split. */
@media (min-width: 960px) {
  .split .t-hero { font-size: clamp(2.4rem, 5.4vw, 5rem); }
  .split .t-xl   { font-size: clamp(2rem, 4.2vw, 3.5rem); }
  .split .t-lg   { font-size: clamp(1.7rem, 3.1vw, 2.6rem); }
}

.hr { height: 1px; background: var(--line); border: 0; }

/* Thin technical grid lines drawn behind a section. */
.ruled { position: relative; }
.ruled::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    linear-gradient(0deg, var(--line) 1px, transparent 1px);
  background-size: 25% 100%, 100% 160px;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-fg: #fff;
  --btn-bg: transparent;
  --btn-line: var(--line-3);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  min-height: 48px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-line);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease);
}
.btn:hover { color: var(--ink); border-color: var(--fg); }
.btn:hover::before { transform: scaleX(1); }
.btn:active { transform: translateY(1px); }

.btn__arrow {
  width: 14px; height: 10px; flex: none;
  transition: transform 0.4s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--solid {
  --btn-bg: var(--blue);
  --btn-line: var(--blue);
}
.btn--solid::before { background: var(--fg); }
.btn--solid:hover { color: var(--blue-deep); }

.btn--solar {
  --btn-bg: var(--solar);
  --btn-line: var(--solar);
  --btn-fg: #14100a;
}
.btn--solar::before { background: #fff; }
.btn--solar:hover { color: #14100a; border-color: #fff; }

.btn--ghost { --btn-line: var(--line-2); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Text link with an underline that draws in. */
.link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 6px;
  position: relative;
  color: var(--fg);
}
/* hit area without disturbing the underline position */
.link::before {
  content: "";
  position: absolute;
  inset: -11px -6px -4px;
}
.link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0; right: 0;
  height: 1px;
  background: var(--line-3);
  transform-origin: right center;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease);
}
.link:hover::after { background: var(--solar); transform: scaleX(1.02); }
.link:hover .btn__arrow { transform: translateX(4px); }
.link .btn__arrow { transition: transform 0.4s var(--ease); }

/* --------------------------------------------------------------------------
   6. Procedural media
   Every .media renders an engineered backdrop from CSS so the page has
   presence with or without photography. Drop a real photograph in with
   <img class="media__img"> or style="--photo:url(...)" and it layers on top.
   -------------------------------------------------------------------------- */
.media {
  position: relative;
  overflow: hidden;
  background: #060a13;
  isolation: isolate;
}
.media > * { position: relative; z-index: 3; }

.media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Layer order inside .media — art 0, photo 1, scrim 2, content 3+.
   Anything placed over a .media must be 3 or higher or the scrim covers it. */
/* scrim — above the art and any photograph, below the content */
.media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 0%, transparent 30%, rgba(2, 4, 10, 0.55) 100%),
    linear-gradient(180deg, rgba(4, 7, 14, 0.55) 0%, rgba(4, 7, 14, 0.12) 38%, rgba(4, 7, 14, 0.88) 100%);
}
.media--frame,
.media--band,
.media--map {
  width: 100%;
  border-radius: var(--radius);
}
.media--frame { aspect-ratio: 4 / 3; }
.media--band  { aspect-ratio: 21 / 9; min-height: 200px; }
.media--map   { aspect-ratio: 16 / 7; min-height: 200px; }
/* a 21:9 band is a letterbox slit on a phone; give it height instead */
@media (max-width: 720px) {
  .media--band, .media--map { aspect-ratio: 4 / 3; min-height: 0; }
}

.media--soft::after {
  background: linear-gradient(180deg, rgba(4, 7, 14, 0.3) 0%, rgba(4, 7, 14, 0.05) 45%, rgba(4, 7, 14, 0.6) 100%);
}

.media__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* --- solar field receding to a horizon ---------------------------------- */
/* The sky is painted on the element; ::before is the ground plane, hinged at
   the horizon line (38%) and tipped toward the camera so the modules foreshorten
   the way a real array does. ::after carries the sun and the atmospheric haze. */
.art-field {
  background:
    linear-gradient(180deg,
      #060b16 0%, #0c1a31 22%, #16294600 33%, #182c4b 36%,
      #24406a 37.4%, #0a1223 38.2%, #070d1a 100%);
  background-color: #070d1a;
}
.art-field::before {
  content: "";
  position: absolute;
  left: -60%; right: -60%; top: 38%; bottom: -55%;
  transform-origin: 50% 0%;
  transform: perspective(460px) rotateX(75deg);
  background:
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(150, 190, 255, 0.2) 26px 28px),
    repeating-linear-gradient(0deg, transparent 0 15px, rgba(150, 190, 255, 0.11) 15px 17px),
    repeating-linear-gradient(0deg, transparent 0 68px, rgba(6, 10, 22, 0.86) 68px 92px),
    linear-gradient(180deg, #13223e 0%, #16294a 30%, #101d36 100%);
  background-color: #111f3a;
}
.art-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(5.5% 3.2% at 74% 34.6%, rgba(255, 240, 198, 0.95), rgba(255, 204, 104, 0.6) 58%, transparent 100%),
    radial-gradient(24% 13% at 74% 34.6%, rgba(255, 176, 66, 0.22), transparent 72%),
    linear-gradient(180deg, transparent 30%, rgba(122, 166, 230, 0.16) 37.6%, transparent 42%),
    radial-gradient(100% 50% at 50% 100%, rgba(28, 107, 255, 0.14), transparent 70%);
}
@media (min-width: 900px) {
  .art-field::before {
    left: -35%; right: -35%;
    transform: perspective(620px) rotateX(74deg);
    background-size: 34px 100%, 100% 20px, 100% 96px, 100% 100%;
  }
}

/* --- close up module (dust / soiling) ----------------------------------- */
.art-module::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(190, 215, 255, 0.2) 38px 41px),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(190, 215, 255, 0.2) 38px 41px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 15px),
    linear-gradient(145deg, #1d2d4d, #0c1428 60%, #070c18);
  transform: perspective(1200px) rotateX(38deg) rotateZ(-8deg) scale(1.5);
  transform-origin: 50% 50%;
}
.art-module::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 45% at 30% 30%, rgba(196, 150, 78, 0.34), transparent 65%),
    radial-gradient(40% 40% at 72% 68%, rgba(168, 128, 70, 0.26), transparent 70%),
    linear-gradient(115deg, transparent 40%, rgba(255, 233, 190, 0.09) 52%, transparent 62%);
  mix-blend-mode: screen;
}

/* --- rooftop / horizon -------------------------------------------------- */
.art-horizon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #0a1730 0%, #14243f 34%, #22344f 52%, #2b3d56 55%, #080e1c 56%, #05090f 100%);
  background-color: #0a1430;
}
.art-horizon::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(28% 22% at 72% 46%, rgba(255, 198, 41, 0.55), rgba(255, 150, 41, 0.12) 45%, transparent 72%),
    repeating-linear-gradient(88deg, transparent 0 44px, rgba(120, 160, 230, 0.12) 44px 46px);
  background-position: 0 0, 0 56%;
  background-size: 100% 100%, 100% 44%;
  background-repeat: no-repeat;
}

/* --- robot / hardware bay ----------------------------------------------- */
.art-bay::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 55% at 50% 42%, rgba(28, 107, 255, 0.22), transparent 68%),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(255, 255, 255, 0.045) 42px 43px),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.045) 42px 43px),
    linear-gradient(160deg, #0f1932, #060a14 70%);
}
.art-bay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 120%, rgba(255, 198, 41, 0.14), transparent 60%);
}

/* --- data / control room ------------------------------------------------ */
.art-data::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(120, 170, 255, 0.05) 3px 4px),
    radial-gradient(80% 60% at 20% 10%, rgba(28, 107, 255, 0.28), transparent 62%),
    radial-gradient(70% 70% at 90% 90%, rgba(10, 63, 176, 0.35), transparent 65%),
    linear-gradient(150deg, #0a1428, #04070f);
}

/* --- dusk field / closing CTA ------------------------------------------- */
.art-dusk {
  background: linear-gradient(180deg,
    #150d20 0%, #331a2c 18%, #6b3320 31%, #a8501f 35.5%,
    #d1712a 37.2%, #120c18 38.2%, #07060f 100%);
  background-color: #07060f;
}
.art-dusk::before {
  content: "";
  position: absolute;
  left: -60%; right: -60%; top: 38%; bottom: -55%;
  transform-origin: 50% 0%;
  transform: perspective(460px) rotateX(75deg);
  background:
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(255, 196, 132, 0.17) 26px 28px),
    repeating-linear-gradient(0deg, transparent 0 15px, rgba(255, 176, 110, 0.09) 15px 17px),
    repeating-linear-gradient(0deg, transparent 0 68px, rgba(10, 6, 14, 0.88) 68px 92px),
    linear-gradient(180deg, #2c1a2c 0%, #1d1426 34%, #0d0a16 100%);
  background-color: #1a1120;
}
.art-dusk::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(7% 3.6% at 50% 36.4%, rgba(255, 238, 200, 0.92), rgba(255, 168, 70, 0.5) 60%, transparent 100%),
    radial-gradient(34% 15% at 50% 37%, rgba(255, 132, 50, 0.26), transparent 74%),
    linear-gradient(180deg, transparent 55%, rgba(4, 7, 14, 0.82) 100%);
}
@media (min-width: 900px) {
  .art-dusk::before {
    left: -35%; right: -35%;
    transform: perspective(620px) rotateX(74deg);
    background-size: 34px 100%, 100% 20px, 100% 96px, 100% 100%;
  }
}

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition:
    transform 0.5s var(--ease),
    background 0.45s var(--ease),
    border-color 0.45s var(--ease),
    backdrop-filter 0.45s var(--ease);
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 14, 0.78), transparent);
  opacity: 1;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.header.is-stuck {
  background: rgba(4, 7, 14, 0.82);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--line);
}
.header.is-stuck::before { opacity: 0; }
.header.is-open {
  background: var(--ink);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: var(--line);
}
.header.is-open::before { opacity: 0; }
.header.is-hidden { transform: translateY(-100%); }

.header__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  margin-right: auto;
  min-height: 44px;
}
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__type {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.brand__type span { font-weight: 400; color: var(--fg-2); }

@media (min-width: 900px) {
  .brand__mark { width: 36px; height: 36px; }
  .brand__type { font-size: 0.96rem; }
}

.nav { display: none; }
@media (min-width: 1080px) { .nav { display: block; } }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
  transition: color 0.3s var(--ease);
}
.nav__link:hover, .nav__item.is-active .nav__link { color: var(--fg); }
.nav__link[aria-expanded="true"] { color: var(--fg); }
.nav__caret {
  width: 7px; height: 7px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.35s var(--ease);
  opacity: 0.6;
}
.nav__link[aria-expanded="true"] .nav__caret { transform: translateY(1px) rotate(225deg); }

.header__cta { display: none; }
@media (min-width: 720px) { .header__cta { display: inline-flex; } }
.header__cta.btn { padding: 11px 18px; min-height: 42px; font-size: 0.72rem; }

/* burger */
.burger {
  width: 42px; height: 42px;
  margin-right: -10px;
  display: grid;
  place-items: center;
  flex: none;
}
@media (min-width: 1080px) { .burger { display: none; } }
.burger span {
  display: block;
  width: 22px; height: 1.6px;
  background: var(--fg);
  transition: transform 0.4s var(--ease), opacity 0.25s var(--ease);
}
.burger span + span { margin-top: 6px; }
.header.is-open .burger span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.header.is-open .burger span:nth-child(2) { opacity: 0; }
.header.is-open .burger span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* --- desktop mega panel -------------------------------------------------- */
.mega {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(6, 10, 18, 0.96);
  backdrop-filter: saturate(160%) blur(22px);
  -webkit-backdrop-filter: saturate(160%) blur(22px);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease), visibility 0s linear 0.32s;
  display: none;
}
@media (min-width: 1080px) { .mega { display: block; } }
.mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease), visibility 0s;
}
.mega__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 40px var(--pad) 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
}
.mega__col { display: grid; gap: 14px; align-content: start; }
.mega__head {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.mega__link {
  display: grid;
  gap: 3px;
  padding: 9px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.mega__link:hover { border-bottom-color: var(--line-2); }
.mega__link strong {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
}
.mega__link:hover strong { color: var(--solar); }
.mega__link span { font-size: 0.8rem; color: var(--fg-3); line-height: 1.4; }

.mega__feature {
  position: relative;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

/* --- mobile drawer ------------------------------------------------------- */
.drawer {
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 190;
  background: var(--ink);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0s linear 0.4s;
  -webkit-overflow-scrolling: touch;
}
.drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0s;
}
@media (min-width: 1080px) { .drawer { display: none; } }

.drawer__inner { padding: 8px var(--pad) 56px; }

.acc { border-bottom: 1px solid var(--line); }
.acc__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 6vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.acc__sign { position: relative; width: 16px; height: 16px; flex: none; opacity: 0.55; }
.acc__sign::before, .acc__sign::after {
  content: ""; position: absolute; background: currentColor;
  transition: transform 0.4s var(--ease);
}
.acc__sign::before { inset: 7.2px 0; height: 1.6px; }
.acc__sign::after { inset: 0 7.2px; width: 1.6px; }
.acc__trigger[aria-expanded="true"] .acc__sign::after { transform: scaleY(0); }
/* Height is driven from JS so the panel animates reliably; the grid 0fr/1fr
   trick collapsed to zero inside the drawer's scroll container. */
.acc__panel {
  height: 0;
  overflow: hidden;
  transition: height 0.45s var(--ease);
}
.acc__panel[data-h="auto"] { height: auto; }
.acc__list { display: grid; gap: 2px; padding-bottom: 20px; }
.acc__list a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  color: var(--fg-2);
  font-size: 0.95rem;
}
.acc__list a i {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--fg-3);
  width: 22px;
  flex: none;
}
.acc__list a:hover { color: var(--solar); }

.drawer__foot {
  display: grid;
  gap: 12px;
  padding-top: 32px;
}
.drawer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 0;
  overflow: hidden;
}
.hero--page { min-height: 76svh; }

.hero__media {
  position: absolute;
  inset: -12% 0 0;
  height: 112%;
  z-index: 0;
  will-change: transform;
}

.hero__body {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--pad) clamp(28px, 5vh, 56px);
  display: grid;
  gap: clamp(20px, 3.4vh, 34px);
  justify-items: start;
}

.hero__title { max-width: 16ch; }
.hero__lede { max-width: 40ch; }

/* telemetry rail under the hero */
.telemetry {
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--line-2);
  background: rgba(4, 7, 14, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.telemetry__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 720px) {
  .telemetry__inner { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.telemetry__cell {
  padding: 16px 0;
  display: grid;
  gap: 4px;
  border-left: 1px solid var(--line);
  padding-left: 16px;
}
.telemetry__cell:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 719px) {
  .telemetry__cell:nth-child(3) { border-left: 0; padding-left: 0; }
  .telemetry__cell:nth-child(n + 3) { border-top: 1px solid var(--line); }
}
.telemetry__val {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3.2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.telemetry__key {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.scroll-hint {
  position: absolute;
  right: var(--pad);
  bottom: clamp(28px, 5vh, 56px);
  z-index: 4;
  display: none;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-3);
}
@media (min-width: 960px) { .scroll-hint { display: flex; } }
.scroll-hint::after {
  content: "";
  width: 1px; height: 54px;
  background: linear-gradient(180deg, var(--line-3), transparent);
  animation: hint 2.6s var(--ease-in-out) infinite;
}
@keyframes hint {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.3; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* --------------------------------------------------------------------------
   9. Cards / numbered layers
   -------------------------------------------------------------------------- */
.layer-list { display: grid; }
.layer {
  display: grid;
  gap: 10px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.layer:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 860px) {
  .layer {
    grid-template-columns: 76px minmax(0, 1.1fr) minmax(0, 1.6fr);
    gap: 32px;
    align-items: start;
    padding: 34px 0;
    transition: background 0.5s var(--ease);
  }
  .layer:hover { background: rgba(255, 255, 255, 0.022); }
}
.layer__no {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--solar);
  padding-top: 5px;
}
.layer__title { font-size: clamp(1.4rem, 4.4vw, 2.1rem); }
.layer__copy { color: var(--fg-2); font-size: 0.95rem; max-width: 52ch; }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.008));
  transition: border-color 0.45s var(--ease), transform 0.45s var(--ease), background 0.45s var(--ease);
  overflow: hidden;
  height: 100%;
}
.card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.card__no {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  color: var(--fg-3);
}
.card__title { font-size: clamp(1.08rem, 2.2vw, 1.3rem); }
.card__copy { color: var(--fg-2); font-size: 0.9rem; line-height: 1.55; }
.card__foot { margin-top: auto; padding-top: 16px; }

a.card::after {
  content: "";
  position: absolute;
  right: 22px; top: 22px;
  width: 9px; height: 9px;
  border-top: 1.4px solid var(--fg-3);
  border-right: 1.4px solid var(--fg-3);
  transform: rotate(45deg);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
a.card:hover::after { transform: rotate(45deg) translate(3px, -3px); border-color: var(--solar); }

/* big photographic card */
.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.5s var(--ease);
}
.pcard:hover { border-color: var(--line-2); }
.pcard .media__art { transition: transform 1.1s var(--ease); }
.pcard:hover .media__art { transform: scale(1.06); }
.pcard__body {
  position: relative;
  z-index: 3;
  padding: clamp(22px, 2.6vw, 32px);
  display: grid;
  gap: 10px;
}
/* a local wash so the caption stays readable over a product shot */
.pcard__body::before {
  content: "";
  position: absolute;
  inset: -40% 0 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(4, 7, 14, 0.82) 42%, rgba(4, 7, 14, 0.94));
  pointer-events: none;
}
.pcard__tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--solar);
}
.pcard__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 3.6vw, 2.1rem);
  line-height: 0.96;
  letter-spacing: -0.028em;
  text-transform: uppercase;
}
.pcard__copy { color: var(--fg-2); font-size: 0.9rem; max-width: 34ch; }

/* --- consequence chain: dirt -> performance drop -> revenue loss --------- */
.chain {
  display: grid;
  gap: 0;
  counter-reset: none;
}
.chain__step {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 24px 0 24px 46px;
  border-top: 1px solid var(--line);
}
.chain__step:last-child { border-bottom: 1px solid var(--line); }
.chain__no {
  position: absolute;
  left: 0; top: 26px;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--solar);
}
.chain__label {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.028em;
  text-transform: uppercase;
  line-height: 1;
}
.chain__note { color: var(--fg-3); font-size: 0.88rem; }

@media (min-width: 860px) {
  .chain { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); }
  .chain__step {
    padding: 28px 24px 28px 0;
    border-top: 1px solid var(--line-2);
    border-bottom: 0 !important;
  }
  /* the arrow between the steps */
  .chain__step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 6px; top: 37px;
    width: 10px; height: 10px;
    border-top: 1.4px solid var(--line-3);
    border-right: 1.4px solid var(--line-3);
    transform: rotate(45deg);
  }
  .chain__no { top: 32px; left: auto; right: 34px; }
  .chain__step { padding-left: 0; padding-top: 32px; }
  .chain__label { margin-top: 8px; }
}

/* --------------------------------------------------------------------------
   10. Stats
   -------------------------------------------------------------------------- */
.stat { display: grid; gap: 8px; }
.stat__val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 11vw, 7.5rem);
  line-height: 0.84;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}
.stat__val sup {
  font-size: 0.34em;
  vertical-align: super;
  letter-spacing: 0;
  color: var(--solar);
}
.stat__key {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.stat__note { color: var(--fg-2); font-size: 0.88rem; max-width: 34ch; }

.stat-row {
  display: grid;
  gap: 0;
}
.stat-row > * {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 860px) {
  .stat-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); }
  .stat-row > * { padding: 40px 0 0; }
}

/* --------------------------------------------------------------------------
   11. Flow diagram (Earth360 pipeline)
   -------------------------------------------------------------------------- */
.flow {
  display: grid;
  gap: 0;
  counter-reset: flow;
}
.flow__node {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  align-items: center;
}
.flow__node::before {
  content: "";
  position: absolute;
  left: 16.5px; top: 50%; bottom: -14px;
  width: 1px;
  background: var(--line-2);
}
.flow__node:last-child::before { display: none; }
.flow__dot {
  position: relative;
  width: 34px; height: 34px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--fg-3);
  background: var(--ink);
  z-index: 1;
  transition: border-color 0.5s var(--ease), color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.flow__node.is-lit .flow__dot {
  border-color: var(--solar);
  color: var(--solar);
  box-shadow: 0 0 0 4px rgba(255, 198, 41, 0.1);
}
.flow__label {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.6vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-2);
  transition: color 0.5s var(--ease);
}
.flow__node.is-lit .flow__label { color: var(--fg); }
.flow__label small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg-3);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   12. Earth360 dashboard mock
   -------------------------------------------------------------------------- */
.dash {
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: linear-gradient(170deg, #0c1526, #060a13);
  overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}
.dash__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.022);
}
.dash__dots { display: flex; gap: 5px; }
.dash__dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--line-3); display: block; }
.dash__name {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.dash__live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.dash__live::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s var(--ease-in-out) infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.dash__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
@media (min-width: 620px) { .dash__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.dash__kpi {
  background: #080d18;
  padding: 14px 14px 16px;
  display: grid;
  gap: 5px;
}
.dash__kpi dt {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.dash__kpi dd {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.6vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.dash__kpi dd em {
  font-style: normal;
  font-size: 0.5em;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}
.dash__delta {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
}
.dash__delta--up { color: var(--green); }
.dash__delta--down { color: var(--alert); }
.dash__delta--flat { color: var(--fg-3); }

.dash__chart { padding: 18px 14px 6px; border-top: 1px solid var(--line); }
.dash__chart svg { width: 100%; height: auto; overflow: visible; }
.dash__spark { stroke: var(--blue-2); stroke-width: 1.6; fill: none; vector-effect: non-scaling-stroke; }
.dash__spark--ghost { stroke: var(--line-3); stroke-dasharray: 3 4; }
.dash__fill { fill: url(#dashGrad); }
.dash__axis { stroke: var(--line); stroke-width: 1; vector-effect: non-scaling-stroke; }
.dash__marker { fill: var(--solar); }

.dash__feed { border-top: 1px solid var(--line); }
.dash__event {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}
.dash__event:last-child { border-bottom: 0; }
.dash__event time {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--fg-3);
  letter-spacing: 0.08em;
}
.dash__event p { color: var(--fg-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chip {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 7px;
  border: 1px solid currentColor;
  border-radius: 2px;
  white-space: nowrap;
}
.chip--ok { color: var(--green); }
.chip--warn { color: var(--solar); }
.chip--alert { color: var(--alert); }
.chip--info { color: var(--blue-2); }

/* --------------------------------------------------------------------------
   12a. Product shot — a cut-out machine on the dark field
   -------------------------------------------------------------------------- */
.shot {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  min-height: 220px;
}
.shot__img {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 620px;
  height: auto;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.65));
  transition: transform 0.9s var(--ease);
}
.shot:hover .shot__img { transform: translateY(-5px) scale(1.015); }
/* a soft pool of light under the machine so it sits on the surface */
.shot::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 12%; right: 12%; bottom: 14%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(28, 107, 255, 0.28), transparent 75%);
  filter: blur(14px);
}

/* the machine inside a photographic card */
.pcard .shot { position: absolute; inset: 0 0 46%; padding: clamp(14px, 3vw, 26px); }
.pcard .shot__img { max-width: 440px; }

/* one card carries the product shot and leads the row */
.pcard--feature { min-height: 380px; }
@media (min-width: 1080px) {
  .grid--feature { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--feature .pcard--feature { grid-column: span 2; min-height: 460px; }
  .pcard--feature .shot__img { max-width: 620px; }
}
@media (min-width: 720px) and (max-width: 1079px) {
  .grid--feature .pcard--feature { grid-column: 1 / -1; }
}

/* --------------------------------------------------------------------------
   12b. Engineering schematic
   -------------------------------------------------------------------------- */
.schematic {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(0deg, var(--line) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(170deg, #0a1120, #05080f);
  padding: clamp(18px, 3vw, 34px);
  overflow: hidden;
}
.schematic svg { width: 100%; height: auto; }
.schematic__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.schematic__foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}
.sk-body { fill: none; stroke: rgba(255,255,255,.72); stroke-width: 1.4; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.sk-thin { fill: none; stroke: rgba(255,255,255,.32); stroke-width: 1; vector-effect: non-scaling-stroke; }
.sk-fill { fill: rgba(28,107,255,.13); stroke: none; }
.sk-accent { fill: none; stroke: var(--solar); stroke-width: 1.4; vector-effect: non-scaling-stroke; }
.sk-dim { fill: none; stroke: rgba(255,255,255,.26); stroke-width: 1; stroke-dasharray: 3 4; vector-effect: non-scaling-stroke; }
.sk-label { fill: rgba(255,255,255,.5); font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.sk-key { fill: var(--solar); font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; }
.sk-panel { fill: rgba(140,180,255,.07); stroke: rgba(140,180,255,.3); stroke-width: 1; vector-effect: non-scaling-stroke; }

/* --------------------------------------------------------------------------
   12c. Caricature strip — the illustrated "how you earn" explainer
   -------------------------------------------------------------------------- */
.strip {
  display: grid;
  gap: var(--gap);
  counter-reset: strip;
}
@media (min-width: 680px) { .strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .strip { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.toon {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  overflow: hidden;
  transition: border-color 0.45s var(--ease), transform 0.45s var(--ease);
}
.toon:hover { border-color: var(--line-2); transform: translateY(-3px); }

.toon__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background:
    radial-gradient(80% 70% at 50% 100%, rgba(28, 107, 255, 0.16), transparent 70%),
    linear-gradient(170deg, #0f1b30, #070c16);
  overflow: hidden;
}
.toon__frame svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.toon__no {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  color: var(--solar);
}
.toon__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.4vw, 1.22rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  text-transform: uppercase;
}
.toon__copy { color: var(--fg-2); font-size: 0.88rem; line-height: 1.5; }

/* flat-illustration palette, shared by every frame */
.ill-skin   { fill: #f0c9a4; }
.ill-skin-2 { fill: #d9a878; }
.ill-hair   { fill: #241a14; }
.ill-shirt  { fill: #1c6bff; }
.ill-shirt-2{ fill: #0a3fb0; }
.ill-shirt-3{ fill: #ffc629; }
.ill-dark   { fill: #16233c; }
.ill-panel  { fill: #16294a; stroke: rgba(150, 190, 255, 0.4); stroke-width: 1.4; }
.ill-line   { fill: none; stroke: rgba(255, 255, 255, 0.5); stroke-width: 2; stroke-linecap: round; }
.ill-accent { fill: var(--solar); }
.ill-green  { fill: #3fb950; }
.ill-white  { fill: #ffffff; }
.ill-ground { fill: rgba(255, 255, 255, 0.08); }

@keyframes coinRise {
  0%   { transform: translateY(6px); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translateY(-16px); opacity: 0; }
}
.ill-coin { animation: coinRise 3.2s var(--ease-in-out) infinite; transform-origin: center; }
.ill-coin:nth-of-type(2) { animation-delay: 0.9s; }
.ill-coin:nth-of-type(3) { animation-delay: 1.8s; }
@media (prefers-reduced-motion: reduce) { .ill-coin { animation: none; opacity: 1; } }

/* the headline number */
.payout {
  display: grid;
  gap: 10px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--solar);
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(255, 198, 41, 0.12), rgba(255, 198, 41, 0.02));
}
.payout__val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 12vw, 7rem);
  line-height: 0.84;
  letter-spacing: -0.045em;
  color: var(--solar);
}
.payout__val small { font-size: 0.3em; letter-spacing: 0.02em; }

/* --------------------------------------------------------------------------
   13. Logo wall
   -------------------------------------------------------------------------- */
.wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (min-width: 720px) { .wall { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .wall { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.wall__cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 108px;
  display: grid;
  place-items: center;
  padding: 22px 18px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 2.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  transition: color 0.45s var(--ease), background 0.45s var(--ease);
}
.wall__cell:hover { color: var(--fg); background: rgba(255, 255, 255, 0.025); }
.wall__cell img { max-height: 40px; width: auto; filter: grayscale(1) brightness(2.4); opacity: 0.6; transition: opacity 0.4s var(--ease), filter 0.4s var(--ease); }
.wall__cell:hover img { opacity: 1; filter: grayscale(0) brightness(1); }

/* --------------------------------------------------------------------------
   14. Quotes
   -------------------------------------------------------------------------- */
.quote {
  display: grid;
  gap: 24px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent);
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2.6vw, 1.5rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
  text-transform: none;
}
.quote figcaption { margin-top: auto; display: grid; gap: 3px; }
.quote__who { font-weight: 600; font-size: 0.88rem; }
.quote__meta { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); }

.quote--empty { border-style: dashed; border-color: var(--line-2); }
.quote--empty blockquote { color: var(--fg-3); }

/* --------------------------------------------------------------------------
   15. Forms
   -------------------------------------------------------------------------- */
.field { display: grid; gap: 8px; }
.field > label,
.fieldset__legend {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.field > label .req { color: var(--solar); }

.input, .select, .textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 13px 14px;
  min-height: 48px;
  font-size: 0.95rem;
  color: var(--fg);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--fg-3); }
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--blue-2);
  background: rgba(28, 107, 255, 0.07);
  outline: none;
}
.textarea { min-height: 120px; resize: vertical; line-height: 1.55; }

.select {
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.5) 50%), linear-gradient(135deg, rgba(255,255,255,.5) 50%, transparent 50%);
  background-position: calc(100% - 19px) 21px, calc(100% - 13px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.select option { background: var(--surface-2); color: var(--fg); }

.fieldset { display: grid; gap: 14px; border: 0; padding: 0; margin: 0; }

.form-grid { display: grid; gap: 18px; }
@media (min-width: 680px) {
  .form-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid .span-2 { grid-column: 1 / -1; }
}

/* choice chips */
.choices { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { position: relative; }
.choice input {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0;
}
.choice span {
  display: block;
  padding: 11px 16px;
  min-height: 44px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--fg-2);
  transition: all 0.3s var(--ease);
  user-select: none;
}
.choice input:hover + span { border-color: var(--line-3); color: var(--fg); }
.choice input:checked + span {
  border-color: var(--solar);
  background: rgba(255, 198, 41, 0.12);
  color: var(--fg);
}
.choice input:focus-visible + span { outline: 2px solid var(--solar); outline-offset: 3px; }

.file-drop {
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  display: grid;
  gap: 6px;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.file-drop:hover, .file-drop.is-hot { border-color: var(--solar); background: rgba(255, 198, 41, 0.05); }
.file-drop input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.file-drop strong { font-size: 0.9rem; font-weight: 600; }
.file-drop span { font-size: 0.78rem; color: var(--fg-3); }

.form-note { font-size: 0.78rem; color: var(--fg-3); line-height: 1.55; }

.form-status {
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  font-size: 0.88rem;
  display: none;
}
.form-status.is-shown { display: block; }
.form-status.is-ok { border-color: var(--green); color: var(--green); background: rgba(63, 185, 80, 0.07); }
.form-status.is-err { border-color: var(--alert); color: var(--alert); background: rgba(255, 107, 74, 0.07); }

/* --------------------------------------------------------------------------
   16. Plant health wizard
   -------------------------------------------------------------------------- */
.wizard {
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.006));
  overflow: hidden;
}
.wizard__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px clamp(18px, 3vw, 30px);
  border-bottom: 1px solid var(--line);
}
.wizard__step {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  white-space: nowrap;
}
.wizard__track {
  flex: 1;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.wizard__fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--solar);
  transition: width 0.55s var(--ease);
}
.wizard__body { padding: clamp(22px, 4vw, 40px); min-height: 330px; display: grid; align-content: start; gap: 22px; }
.wizard__q { font-size: clamp(1.35rem, 4.4vw, 2rem); }
.wizard__hint { font-size: 0.86rem; color: var(--fg-3); }

.wizard__opts { display: grid; gap: 8px; }
@media (min-width: 620px) { .wizard__opts--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.opt { position: relative; }
.opt input { position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0; }
.opt span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  min-height: 54px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--fg-2);
  transition: all 0.3s var(--ease);
}
.opt span::before {
  content: "";
  width: 15px; height: 15px;
  flex: none;
  border: 1px solid var(--line-3);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
}
.opt--multi span::before { border-radius: 2px; }
.opt input:hover + span { border-color: var(--line-3); color: var(--fg); }
.opt input:checked + span { border-color: var(--solar); background: rgba(255, 198, 41, 0.09); color: var(--fg); }
.opt input:checked + span::before { border-color: var(--solar); background: var(--solar); box-shadow: inset 0 0 0 3px #0c1220; }
.opt input:focus-visible + span { outline: 2px solid var(--solar); outline-offset: 3px; }

.wizard__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px clamp(18px, 3vw, 30px);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.wizard__foot .btn--back { margin-right: auto; }
.wizard__foot .btn[disabled] { opacity: 0.3; pointer-events: none; }

.wizard__capture {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}
.wizard__capture .btn { justify-self: start; }

.verdict { display: grid; gap: 20px; }
.verdict__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: start;
  padding: 8px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.verdict__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.verdict[data-level="healthy"] .verdict__badge { color: var(--green); }
.verdict[data-level="attention"] .verdict__badge { color: var(--blue-2); }
.verdict[data-level="due"] .verdict__badge { color: var(--solar); }
.verdict[data-level="urgent"] .verdict__badge { color: var(--alert); }

.gauge { display: grid; gap: 10px; }
.gauge__bar { height: 6px; border-radius: 4px; background: var(--line); overflow: hidden; }
.gauge__bar i { display: block; height: 100%; width: 0; background: currentColor; transition: width 0.9s var(--ease); }
.verdict[data-level="healthy"] .gauge { color: var(--green); }
.verdict[data-level="attention"] .gauge { color: var(--blue-2); }
.verdict[data-level="due"] .gauge { color: var(--solar); }
.verdict[data-level="urgent"] .gauge { color: var(--alert); }
.gauge__scale { display: flex; justify-content: space-between; }

.findings { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.findings li {
  background: #080d18;
  padding: 13px 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  font-size: 0.86rem;
  color: var(--fg-2);
}

/* --------------------------------------------------------------------------
   17. Stories
   -------------------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter {
  padding: 9px 16px;
  min-height: 40px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  transition: all 0.3s var(--ease);
}
.filter:hover { color: var(--fg); border-color: var(--line-3); }
.filter.is-on { color: var(--ink); background: var(--fg); border-color: var(--fg); }

.story { display: flex; flex-direction: column; }
.story__media { position: relative; aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; }
.story__media .media__art { transition: transform 1.1s var(--ease); }
.story:hover .story__media .media__art { transform: scale(1.05); }
.story__cap {
  position: absolute;
  z-index: 3;
  left: 16px; top: 16px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--solar);
  background: rgba(4, 7, 14, 0.7);
  border: 1px solid var(--line-2);
  padding: 4px 9px;
  border-radius: 2px;
}
.story__body { padding-top: 18px; display: grid; gap: 10px; }
.story__title { font-size: clamp(1.15rem, 3vw, 1.45rem); }
.story__meta { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.story[hidden] { display: none; }

.spec {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec__row {
  background: #080d18;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  padding: 14px 16px;
  align-items: baseline;
}
.spec__k {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.spec__v { font-size: 0.92rem; }

/* --------------------------------------------------------------------------
   18. Team
   -------------------------------------------------------------------------- */
.person { display: grid; gap: 14px; }
.person__portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(170deg, #121d33, #06090f);
  display: grid;
  place-items: center;
}
.person__initials {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.1);
}
.person__portrait::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 40px, rgba(255, 255, 255, 0.03) 40px 41px),
    radial-gradient(70% 55% at 50% 0%, rgba(28, 107, 255, 0.2), transparent 70%);
}
.person__name { font-size: clamp(1.1rem, 2.6vw, 1.35rem); }
.person__role { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--solar); }
.person__bio { font-size: 0.88rem; color: var(--fg-2); }

/* --------------------------------------------------------------------------
   19. Timeline
   -------------------------------------------------------------------------- */
.timeline { display: grid; }
.tl {
  display: grid;
  gap: 8px;
  padding: 26px 0 26px 28px;
  border-top: 1px solid var(--line);
  position: relative;
}
.tl:last-child { border-bottom: 1px solid var(--line); }
.tl::before {
  content: "";
  position: absolute;
  left: 0; top: 33px;
  width: 9px; height: 9px;
  border: 1px solid var(--solar);
  border-radius: 50%;
}
.tl::after {
  content: "";
  position: absolute;
  left: 4px; top: 42px; bottom: -1px;
  width: 1px;
  background: var(--line);
}
.tl:last-child::after { display: none; }
@media (min-width: 860px) {
  .tl { grid-template-columns: 200px minmax(0, 1fr); gap: 40px; padding-left: 28px; align-items: start; }
}
.tl__when { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; color: var(--solar); }
.tl__what { display: grid; gap: 8px; }

/* --------------------------------------------------------------------------
   19a. Article prose — the blog
   -------------------------------------------------------------------------- */
.prose {
  max-width: 68ch;
  color: var(--fg-2);
  font-size: clamp(1rem, 1.9vw, 1.09rem);
  line-height: 1.72;
}
.prose > * + * { margin-top: 1.15em; }

.prose h2 {
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  color: var(--fg);
  margin-top: 2.1em;
  line-height: 1.02;
}
.prose h3 {
  font-size: clamp(1.1rem, 2.6vw, 1.32rem);
  color: var(--fg);
  margin-top: 1.7em;
  text-transform: none;
  letter-spacing: -0.018em;
}
.prose p > strong { color: var(--fg); font-weight: 600; }
.prose a { color: var(--blue-2); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--solar); }

.prose ul, .prose ol { display: grid; gap: 10px; padding-left: 0; }
.prose li { position: relative; padding-left: 26px; }
.prose ul > li::before {
  content: "";
  position: absolute; left: 4px; top: 0.72em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--solar);
}
.prose ol { counter-reset: p-ol; }
.prose ol > li { counter-increment: p-ol; }
.prose ol > li::before {
  content: counter(p-ol);
  position: absolute; left: 0; top: 0;
  font-family: var(--font-mono); font-size: 0.74rem; color: var(--solar);
  line-height: 1.9;
}

.prose blockquote {
  margin-inline: 0;
  padding: 18px 22px;
  border-left: 2px solid var(--solar);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg);
  font-size: 1.05em;
}
.prose blockquote p { margin: 0; }

.prose figure { margin-inline: 0; }
.prose figcaption { margin-top: 10px; font-size: 0.82rem; color: var(--fg-3); }
.prose hr { border: 0; height: 1px; background: var(--line); margin-block: 2.4em; }

.prose .callout {
  padding: 20px 22px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: rgba(28, 107, 255, 0.07);
  color: var(--fg-2);
}
.prose .callout strong { color: #fff; }

/* article chrome */
.post-meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center;
}
.post-toc {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
}
.post-toc a { color: var(--fg-2); font-size: 0.9rem; }
.post-toc a:hover { color: var(--solar); }

.post-card { display: flex; flex-direction: column; height: 100%; }
.post-card__media { position: relative; aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; }
.post-card__media .media__art, .post-card__media .media__img { transition: transform 1s var(--ease); }
.post-card:hover .post-card__media .media__img { transform: scale(1.05); }
.post-card__body { padding-top: 18px; display: grid; gap: 9px; }
.post-card__title { font-size: clamp(1.1rem, 2.6vw, 1.35rem); }

/* --------------------------------------------------------------------------
   19b. Campaign landing page — its own bar, hero and form panel
   -------------------------------------------------------------------------- */
.lp-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 7, 14, 0.9);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.lp-bar__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 10px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-bar__call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  min-height: 44px;
  border: 1px solid var(--solar);
  border-radius: 999px;
  color: var(--solar);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.lp-bar__call:hover { background: var(--solar); color: #14100a; }

.lp-hero { position: relative; padding-block: clamp(36px, 7vh, 88px); overflow: hidden; }
.lp-hero__inner {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (min-width: 960px) {
  .lp-hero__inner { grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr); align-items: center; }
}
.lp-hero__copy { display: grid; gap: 18px; justify-items: start; }

.tick { display: grid; gap: 10px; }
.tick li {
  position: relative;
  padding-left: 30px;
  color: var(--fg-2);
  font-size: 0.94rem;
}
.tick li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 9px;
  border-left: 2px solid var(--solar);
  border-bottom: 2px solid var(--solar);
  transform: rotate(-45deg);
}

.lp-form {
  background: rgba(9, 14, 26, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: clamp(22px, 3.4vw, 34px);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.95);
}
.lp-form__head {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.024em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.lp-foot {
  border-top: 1px solid var(--line);
  background: #02040a;
  padding-block: 28px;
  text-align: center;
}
.lp-foot p { margin: 0 0 6px; }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  background: #02040a;
  padding-top: clamp(52px, 8vh, 96px);
}
.footer__top {
  display: grid;
  gap: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(44px, 6vh, 72px);
}
@media (min-width: 900px) {
  .footer__top { grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr); }
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 24px;
}
@media (min-width: 620px) { .footer__cols { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.footer__col { display: grid; gap: 11px; align-content: start; }
.footer__head {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.footer__col a { font-size: 0.88rem; color: var(--fg-2); transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--solar); }
.footer__tag { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-2); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 34px;
  border-top: 1px solid var(--line);
}

/* floating call affordance, mobile only */
.fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--solar);
  color: #14100a;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px -10px rgba(0, 0, 0, 0.8);
  transform: translateY(140%);
  transition: transform 0.5s var(--ease);
}
.fab.is-shown { transform: translateY(0); }
@media (min-width: 900px) { .fab { display: none; } }

/* --------------------------------------------------------------------------
   21. Motion utilities
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.9s var(--ease) var(--delay, 0s),
    transform 0.9s var(--ease) var(--delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

.reveal-mask { display: block; overflow: hidden; padding-bottom: 0.04em; }
.reveal-mask > * {
  display: block;
  transform: translate3d(0, 106%, 0);
  transition: transform 1.05s var(--ease) var(--delay, 0s);
}
.reveal-mask.is-in > * { transform: none; }

.reveal-line {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s var(--ease) var(--delay, 0s);
}
.reveal-line.is-in { transform: scaleX(1); }

[data-parallax] { will-change: transform; }

.progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 210;
  background: var(--solar);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .reveal-mask > *, .reveal-line { opacity: 1 !important; transform: none !important; }
  [data-parallax] { transform: none !important; }
}

/* --------------------------------------------------------------------------
   22. Print
   -------------------------------------------------------------------------- */
@media print {
  .header, .drawer, .fab, .progress, .scroll-hint { display: none !important; }
  body { background: #fff; color: #000; }
  .media, .media__art { display: none; }
}
