/* ==========================================================================
   CTXA — design foundation
   Dark, warm soft-black base. Yeezy-muted tonal palette + sparse cool slate.
   Type: Fraunces (display) · Hanken Grotesk (body) · Geist Mono (technical).
   No build step — single stylesheet, variable woff2 self-hosted in /fonts.
   ========================================================================== */

/* ---- Fonts (self-hosted variable woff2) -------------------------------- */
@font-face {
  font-family: "Fraunces";
  src: url("/fonts/fraunces.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/fonts/fraunces-italic.woff2") format("woff2");
  font-weight: 100 900; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/hanken.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("/fonts/geist-mono.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}

/* ---- Tokens ------------------------------------------------------------ */
:root {
  /* color — warm near-black base, cool slate accent (sparse) */
  --ink:     #100f0d;   /* page background (warm soft black) */
  --char:    #1a1815;   /* raised surface / cards */
  --char-2:  #221f1a;   /* hover surface */
  --stone:   #2a2723;   /* hairline */
  --stone-2: #3a362f;   /* stronger divider */
  --clay:    #6e6a60;   /* dim text / captions */
  --ash:     #9c968a;   /* secondary text */
  --bone:    #e9e3d6;   /* body text (warm off-white) */
  --salt:    #f5f1e8;   /* headings */
  --slate:   #8e97a3;   /* accent — cool washed slate, used sparingly */
  --slate-dim: #6e7682;

  /* legacy aliases (older markup referenced these) */
  --bg: var(--ink);
  --fg: var(--bone);
  --muted: var(--ash);
  --line: var(--stone);
  --accent: var(--slate);

  /* type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* layout */
  --maxw: 1100px;
  --maxw-prose: 720px;
  --gutter: clamp(1.25rem, 4vw, 2.75rem);

  /* shape + depth */
  --r: 12px;
  --r-lg: 22px;
  --shadow-sm: 0 6px 20px -12px rgba(0,0,0,.7);
  --shadow: 0 30px 70px -28px rgba(0,0,0,.78);

  /* motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset / base ------------------------------------------------------ */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font: 400 16px/1.65 var(--body);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* film-grain overlay — subtle, never interactive */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: var(--bone); text-decoration: none; text-underline-offset: 3px; }
a:hover { color: var(--salt); }

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

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--ink), 0 0 0 4px var(--slate);
  border-radius: 4px;
}

::selection { background: var(--slate-dim); color: var(--salt); }

/* ---- Layout ------------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
main { flex: 1 0 auto; padding: clamp(2.5rem, 6vw, 5rem) 0; }

/* ---- Typography -------------------------------------------------------- */
h1, h2, h3 { font-family: var(--display); color: var(--salt); font-weight: 560; }
h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 0.9rem;
}
h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.15; margin: 2.5rem 0 0.6rem; }
h3 { font-size: 1.1rem; line-height: 1.25; margin: 1.6rem 0 0.4rem; font-weight: 520; }

p { margin: 0 0 1rem; }

.lead { color: var(--ash); font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.55; }

.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--clay);
  margin: 0 0 0.7rem;
}

/* ---- Tag / badge ------------------------------------------------------- */
.badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ash);
  border: 1px solid var(--stone-2);
  border-radius: 999px;
  padding: 0.12rem 0.55rem;
  margin-left: 0.55rem;
  vertical-align: middle;
}

/* ---- Nav (injected by /js/partials.js) -------------------------------- */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--stone);
}
.site-nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 62px; gap: 1rem; flex-wrap: wrap;
}
.site-nav .brand {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--salt);
}
.site-nav nav { display: flex; flex-wrap: wrap; }
.site-nav nav a {
  margin-left: 1.25rem;
  color: var(--ash);
  font-size: 0.92rem;
  transition: color .2s var(--ease);
}
.site-nav nav a:first-child { margin-left: 0; }
.site-nav nav a:hover { color: var(--salt); }
.site-nav nav a[aria-current="page"] { color: var(--salt); }

/* ---- Footer (injected by /js/partials.js) ----------------------------- */
.site-footer {
  border-top: 1px solid var(--stone);
  color: var(--ash);
  font-size: 0.9rem;
  margin-top: clamp(3rem, 8vw, 6rem);
}
.site-footer .wrap { padding-top: 3rem; padding-bottom: 2.5rem; }
.site-footer .foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}
.site-footer .foot-brand .mark {
  font-family: var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--salt);
  font-size: 1rem;
}
.site-footer .foot-brand p { color: var(--clay); margin: 0.6rem 0 0; max-width: 24ch; }
.site-footer h4 {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clay);
  font-weight: 500;
  margin: 0 0 0.9rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 0.5rem; }
.site-footer a { color: var(--ash); transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--salt); }
.site-footer .foot-base {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--stone);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  color: var(--clay); font-size: 0.82rem;
}

/* ---- Product list (current home — superseded in later phase) ---------- */
.products { list-style: none; padding: 0; margin: 1.5rem 0; }
.products li { padding: 1rem 0; border-bottom: 1px solid var(--stone); }
.products li:last-child { border-bottom: 0; }
.products .name { font-family: var(--display); font-weight: 560; color: var(--salt); }
.products .desc { color: var(--ash); display: block; margin-top: 0.2rem; }

/* ---- Legal / prose docs ----------------------------------------------- */
.wrap.legal { max-width: var(--maxw-prose); }
.legal h2 { font-size: 1.2rem; }
.legal p, .legal li { color: var(--bone); }
.updated { color: var(--clay); font-size: 0.85rem; }

/* ---- Motion preferences ------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---- Responsive: nav + footer ----------------------------------------- */
@media (max-width: 680px) {
  .site-footer .foot-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .site-footer .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .site-nav .wrap { min-height: 56px; flex-wrap: nowrap; gap: 0.65rem; }
  .site-nav .brand { flex: 0 0 auto; }
  .site-nav nav {
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .site-nav nav::-webkit-scrollbar { display: none; }
  .site-nav nav a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-left: 0.2rem;
    padding: 0 0.45rem;
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   HOMEPAGE
   ========================================================================== */
.home main { padding-top: 0; }
em { font-style: italic; }

/* ---- Section head ------------------------------------------------------ */
.section-head { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.section-head h2 { margin: 0.2rem 0 0; }
.section-head .lead { margin-top: 0.5rem; max-width: 46ch; }

/* ---- Hero -------------------------------------------------------------- */
.hero {
  min-height: min(82vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 9vh, 7rem) 0 clamp(2rem, 5vh, 4rem);
  position: relative;
}
.hero-title {
  font-size: clamp(3rem, 9vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 540;
  margin: 0.4rem 0 0;
  max-width: 16ch;
}
.hero-title em { color: var(--bone); font-weight: 400; }
.hero-sub { margin-top: 1.6rem; max-width: 44ch; }
.hero-cue {
  margin-top: clamp(2rem, 6vh, 4rem);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.hero-cue::before {
  content: "";
  width: 34px; height: 1px; background: var(--stone-2);
  display: inline-block;
}

/* ---- Coverflow --------------------------------------------------------- */
.cf { padding: clamp(2rem, 6vw, 4rem) 0; }
.cf-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.cf-nav { display: flex; gap: 0.5rem; }
.cf-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--stone-2); background: transparent;
  color: var(--ash); cursor: pointer; font-size: 1.1rem; line-height: 1;
  display: grid; place-items: center;
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.cf-btn:hover { color: var(--salt); border-color: var(--slate); }
.cf-btn:disabled { opacity: 0.3; cursor: default; }

.cf-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.75rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
  /* bleed to viewport edge so peeked covers feel infinite */
  padding: 0.5rem var(--gutter) 1.5rem;
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
  list-style: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cf-track::-webkit-scrollbar { display: none; }

.cover-item {
  flex: 0 0 clamp(260px, 38vw, 420px);
  scroll-snap-align: center;
}
.cover {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  border: 1px solid var(--stone-2);
  background: var(--char);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--salt);
  isolation: isolate;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.cover:hover {
  transform: translateY(-8px);
  border-color: var(--slate);
  box-shadow: var(--shadow);
}
.cover:focus-visible { transform: translateY(-8px); }

/* poster art layer — tonal gradient + oversized ghost glyph per app */
.cover-art {
  position: absolute; inset: 0; z-index: -1;
  background: var(--art, linear-gradient(160deg, #211e1a, #16140f));
}
.cover-art::after {
  content: attr(data-glyph);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  font-family: var(--display);
  font-weight: 300;
  font-size: 13rem;
  line-height: 1;
  color: var(--salt);
  opacity: 0.07;
  pointer-events: none;
  white-space: nowrap;
}
.cover-art::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16,15,13,0.72) 100%);
}

.cover-tag {
  position: absolute; top: 1.25rem; left: 1.25rem;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--bone);
  border: 1px solid rgba(233,227,214,0.25);
  border-radius: 999px; padding: 0.15rem 0.55rem;
  background: rgba(16,15,13,0.35);
  backdrop-filter: blur(4px);
}
.cover-name { font-family: var(--display); font-size: 1.7rem; font-weight: 560; line-height: 1.1; }
.cover-line { display: block; color: var(--ash); font-size: 0.92rem; margin-top: 0.25rem; }
.cover-go {
  margin-top: 0.9rem;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--slate);
  display: inline-flex; align-items: center; gap: 0.4rem;
  opacity: 0; transform: translateY(4px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.cover:hover .cover-go, .cover:focus-visible .cover-go { opacity: 1; transform: translateY(0); }

/* ---- Scroll reveal ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* staggered hero load */
.hero .eyebrow { animation: rise .8s var(--ease) both; }
.hero-title { animation: rise .9s var(--ease) .08s both; }
.hero-sub { animation: rise .9s var(--ease) .18s both; }
.hero-cue { animation: rise .9s var(--ease) .3s both; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero .eyebrow, .hero-title, .hero-sub, .hero-cue { animation: none; }
}

@media (max-width: 700px) {
  .cover-item { flex-basis: 78vw; }
  .cf-nav { display: none; }
}

/* ==========================================================================
   KODAI / LAB BAND — cinematic, full-bleed, the expressive moment
   ========================================================================== */
.kodai {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: clamp(3rem, 8vw, 7rem);
  padding: clamp(4rem, 11vw, 9rem) 0;
  background:
    radial-gradient(78% 120% at 80% 6%, rgba(142,151,163,.16), transparent 55%),
    radial-gradient(60% 90% at 8% 102%, rgba(183,144,106,.07), transparent 60%),
    linear-gradient(180deg, #14120e, #1b1916 55%, #131109);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  overflow: hidden;
}
.kodai::after { /* heavier local grain */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='k'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23k)'/%3E%3C/svg%3E");
}
.kodai-orb {
  position: absolute; top: -14%; right: -6%;
  width: 46vw; height: 46vw; max-width: 560px; max-height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142,151,163,.22), transparent 62%);
  filter: blur(24px); pointer-events: none;
  animation: breathe 10s var(--ease) infinite;
}
@keyframes breathe { 0%,100% { transform: scale(1); opacity: .75; } 50% { transform: scale(1.14); opacity: 1; } }

.kodai-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.kodai .eyebrow { color: var(--slate); }
.kodai-title {
  font-family: var(--display);
  font-size: clamp(3.4rem, 11vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--salt);
  margin: 0.3rem 0 0;
}
.kodai-statement {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.2vw, 2.6rem);
  line-height: 1.12;
  color: var(--bone);
  margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;
  max-width: 17ch;
}
.kodai-statement em { color: var(--slate); }
.kodai-sub { color: var(--ash); margin-top: 1rem; max-width: 42ch; }
.kodai-link {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-top: 1.9rem;
  font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.76rem; color: var(--salt);
  border: 1px solid var(--stone-2); border-radius: 999px;
  padding: 0.75rem 1.25rem;
  transition: border-color .25s var(--ease), background .25s var(--ease), gap .25s var(--ease);
}
.kodai-link:hover { border-color: var(--slate); background: rgba(142,151,163,.09); gap: 0.85rem; }

/* glass-box panel — frosted, gridded, faint mono "internals" */
.kodai-glass {
  position: relative;
  border: 1px solid rgba(233,227,214,.13);
  border-radius: var(--r-lg);
  background: linear-gradient(155deg, rgba(233,227,214,.06), rgba(18,16,12,.25));
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(233,227,214,.07);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  overflow: hidden;
  min-height: 320px;
}
.kodai-glass::before {
  content: ""; position: absolute; inset: 0; opacity: .55;
  background-image:
    linear-gradient(rgba(142,151,163,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142,151,163,.08) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(130% 90% at 72% 18%, #000, transparent 74%);
  mask-image: radial-gradient(130% 90% at 72% 18%, #000, transparent 74%);
}
.kodai-readout {
  position: relative; z-index: 1;
  font-family: var(--mono); font-size: 0.82rem; line-height: 2; color: var(--ash);
  margin: 0;
}
.kodai-readout .k { color: var(--clay); }
.kodai-readout b { color: var(--salt); font-weight: 500; }
.kodai-readout .on { color: var(--slate); }
.kodai-bar {
  display: inline-block; width: 130px; height: 9px; vertical-align: middle;
  border: 1px solid var(--stone-2); border-radius: 3px; overflow: hidden; position: relative;
}
.kodai-bar i { position: absolute; inset: 1px; width: 62%; background: var(--slate); border-radius: 2px; }
.kodai-cap { position: absolute; left: 0; bottom: 0; width: 100%; height: 38%;
  background: linear-gradient(180deg, transparent, rgba(18,16,12,.4)); pointer-events: none; }

@media (prefers-reduced-motion: reduce) { .kodai-orb { animation: none; } }

@media (max-width: 820px) {
  .kodai-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .kodai-glass { min-height: 260px; }
}

/* ==========================================================================
   Shared button
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.76rem; color: var(--salt);
  border: 1px solid var(--stone-2); border-radius: 999px;
  padding: 0.72rem 1.25rem;
  transition: border-color .25s var(--ease), background .25s var(--ease), gap .25s var(--ease);
}
.btn:hover { border-color: var(--slate); background: rgba(142,151,163,.09); gap: 0.85rem; color: var(--salt); }
.btn--ghost { border-color: var(--stone); color: var(--ash); }

/* ==========================================================================
   PRODUCT PAGE
   ========================================================================== */
.product .eyebrow { margin-bottom: 0.9rem; }
.p-hero { padding: clamp(1rem, 3vw, 2rem) 0 clamp(2rem, 4vw, 3rem); }
.p-title { font-size: clamp(2.6rem, 7vw, 4.6rem); line-height: 0.98; letter-spacing: -0.02em; margin: 0; }
.p-oneliner {
  font-family: var(--display); font-style: italic;
  color: var(--bone); font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  margin: 0.7rem 0 0; max-width: 26ch;
}

.p-section { padding: clamp(2rem, 5vw, 3.5rem) 0; border-top: 1px solid var(--stone); }
.p-section h2 { margin-top: 0; }
.p-lede { max-width: 62ch; color: var(--bone); font-size: clamp(1rem, 1.5vw, 1.1rem); }

/* screenshot frames */
.shots {
  display: flex; gap: 1.25rem; overflow-x: auto;
  padding: 0.25rem 0 0.75rem; scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.shots::-webkit-scrollbar { display: none; }
.shot {
  flex: 0 0 clamp(170px, 22vw, 232px);
  aspect-ratio: 9 / 19;
  border-radius: 30px;
  border: 1px solid var(--stone-2);
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(142,151,163,.1), transparent 55%),
    linear-gradient(165deg, #211e1a, #15130f);
  position: relative; display: grid; place-items: center;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
}
.shot::after {
  content: attr(data-label);
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--clay);
}

/* features grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 1.75rem; }
.feature .num {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em;
  color: var(--slate); display: block; margin-bottom: 0.5rem;
}
.feature h3 { font-family: var(--display); margin: 0 0 0.35rem; font-size: 1.15rem; }
.feature p { color: var(--ash); margin: 0; font-size: 0.95rem; line-height: 1.55; }

/* support + meta */
.support .lead { max-width: 50ch; }
.p-meta {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  font-family: var(--mono); font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.p-meta a { color: var(--ash); }
.p-meta a:hover { color: var(--salt); }

@media (max-width: 760px) { .features { grid-template-columns: 1fr; gap: 1.5rem; } }
@media (max-width: 480px) { .shot { flex-basis: 60vw; } }
