/* ============================================================
   Radical Labs Inc. — styles.css
   Warm near-black canvas, off-white type, restrained orange.
   Single family: Archivo (variable width + weight).
   ============================================================ */

:root {
  --bg: oklch(13% 0.006 55);
  --bg-raised: oklch(17% 0.008 55);
  --text: oklch(96% 0.005 80);
  --text-dim: oklch(72% 0.012 75);
  --accent: oklch(82% 0.09 55);
  --accent-deep: oklch(52% 0.115 48);
  --apricot: oklch(86% 0.065 58);
  --paper: oklch(95% 0.01 80);
  --ink: oklch(21% 0.012 55);
  --ink-dim: oklch(40% 0.02 55);
  --line: color-mix(in oklab, var(--text) 14%, transparent);
  --line-ink: color-mix(in oklab, var(--ink) 16%, transparent);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section: clamp(5rem, 14vh, 9.5rem);
}

@supports not (color: oklch(50% 0 0)) {
  :root {
    --bg: #141110;
    --bg-raised: #1d1917;
    --text: #f7f4f0;
    --text-dim: #b0a89f;
    --accent: #f2bd97;
    --accent-deep: #9c5330;
    --apricot: #f3ccb0;
    --paper: #f4f0ea;
    --ink: #241f1c;
    --ink-dim: #5c5148;
    --line-ink: rgba(36, 31, 28, 0.16);
  }
}

/* ---------- Reset & base ---------- */

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3, p { margin: 0; }

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.wrap {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Type ---------- */

.display {
  font-size: clamp(2.65rem, 8.4vw, 6.9rem);
  font-weight: 760;
  font-stretch: 118%;
  line-height: 0.97;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  text-wrap: balance;
}

.headline {
  font-size: clamp(1.85rem, 4.1vw, 3.3rem);
  font-weight: 700;
  font-stretch: 106%;
  line-height: 1.12;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.lede {
  font-size: clamp(1.125rem, 1.6vw, 1.3125rem);
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 34em;
}

.body-copy {
  color: var(--text-dim);
  max-width: 62ch;
}

.body-copy strong { color: var(--text); font-weight: 600; }

.diamond {
  display: inline-block;
  width: 0.13em;
  height: 0.13em;
  margin-left: 0.12em;
  background: var(--accent);
  transform: rotate(45deg);
  vertical-align: 0.04em;
}

.accent-dot { color: var(--accent); }

.stack { display: grid; gap: 1.25rem; justify-items: start; }

.arrow { flex: none; }
.btn .arrow,
.section-link .arrow { width: 1.05em; height: 1.05em; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.05rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.0625rem;
  font-weight: 700;
  font-stretch: 108%;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-mark { width: 34px; height: 34px; color: var(--text); flex: none; }

.brand .inc { color: var(--text-dim); font-weight: 500; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.site-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dim);
  padding-block: 0.35rem;
  border-bottom: 2px solid transparent;
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.site-nav a:hover { color: var(--text); }

.site-nav a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.site-nav .nav-cta {
  color: var(--text);
  border: 1px solid color-mix(in oklab, var(--text) 32%, transparent);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  transition: border-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  border-color: var(--accent);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  appearance: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  padding: 0.5rem 0.65rem;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem var(--gutter) 1.5rem;
    display: none;
  }

  .site-header.nav-open .site-nav { display: flex; }
  .site-header.nav-open .icon-bars { display: none; }
  .site-header.nav-open .icon-close { display: block; }

  .site-nav a {
    font-size: 1.125rem;
    padding-block: 0.9rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a[aria-current="page"] { border-bottom-color: var(--line); color: var(--accent); }

  .site-nav .nav-cta {
    border: none;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 0.9rem 0;
    margin-top: 0.25rem;
  }
}

/* ---------- Hero ---------- */

.hero {
  padding-block: clamp(5rem, 16vh, 10.5rem) clamp(4rem, 10vh, 7rem);
}

.hero .kicker { margin-bottom: 1.75rem; }

.hero-foot {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

@media (max-width: 860px) {
  .hero-foot { grid-template-columns: 1fr; align-items: start; }
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
}

@media (max-width: 860px) {
  .actions { justify-content: flex-start; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  transition: background-color 0.25s var(--ease-out), color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}

.btn-solid {
  background: var(--text);
  color: var(--bg);
}
.btn-solid:hover { background: var(--accent); color: var(--bg); }

.btn-line {
  border: 1px solid color-mix(in oklab, var(--text) 32%, transparent);
  color: var(--text);
}
.btn-line:hover { border-color: var(--text); }

.btn .arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Entrance animation ---------- */

.line { display: block; overflow: hidden; padding-bottom: 0.04em; }

.line-inner {
  display: inline-block;
  transform: translateY(118%);
  will-change: transform;
}

.is-ready .line-inner {
  transform: translateY(0);
  transition: transform 1s var(--ease-out);
}

.line:nth-child(2) .line-inner { transition-delay: 0.1s; }
.line:nth-child(3) .line-inner { transition-delay: 0.2s; }

.hero-fade {
  opacity: 0;
  transform: translateY(18px);
}

.is-ready .hero-fade {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--ease-out) 0.55s, transform 0.9s var(--ease-out) 0.55s;
}

.no-js .line-inner,
.no-js .hero-fade { transform: none; opacity: 1; }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal.in-view { opacity: 1; transform: none; }

.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .line-inner, .hero-fade, .reveal {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .btn .arrow, .cta-link .arrow { transition: none !important; }
}

/* ---------- Sections ---------- */

.section { padding-block: var(--section); }

.section + .section { padding-top: 0; }

.section-head { margin-bottom: clamp(2.5rem, 6vh, 4.5rem); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.split .col-copy { display: grid; gap: 1.25rem; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
}

/* Numbered trio (home practices, engagement steps, contact steps) */

.trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
}

@media (max-width: 760px) {
  .trio { grid-template-columns: 1fr; }
}

.trio-item {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}

.num {
  font-size: 0.875rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.trio-item h3 {
  font-size: 1.375rem;
  font-weight: 700;
  font-stretch: 106%;
  margin: 0.65rem 0 0.6rem;
}

.trio-item p { color: var(--text-dim); font-size: 1rem; }

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: clamp(2rem, 5vh, 3rem);
  font-weight: 600;
  color: var(--text);
}
.section-link .arrow { color: var(--accent); transition: transform 0.3s var(--ease-out); }
.section-link:hover .arrow { transform: translateX(5px); }

/* Numbered full-width rows (services, values) */

.row-list { border-bottom: 1px solid var(--line); }

.row-item {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
  padding-block: clamp(1.9rem, 4.5vw, 3rem);
}

.row-item h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  font-stretch: 108%;
  line-height: 1.2;
}

.row-item p { color: var(--text-dim); }

@media (max-width: 760px) {
  .row-item { grid-template-columns: 1fr; gap: 0.6rem; }
}

/* Logo art panel (home) */

.logo-panel {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}

@media (max-width: 860px) {
  .logo-panel { grid-template-columns: 1fr; }
  .logo-art { max-width: 320px; }
}

.logo-art { width: min(30rem, 100%); margin-inline: auto; }

/* ---------- CTA band (apricot drench) ---------- */

.cta-band {
  background: var(--apricot);
  color: var(--ink);
  padding-block: clamp(4.5rem, 12vh, 8rem);
}

.cta-band .kicker { margin-bottom: 1.5rem; color: var(--ink-dim); }

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: clamp(2.2rem, 6.5vw, 5.2rem);
  font-weight: 760;
  font-stretch: 118%;
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease-out);
}

.cta-link .arrow {
  width: 0.72em;
  height: 0.72em;
  transition: transform 0.35s var(--ease-out);
  flex: none;
}

.cta-link:hover { color: var(--accent-deep); }
.cta-link:hover .arrow { transform: translateX(0.18em); }

.cta-mail {
  margin-top: 1.75rem;
  color: var(--ink-dim);
}

.cta-mail a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 40%, transparent);
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.cta-mail a:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }

/* ---------- Contact page ---------- */

.email-block {
  background: var(--paper);
  color: var(--ink);
  padding-block: clamp(3.5rem, 9vh, 6rem);
}

.email-giant {
  display: inline-block;
  font-size: clamp(1.5rem, 5.6vw, 4.1rem);
  font-weight: 720;
  font-stretch: 105%;
  letter-spacing: -0.01em;
  line-height: 1.1;
  word-break: break-word;
  border-bottom: 3px solid color-mix(in oklab, var(--ink) 35%, transparent);
  padding-bottom: 0.12em;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.email-giant:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }

.email-block .kicker { margin-bottom: 1.25rem; color: var(--ink-dim); }

.aside-note { margin-top: 2.25rem; color: var(--ink-dim); max-width: 52ch; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 8vh, 4.5rem) 2rem;
  font-size: 0.9375rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand { display: grid; gap: 1rem; justify-items: start; }
.footer-brand .brand-mark { width: 44px; height: 44px; }
.footer-brand .slogan { color: var(--text-dim); }

.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }

.footer-col a { color: var(--text-dim); transition: color 0.25s var(--ease-out); }
.footer-col a:hover { color: var(--text); }

.footer-col .mail { color: var(--text); font-weight: 600; }
.footer-col .mail:hover { color: var(--accent); }

.footer-legal {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--text-dim);
  font-size: 0.875rem;
}

/* ============================================================
   Surface variety: paper sections, ticker, mosaic, rail,
   ghost numbers, hero particle field.
   ============================================================ */

/* ---------- Paper sections ---------- */

.section.surface-paper {
  background: var(--paper);
  color: var(--ink);
  padding-block: clamp(4.5rem, 12vh, 8rem);
}

.section.surface-paper + .section { padding-top: var(--section); }

.surface-paper .kicker { color: var(--ink-dim); }
.surface-paper .body-copy,
.surface-paper .lede,
.surface-paper .trio-item p { color: var(--ink-dim); }
.surface-paper .body-copy strong { color: var(--ink); }
.surface-paper .num { color: var(--accent-deep); }
.surface-paper .trio-item { border-top-color: var(--line-ink); }
.surface-paper .section-link { color: var(--ink); }
.surface-paper .section-link .arrow { color: var(--accent-deep); }
.surface-paper :focus-visible { outline-color: var(--accent-deep); }
.surface-paper ::selection { background: var(--accent-deep); color: var(--paper); }

.section-intro { margin-top: -1.5rem; margin-bottom: clamp(2.5rem, 6vh, 4rem); }

/* ---------- Capability ticker ---------- */

.ticker {
  border-block: 1px solid var(--line);
  padding-block: 1.15rem;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 38s linear infinite;
}

.ticker-item {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 2.75rem;
  padding-right: 2.75rem;
  font-size: 0.9375rem;
  font-weight: 650;
  font-stretch: 112%;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.ticker-item::after {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: rotate(45deg);
  flex: none;
}

@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

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

/* ---------- Mosaic (home) ---------- */

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  overflow: hidden;
}

.tile-quote {
  grid-column: span 6;
  grid-row: span 2;
  background: var(--apricot);
  color: var(--ink);
  min-height: 30rem;
}

.tile-rule {
  grid-column: span 6;
  background: var(--paper);
  color: var(--ink);
  min-height: 15rem;
}

.tile-art {
  grid-column: span 4;
  border: 1px solid var(--line);
  min-height: 17rem;
}

.tile-go {
  grid-column: span 2;
  border: 1px solid var(--line);
  min-height: 17rem;
  transition: border-color 0.3s var(--ease-out);
}

@media (max-width: 900px) {
  .tile-quote, .tile-rule, .tile-art, .tile-go { grid-column: span 12; grid-row: auto; }
  .tile-quote { min-height: 22rem; }
  .tile-go { min-height: 12rem; }
}

.tile .kicker { position: relative; z-index: 1; }
.tile-quote .kicker, .tile-rule .kicker { color: var(--ink-dim); }

.tile-quote blockquote {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 700;
  font-stretch: 106%;
  line-height: 1.15;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.tile-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  font-stretch: 108%;
  line-height: 1.15;
  text-wrap: balance;
}

.tile-rule p:not(.kicker) { color: var(--ink-dim); max-width: 44ch; }

.tile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.tile-link .arrow { width: 1.05em; height: 1.05em; transition: transform 0.3s var(--ease-out); }
.tile:hover .tile-link .arrow { transform: translateX(5px); }

.tile-quote .tile-link:hover, .tile-rule .tile-link:hover { color: var(--accent-deep); }
.tile-art .tile-link:hover, .tile-go .tile-link:hover { color: var(--accent); }

.tile-art-img {
  position: absolute;
  width: 175%;
  max-width: none;
  top: -55%;
  right: -45%;
  opacity: 0.16;
  pointer-events: none;
}

.tile-art .tile-title, .tile-art .tile-link { position: relative; z-index: 1; }

.tile-go { justify-content: flex-end; }
.tile-go:hover { border-color: var(--accent); }
.tile-go .big-arrow { width: 2.75rem; height: 2.75rem; color: var(--accent); }

/* Whole-tile click target */
.tile-link.stretch::after { content: ""; position: absolute; inset: 0; z-index: 2; }

/* ---------- Service rail (what we do) ---------- */

.rail-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: clamp(2rem, 5vh, 3rem);
}

.rail-nav { display: flex; gap: 0.6rem; }

.rail-btn {
  appearance: none;
  background: none;
  border: 1px solid color-mix(in oklab, var(--text) 30%, transparent);
  border-radius: 999px;
  color: var(--text);
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.rail-btn:hover { border-color: var(--accent); color: var(--accent); }
.rail-btn svg { width: 1.15rem; height: 1.15rem; }

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(23rem, 82vw);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.rail::-webkit-scrollbar { display: none; }

.rail-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.5rem;
  min-height: 22rem;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
}

.rail-card h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 700;
  font-stretch: 108%;
  line-height: 1.2;
  margin-top: 0.75rem;
}

.rail-card p { color: var(--text-dim); }

.rail-card.card-paper {
  background: var(--paper);
  color: var(--ink);
  border-color: transparent;
}

.rail-card.card-apricot {
  background: var(--apricot);
  color: var(--ink);
  border-color: transparent;
}

.rail-card.card-white {
  background: #ffffff;
  color: var(--ink);
  border-color: transparent;
}

.rail-card.card-paper p,
.rail-card.card-apricot p,
.rail-card.card-white p { color: var(--ink-dim); }

.rail-card.card-paper .num,
.rail-card.card-apricot .num,
.rail-card.card-white .num { color: var(--accent-deep); }

/* ---------- Ghost numbers (values) ---------- */

.row-ghost .row-item {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
}

.row-ghost .row-item::before {
  content: attr(data-n);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 800;
  font-stretch: 125%;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in oklab, var(--text) 15%, transparent);
  pointer-events: none;
}

@supports not (-webkit-text-stroke: 1px black) {
  .row-ghost .row-item::before { color: color-mix(in oklab, var(--text) 6%, transparent); }
}

.row-ghost .row-item h3, .row-ghost .row-item p { position: relative; }

@media (max-width: 760px) {
  .row-ghost .row-item { grid-template-columns: 1fr; }
  .row-ghost .row-item::before {
    -webkit-text-stroke-color: color-mix(in oklab, var(--text) 9%, transparent);
  }
}

/* ---------- Hero particle field (home) ---------- */

.hero-home { position: relative; overflow: hidden; }

.hero-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-home .wrap { position: relative; }
