/* =========================================================================
   Pall — Factory-efficiency AI · marketing site
   Minimal Apple system: white sheet · black ink & icons · Apple blue accent.
   No cards, no boxes, no shadows — everything lays flat on the sheet.
   New York serif headlines · SF Pro body · 8pt grid.
   ========================================================================= */

/* ----------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
img, svg, picture { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::selection { background: #d8e7ff; color: var(--ink); }

/* ------------------------------------------------------------- Tokens */
:root {
  --font-serif: ui-serif, "New York", "Iowan Old Style", "Apple Garamond", Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "SF Pro Icons", system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "SFMono-Regular", Menlo, Monaco, "Cascadia Mono", monospace;

  /* Only three colours: white · black · Apple blue (+ greys of the black/white family) */
  --paper:  #ffffff;        /* the sheet */
  --ink:    #1d1d1f;        /* Apple near-black — text & icons */
  --ink-2:  #1d1d1f;
  --muted:  #6e6e73;        /* Apple secondary grey */
  --faint:  #86868b;        /* Apple tertiary grey */
  --line:   #d2d2d7;        /* Apple hairline */
  --line-2: #e8e8ed;
  --accent: #0071e3;        /* Apple blue — buttons & links only */
  --accent-hover: #0077ed;
  --accent-press: #006edb;
  --on-accent: #ffffff;

  --r-pill: 980px;

  /* Spacing — 8pt grid */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  --maxw: 1080px;
  --maxw-narrow: 720px;
  --gutter: clamp(22px, 5vw, 48px);
  --nav-h: 56px;

  --t-display: clamp(2.7rem, 1.3rem + 5.9vw, 5rem);
  --t-h1:      clamp(2rem, 1.35rem + 2.9vw, 3.1rem);
  --t-h2:      clamp(1.6rem, 1.2rem + 1.8vw, 2.3rem);
  --t-h3:      clamp(1.18rem, 1.05rem + 0.6vw, 1.4rem);
  --t-lede:    clamp(1.12rem, 1.0rem + 0.55vw, 1.35rem);
  --t-body:    1.0625rem;
  --t-small:   0.9375rem;
  --t-xs:      0.8125rem;
  color-scheme: light;
}

/* --------------------------------------------------------------- Base */
body {
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: -0.003em;
  overflow-x: hidden;
}
.skip { position: absolute; left: 50%; top: -60px; transform: translateX(-50%); background: var(--ink); color: #fff; padding: 10px 18px; border-radius: var(--r-pill); z-index: 200; transition: top .2s ease; font-size: var(--t-small); font-weight: 600; }
.skip:focus { top: 12px; }

/* Layout */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: var(--maxw-narrow); }
section { position: relative; }
.section-pad { padding-block: clamp(60px, 8vw, 120px); }

/* Type roles */
.display { font-family: var(--font-serif); font-weight: 600; font-size: var(--t-display); line-height: 1.03; letter-spacing: -0.022em; color: var(--ink); }
.h1 { font-family: var(--font-serif); font-weight: 600; font-size: var(--t-h1); line-height: 1.07; letter-spacing: -0.02em; color: var(--ink); }
.h2 { font-family: var(--font-serif); font-weight: 600; font-size: var(--t-h2); line-height: 1.1; letter-spacing: -0.018em; color: var(--ink); }
.h3 { font-family: var(--font-sans); font-weight: 640; font-size: var(--t-h3); line-height: 1.25; letter-spacing: -0.012em; color: var(--ink); }
.lede { font-size: var(--t-lede); line-height: 1.5; color: var(--muted); letter-spacing: -0.01em; }
.eyebrow { display: inline-flex; align-items: center; gap: var(--s-2); font-size: var(--t-xs); font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.eyebrow::before { content: ""; width: 16px; height: 1.5px; background: currentColor; border-radius: 2px; opacity: .55; }
.muted { color: var(--muted); }
strong, b { font-weight: 640; color: var(--ink); }

/* --------------------------------------------------------- Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2); font-size: var(--t-small); font-weight: 500; letter-spacing: -0.006em; padding: 11px 22px; border-radius: var(--r-pill); border: 0; background: var(--accent); color: var(--on-accent); cursor: pointer; transition: background .18s ease, opacity .18s ease, transform .12s ease; white-space: nowrap; }
.btn:hover { background: var(--accent-hover); }
.btn:active { background: var(--accent-press); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--lg { padding: 13px 26px; font-size: var(--t-body); }
.btn svg { width: 16px; height: 16px; flex: none; }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }
/* secondary = flat Apple text link, no box */
.btn--ghost { background: transparent; color: var(--accent); padding: 11px 6px; border-radius: 0; }
.btn--ghost:hover { background: transparent; color: var(--accent-hover); text-decoration: none; }
.btn--ghost::after { content: "›"; margin-left: 4px; font-weight: 400; transition: transform .2s ease; }
.btn--ghost:hover::after { transform: translateX(3px); }
.btn--lg.btn--ghost { padding: 13px 6px; }

/* --------------------------------------------------------- Pill -> plain label */
.pill { display: inline-flex; align-items: center; gap: var(--s-2); font-size: var(--t-xs); font-weight: 600; color: var(--muted); }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.pill .dot.live { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{ opacity: 1; } 50%{ opacity: .35; } }

/* ------------------------------------------------------------ Navbar */
.nav { position: sticky; top: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; background: rgba(255,255,255,.8); -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid transparent; transition: background-color .45s ease, -webkit-backdrop-filter .45s ease, backdrop-filter .45s ease, border-color .3s ease, box-shadow .4s ease; }
.nav.scrolled { border-bottom-color: var(--line); }
/* Transparent nav while it lays over the hero film; fades to solid past it */
.nav--ghost { background: rgba(255,255,255,0); -webkit-backdrop-filter: none; backdrop-filter: none; border-bottom-color: transparent; box-shadow: none; }
.nav--ghost .nav__links a { color: var(--ink); }
.nav__inner { display: flex; align-items: center; gap: var(--s-5); width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.brand { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); }
.brand__mark { width: auto; height: 26px; flex: none; object-fit: contain; }
.brand__wm { letter-spacing: .14em; font-weight: 700; font-size: 1.02rem; }
.nav__links { display: flex; align-items: center; gap: 2px; margin-left: var(--s-4); }
.nav__links a { font-size: var(--t-small); font-weight: 500; color: var(--muted); padding: 8px 12px; transition: color .15s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { margin-left: auto; display: flex; align-items: center; gap: var(--s-4); }
.icon-btn { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: var(--r-pill); border: 0; background: transparent; cursor: pointer; color: var(--ink); }
.icon-btn svg { width: 20px; height: 20px; }
.nav__burger { display: none; }
@media (max-width: 860px) { .nav__links { display: none; } .nav__cta .btn--ghost { display: none; } .nav__burger { display: inline-grid; } }

/* Mobile menu — flat */
.mmenu { position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99; background: var(--paper); border-bottom: 1px solid var(--line); padding: var(--s-4) var(--gutter) var(--s-6); display: grid; gap: 2px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.mmenu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mmenu a { font-size: 1.05rem; font-weight: 540; color: var(--ink); padding: 14px 4px; border-bottom: 1px solid var(--line-2); }
.mmenu .btn { margin-top: var(--s-4); }

/* ------------------------------------------------------------ Hero */
.hero { position: relative; padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(32px, 5vw, 64px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.hero__title { margin-top: var(--s-5); }
.hero__title .ink-accent { position: relative; white-space: nowrap; }
.hero__lede { margin-top: var(--s-5); max-width: 34ch; }
.hero__triad { display: flex; flex-wrap: wrap; gap: var(--s-5); margin-top: var(--s-6); list-style: none; }
.hero__triad li { display: inline-flex; align-items: center; gap: 8px; font-size: var(--t-small); font-weight: 560; color: var(--ink); }
.hero__triad svg { width: 18px; height: 18px; color: var(--ink); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-4); margin-top: var(--s-7); }
.hero__note { margin-top: var(--s-5); font-size: var(--t-xs); color: var(--faint); display: flex; align-items: center; gap: var(--s-2); }
.hero__note svg { width: 13px; height: 13px; color: var(--ink); }
.hero__art { position: relative; }
.hero__art img { width: 100%; max-width: 380px; margin-inline: auto; }
@media (max-width: 880px){ .hero__grid{ grid-template-columns: 1fr; } .hero__art{ margin-top: var(--s-6); } .hero__lede{ max-width: none; } }

/* ---- Cinematic film hero ---- */
.hero--film { position: relative; display: flex; align-items: center; overflow: hidden;
  margin-top: calc(-1 * var(--nav-h)); padding-top: var(--nav-h);
  min-height: clamp(560px, 100svh, 840px); isolation: isolate;
  background: #efe9dd url(assets/video/pal-film/pal-hero-poster.jpg) center/cover no-repeat; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  filter: blur(1.5px) saturate(1.04); transform: scale(1.06); will-change: transform; }
.hero__scrim { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.78) 48%, rgba(255,255,255,.72) 100%),
    linear-gradient(0deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 32%); }
.hero__inner { position: relative; z-index: 2; width: 100%;
  padding-top: clamp(28px,4vw,52px); padding-bottom: clamp(28px,4vw,52px); }
.hero--film .hero__copy { max-width: 600px; }
.hero--film .eyebrow { margin-top: 0; }
/* Tighter vertical rhythm + capped title so the hero fits one viewport */
.hero--film .hero__title { font-size: clamp(2.3rem, 1.3rem + 4.2vw, 4.2rem); margin-top: var(--s-4); }
.hero--film .hero__lede { margin-top: var(--s-4); }
.hero--film .hero__triad { margin-top: var(--s-5); }
.hero--film .hero__actions { margin-top: var(--s-5); }
.hero--film .hero__note { margin-top: var(--s-4); }
@media (max-width: 880px){
  .hero--film { min-height: clamp(520px, 86vh, 720px); }
  .hero__scrim { background:
    linear-gradient(180deg, rgba(255,255,255,.62) 0%, rgba(255,255,255,.80) 45%, rgba(255,255,255,.92) 100%); }
  .hero--film .hero__copy { max-width: none; }
}
@media (prefers-reduced-motion: reduce){
  .hero__video { display: none; }
}

/* ---- Scroll focus-lock: hero → Problem → How, then free scroll ----
   JS-driven (app.js): one-shot hard locks; CSS only stages the scenes. */
.snap-lock--center {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.snap-lock--start .shead {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* trust strip — flat, hairline rules */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust__row { display: flex; align-items: center; justify-content: center; gap: clamp(14px,4vw,40px); flex-wrap: wrap; padding-block: var(--s-5); }
.trust__row span { font-size: var(--t-xs); letter-spacing: .02em; color: var(--faint); }
.trust__row b { font-family: var(--font-serif); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.trust__sep { width: 1px; height: 14px; background: var(--line); display: inline-block; }

/* ------------------------------------------------------- Stat band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.stat { padding: var(--s-4) 0; }
.stat__v { font-family: var(--font-serif); font-weight: 600; font-size: clamp(2rem, 1.3rem + 2.4vw, 2.9rem); line-height: 1; letter-spacing: -0.02em; color: var(--ink); }
.stat__v .u { font-size: .5em; color: var(--muted); margin-left: 2px; }
.stat__l { margin-top: var(--s-3); font-size: var(--t-small); color: var(--muted); max-width: 24ch; }
.stat + .stat { border-left: 1px solid var(--line); padding-left: var(--s-5); }
@media (max-width: 760px){ .stats{ grid-template-columns: repeat(2,1fr); } .stat:nth-child(odd){ border-left: 0; padding-left: 0; } .stat:nth-child(3),.stat:nth-child(4){ border-top:1px solid var(--line); padding-top: var(--s-5);} }

/* --------------------------------------------------------- Section head */
.shead { max-width: 60ch; }
.shead.center { margin-inline: auto; text-align: center; }
.shead .h2 { margin-top: var(--s-4); }
.shead .lede { margin-top: var(--s-4); }

/* --------------------------------------------------- Feature (pillar) rows */
.pillar { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 88px); align-items: center; }
.pillar + .pillar { margin-top: clamp(56px, 8vw, 112px); }
.pillar.rev .pillar__art { order: -1; }
.pillar__num { font-family: var(--font-mono); font-size: var(--t-xs); color: var(--muted); letter-spacing: .1em; }
.pillar__title { margin-top: var(--s-3); }
.pillar__body { margin-top: var(--s-4); color: var(--muted); max-width: 46ch; }
.pillar__list { margin-top: var(--s-5); display: grid; gap: var(--s-3); }
.pillar__list li { display: flex; gap: var(--s-3); align-items: flex-start; font-size: var(--t-small); color: var(--ink); list-style: none; }
.pillar__list .ck { flex: none; width: 20px; height: 20px; color: var(--ink); display: grid; place-items: center; margin-top: 1px; }
.pillar__list .ck svg { width: 18px; height: 18px; }
.pillar__art { position: relative; }
/* illustrations lay directly on the sheet — no card, no blob */
.ill { position: relative; display: grid; place-items: center; padding: clamp(8px,3vw,28px); }
.ill img { width: 100%; max-width: 360px; }
@media (max-width: 880px){ .pillar{ grid-template-columns: 1fr; gap: var(--s-6); } .pillar.rev .pillar__art{ order: 0; } }

/* ------------------------------------------------------ Feature columns (flat) */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px,4vw,48px) var(--s-7); }
.card { padding: 0; }
.card__ic { color: var(--ink); margin-bottom: var(--s-4); }
.card__ic svg { width: 26px; height: 26px; }
.card h3 { font-size: var(--t-h3); font-weight: 640; letter-spacing: -.01em; color: var(--ink); }
.card p { margin-top: var(--s-3); font-size: var(--t-small); color: var(--muted); max-width: 36ch; }
@media (max-width: 880px){ .cards{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .cards{ grid-template-columns: 1fr; } }

/* Real tracking footage */
.trackgrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,3vw,32px); }
.trackvid { margin: 0; }
.trackvid video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block;
  border-radius: 18px; border: 1px solid var(--line); background: var(--ink); }
.trackvid figcaption { margin-top: var(--s-4); }
.trackvid figcaption h3 { font-size: var(--t-h3); font-weight: 640; letter-spacing: -.01em; color: var(--ink); }
.trackvid figcaption p { margin-top: var(--s-2); font-size: var(--t-small); color: var(--muted); max-width: 40ch; }
@media (max-width: 720px){ .trackgrid{ grid-template-columns: 1fr; } }

/* App screenshot cards — reuse the .fgallery scroller + .fcard__pm plus icon */
.appshots { align-items: flex-start; margin-top: clamp(24px,4vw,40px); }
.appcard { flex: 0 0 auto; width: clamp(258px,74vw,320px); margin: 0; scroll-snap-align: center; }
.appcard__frame { position: relative; width: 100%; aspect-ratio: 3/4.1; border-radius: 24px; border: 1px solid var(--line); background: #f2f3f5; overflow: hidden; }
.appcard__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.appcard__frame--note { background: #eceef1; }
.appcard figcaption { margin: var(--s-4) auto 0; text-align: center; font-size: var(--t-small); color: var(--muted); max-width: 28ch; }

/* ----- Get the app: two half-cards stacked as a 4th column in the gallery ----- */
.appstack { display: flex; flex-direction: column; gap: 20px; }
.appstack > * { border-radius: 24px; }
.ministore { display: flex; flex-direction: row; align-items: center; justify-content: center;
  gap: 14px; text-align: center; aspect-ratio: 3 / 1.95; padding: 18px;
  border: 1px solid var(--line); background: var(--paper);
  transition: box-shadow .2s ease, transform .12s ease; }
.ministore:hover { box-shadow: 0 8px 26px rgba(0,0,0,.08); text-decoration: none; }
.ministore:active { transform: scale(.99); }
.ministore__icon { width: 58px; height: 58px; border-radius: 14px; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.12); }
.ministore__icon img { display: block; width: 100%; height: 100%; object-fit: cover; }
.ministore__name { font-family: var(--font-serif); font-weight: 600; font-size: 1.15rem;
  color: var(--ink); line-height: 1; }
.textcard { display: flex; flex-direction: column; justify-content: center; aspect-ratio: 3 / 1.95;
  padding: 24px; background: var(--ink); color: #fff; overflow: hidden; }
.textcard__kicker { font-size: var(--t-xs); font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: rgba(255,255,255,.55); }
.textcard__big { margin-top: 10px; font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(1.45rem, 1.2rem + .9vw, 1.8rem); line-height: 1.1; letter-spacing: -.012em; }
.textcard__cue { margin-top: 14px; font-size: var(--t-small); font-weight: 540; color: rgba(255,255,255,.8); }
.textcard__cue::after { content: " →"; }

/* App Store badge — rebuilt to spec from site tokens (crisp at any DPI) */
.storebadge { flex: none; display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: 12px; background: var(--ink); color: #fff;
  transition: transform .12s ease, opacity .18s ease; }
.storebadge:hover { opacity: .9; text-decoration: none; }
.storebadge:active { transform: scale(.97); }
.storebadge__apple { width: 22px; height: 26px; flex: none; }
.storebadge__txt { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.storebadge__txt small { font-size: 10px; font-weight: 400; letter-spacing: .01em; }
.storebadge__txt b { font-size: 19px; font-weight: 540; letter-spacing: -.01em; color: #fff; }
.storebadge--sm { padding: 7px 13px; gap: 7px; }
.storebadge--sm .storebadge__apple { width: 18px; height: 21px; }
.storebadge--sm .storebadge__txt small { font-size: 8.5px; }
.storebadge--sm .storebadge__txt b { font-size: 15px; }

/* --------------------------------------------------------- On-prem (flat) */
.band { padding: 0; }
.band__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,5vw,64px); align-items: center; }
.band p { margin-top: var(--s-4); color: var(--muted); max-width: 46ch; }
.band__list { margin-top: var(--s-5); display: grid; gap: var(--s-4); }
.band__list .row { display: flex; gap: var(--s-3); align-items: flex-start; }
.band__list .row svg { flex: none; width: 20px; height: 20px; color: var(--ink); margin-top: 2px; }
.band__list b { color: var(--ink); display: block; font-size: var(--t-small); }
.band__list span { color: var(--muted); font-size: var(--t-small); }
/* terminal log — plain mono on the sheet, a single hairline rule at left */
.band__viz { border-left: 2px solid var(--line); padding-left: var(--s-5); }
.term { font-family: var(--font-mono); font-size: 12.5px; line-height: 1.85; color: var(--ink); }
.term .c { color: var(--faint); } .term .g { color: var(--ink); font-weight: 600; } .term .ok { color: var(--ink); } .term .w { color: var(--muted); }
.term .ln { display: block; white-space: pre-wrap; }
@media (max-width: 880px){ .band__grid{ grid-template-columns: 1fr; } }

/* --------------------------------------------- Çırak→Usta leaderboard (flat) */
.board { width: 100%; max-width: 400px; margin-inline: auto; }
.board__head { display: flex; align-items: center; justify-content: space-between; padding: 0 4px 12px; border-bottom: 1px solid var(--line); }
.board__title { font-weight: 640; color: var(--ink); font-size: var(--t-small); display: inline-flex; align-items: center; gap: 8px; }
.board__title svg { width: 17px; height: 17px; color: var(--ink); }
.board__sub { font-size: var(--t-xs); color: var(--muted); font-weight: 600; }
.board__list { list-style: none; margin: 0; padding: 0; }
.board__row { display: grid; grid-template-columns: 20px 40px 1fr auto; align-items: center; gap: 14px; padding: 12px 4px; border-bottom: 1px solid var(--line-2); }
.board__row--lead b { font-weight: 700; }
.rank { font-family: var(--font-mono); font-size: var(--t-small); color: var(--ink); text-align: center; font-weight: 600; }
.ava { width: 40px; height: 40px; border-radius: 50%; background: #fff; object-fit: cover; object-position: center top; border: 1px solid var(--line); display: block; }
.who { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.who b { font-size: var(--t-small); color: var(--ink); font-weight: 600; }
.role { font-size: 11px; font-weight: 600; letter-spacing: .02em; color: var(--muted); }
.score { text-align: right; line-height: 1.2; }
.score b { font-family: var(--font-mono); font-weight: 600; color: var(--ink); font-size: var(--t-small); }
.score .pairs { display: block; font-size: 11px; color: var(--faint); }
.score .pairs i { font-style: normal; font-weight: 600; color: var(--ink); }
.board__foot { padding: 12px 4px 0; display: flex; align-items: center; gap: 8px; font-size: var(--t-xs); color: var(--muted); }

/* "every worker, their own character" cluster */
.floor-cluster { display: flex; align-items: center; gap: 12px; margin-top: var(--s-5); }
.faces { display: flex; }
.faces img, .faces .more { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); margin-left: -10px; background: #fff; }
.faces img { object-fit: cover; object-position: center top; }
.faces img:first-child { margin-left: 0; }
.faces .more { display: grid; place-items: center; font-size: 11px; font-weight: 700; color: var(--muted); }
.floor-cluster p { font-size: var(--t-small); color: var(--muted); max-width: 22ch; }

/* ------------------------------------------------------------- FAQ */
.faq { display: grid; gap: 0; max-width: var(--maxw-narrow); margin-inline: auto; }
.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); padding: var(--s-5) var(--s-1); font-weight: 560; font-size: 1.06rem; color: var(--ink); letter-spacing: -.01em; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .pm { flex: none; width: 22px; height: 22px; display: grid; place-items: center; transition: transform .25s ease; color: var(--ink); }
.qa[open] summary .pm { transform: rotate(45deg); }
.qa .ans { padding: 0 var(--s-1) var(--s-6); color: var(--muted); font-size: var(--t-small); max-width: 64ch; }

/* ------------------------------------------------------------- CTA (flat) */
.cta { text-align: center; }
.cta__box { padding: 0; }
.cta__inner { max-width: 40ch; margin-inline: auto; }
.cta__art { margin: 0 auto var(--s-5); }
.cta__art img { width: auto; max-width: 120px; }
.cta .lede { margin: var(--s-4) auto 0; }
.cta__actions { display: flex; gap: var(--s-4); justify-content: center; align-items: center; flex-wrap: wrap; margin-top: var(--s-7); }

/* ------------------------------------------------------------ Footer */
.foot { border-top: 1px solid var(--line); margin-top: clamp(40px,6vw,80px); }
.foot__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--s-7); padding-block: clamp(44px,6vw,72px); }
.foot__brand .brand { margin-bottom: var(--s-4); }
.foot__brand p { color: var(--muted); font-size: var(--t-small); max-width: 32ch; }
.foot__col h4 { font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .06em; color: var(--faint); font-weight: 650; margin-bottom: var(--s-4); }
.foot__col a { display: block; padding: 6px 0; font-size: var(--t-small); color: var(--muted); transition: color .15s ease; }
.foot__col a:hover { color: var(--ink); }
.foot__bar { border-top: 1px solid var(--line); padding-block: var(--s-5); display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; }
.foot__bar p, .foot__bar .made { font-size: var(--t-xs); color: var(--faint); }
@media (max-width: 760px){ .foot__grid{ grid-template-columns: 1fr 1fr; } .foot__brand{ grid-column: 1 / -1; } }

/* ----------------------------------------------------- Scroll reveal */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .07s; } .reveal[data-d="2"]{ transition-delay: .14s; } .reveal[data-d="3"]{ transition-delay: .21s; }
@media (prefers-reduced-motion: reduce){ .js .reveal{ opacity:1; transform:none; } .pill .dot.live, .scribble{ animation:none; } }

/* ----------------------------------------------------- Scribble accents (black) */
.ink-accent::after { content: ""; position: absolute; left: -5%; right: -5%; bottom: -.18em; height: .42em; background: url("assets/scribbles/underline-blue.svg") no-repeat center / 100% 100%; pointer-events: none; }
.scribble { position: absolute; pointer-events: none; user-select: none; z-index: 3; }
@keyframes twinkle { 0%,100%{ opacity:.45; transform: scale(.85) rotate(-6deg);} 50%{ opacity:.9; transform: scale(1) rotate(0);} }
.hero__spark { width: 28px; top: 50px; right: 10%; animation: twinkle 3.2s ease-in-out infinite; }
.cta__spark { width: 22px; top: 24px; right: 20%; animation: twinkle 3.8s ease-in-out infinite; }
.stat--hl { position: relative; }
.stat--hl .scribble--circle { width: min(188px, 92%); height: auto; left: -8px; top: -2px; z-index: 0; opacity: .9; }
.stat--hl .stat__v { position: relative; z-index: 1; }
.squig { display: block; margin: var(--s-5) auto 0; width: 90px; height: auto; opacity: .85; }
.cta__actions { position: relative; }
.cta__arrow { width: 82px; left: 50%; margin-left: -224px; top: -2px; transform: rotate(6deg); opacity: .85; }
@media (max-width: 820px){ .hero__spark, .cta__spark, .cta__arrow { display: none; } }

/* ------------------------------------------------ Sub-page components */
.phead { padding-top: clamp(36px,5vw,72px); padding-bottom: clamp(24px,4vw,56px); }
.phead__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px,5vw,64px); align-items: center; }
.phead .display, .phead .h1 { margin-top: var(--s-4); }
.phead .lede { margin-top: var(--s-5); max-width: 38ch; }
.phead__art { position: relative; }
.phead__art img { width: 100%; max-width: 360px; margin-inline: auto; }
@media (max-width: 880px){ .phead__grid{ grid-template-columns: 1fr; } .phead__art{ margin-top: var(--s-6); } }

/* numbered steps (flat) */
.steps { display: grid; gap: clamp(28px,4vw,44px); max-width: var(--maxw-narrow); margin-inline: auto; counter-reset: step; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: var(--s-5); align-items: start; padding-bottom: clamp(28px,4vw,44px); border-bottom: 1px solid var(--line-2); }
.step:last-child { border-bottom: 0; padding-bottom: 0; }
.step__n { font-family: var(--font-serif); font-weight: 600; font-size: clamp(2rem,1.4rem+2vw,2.8rem); line-height: .9; color: var(--ink); letter-spacing: -.02em; }
.step h3 { font-size: var(--t-h3); font-weight: 640; color: var(--ink); letter-spacing: -.012em; }
.step p { margin-top: var(--s-3); color: var(--muted); font-size: var(--t-small); max-width: 52ch; }

/* contact / channel list (flat, hairline rows) */
.clist { display: grid; gap: 0; max-width: var(--maxw-narrow); margin-inline: auto; }
.crow { display: grid; grid-template-columns: 28px 1fr auto; gap: var(--s-4); align-items: center; padding: var(--s-5) var(--s-1); border-top: 1px solid var(--line); }
.clist .crow:last-child { border-bottom: 1px solid var(--line); }
.crow svg { width: 22px; height: 22px; color: var(--ink); }
.crow .ct b { display: block; font-size: var(--t-small); color: var(--ink); font-weight: 600; }
.crow .ct span { font-size: var(--t-xs); color: var(--muted); }
.crow .cv { font-size: var(--t-small); color: var(--accent); font-weight: 500; }

/* hand-drawn doodles scattered in the page margins (decorative) */
.page-doodle { position: absolute; pointer-events: none; user-select: none; z-index: 0; opacity: .9; }
@media (max-width: 1180px){ .page-doodle { display: none; } }

/* prose blocks for about / privacy */
.prose { max-width: 66ch; margin-inline: auto; }
.prose h2 { font-family: var(--font-serif); font-weight: 600; font-size: var(--t-h2); letter-spacing: -.018em; color: var(--ink); margin-top: clamp(36px,5vw,56px); }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-top: var(--s-4); color: var(--muted); }
.prose p strong { color: var(--ink); }
.prose .lead { font-size: var(--t-lede); color: var(--ink); line-height: 1.5; }

/* divider scribble between sections */
.divider { display: grid; place-items: center; padding-block: clamp(28px,4vw,52px); }
.divider img { width: 90px; height: auto; opacity: .8; }

/* ------------------------------------------------ Connected (integrations) */
.conn-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px,3vw,44px) clamp(16px,2vw,32px); }
.conn { display: flex; flex-direction: column; gap: 10px; }
.conn__ic { color: var(--ink); transition: transform .28s cubic-bezier(.2,.7,.2,1); }
.conn__ic svg { width: 34px; height: 34px; }
.conn:hover .conn__ic { transform: translateY(-4px); }
.conn b { font-size: var(--t-small); font-weight: 620; color: var(--ink); }
.conn span { font-size: var(--t-xs); color: var(--muted); }
@media (max-width: 880px){ .conn-grid{ grid-template-columns: repeat(2,1fr);} }

/* connector detail rows (connect.html) */
.conn-list { display: grid; gap: 0; max-width: var(--maxw-narrow); margin-inline: auto; }
.conn-row { display: grid; grid-template-columns: 34px 1fr; gap: var(--s-4); padding: var(--s-5) var(--s-1); border-top: 1px solid var(--line); align-items: start; }
.conn-list .conn-row:last-child { border-bottom: 1px solid var(--line); }
.conn-row svg { width: 26px; height: 26px; color: var(--ink); margin-top: 2px; }
.conn-row b { display: block; font-size: var(--t-body); color: var(--ink); font-weight: 620; }
.conn-row .ol { font-size: var(--t-xs); color: var(--accent); font-weight: 600; }
.conn-row p { margin-top: 5px; font-size: var(--t-small); color: var(--muted); max-width: 54ch; }

/* marquee of connector names — slow, subtle, pauses on hover / reduced-motion */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__row { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee__row span { display: inline-flex; align-items: center; padding: 16px 0; font-family: var(--font-serif); font-size: 1.15rem; color: var(--muted); }
.marquee__row span::after { content: "·"; margin: 0 30px; color: var(--line); }
@keyframes marquee { from{ transform: translateX(0);} to{ transform: translateX(-50%);} }
.marquee:hover .marquee__row { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce){ .marquee__row{ animation: none; } }

/* ------------------------------------------------ Promises (communication) */
.promises { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px,3vw,44px); }
.promise svg { width: 26px; height: 26px; color: var(--ink); }
.promise h3 { margin-top: var(--s-3); font-size: var(--t-h3); font-weight: 640; color: var(--ink); letter-spacing: -.01em; }
.promise p { margin-top: var(--s-2); font-size: var(--t-small); color: var(--muted); max-width: 34ch; }
@media (max-width: 760px){ .promises{ grid-template-columns: 1fr; } }

/* ------------------------------------------------ Contact form (flat) */
.cform { max-width: 560px; margin-inline: auto; display: grid; gap: var(--s-5); }
.field { display: grid; gap: 8px; }
.field label { font-size: var(--t-xs); font-weight: 650; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select { width: 100%; border: 0; border-bottom: 1.5px solid var(--line); background: transparent; padding: 10px 2px; font-size: 1.0625rem; color: var(--ink); transition: border-color .2s ease; border-radius: 0; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--accent); border-bottom-width: 2px; }
.field textarea { resize: vertical; min-height: 124px; line-height: 1.5; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
@media (max-width: 560px){ .field--row{ grid-template-columns: 1fr; } }
.cform .btn { justify-self: start; }
.form-note { font-size: var(--t-xs); color: var(--faint); }
.form-ok { display: none; font-size: var(--t-small); color: var(--good, #1d7a47); }
.cform.sent .form-ok { display: block; }

/* ------------------------------------------------ Animation polish */
.nav__links a { position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 1.5px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .25s cubic-bezier(.2,.7,.2,1); }
.nav__links a:hover::after { transform: scaleX(1); }
.card { transition: transform .28s cubic-bezier(.2,.7,.2,1); }
.card:hover { transform: translateY(-3px); }
.card:hover .ill img { transform: translateY(-2px) rotate(-1deg); }
.card .ill img { transition: transform .3s cubic-bezier(.2,.7,.2,1); }
/* Illustrations have wildly different aspect ratios. Give every capability card the
   same illustration block and sit each drawing on a shared baseline, so headings and
   body copy line up across a row instead of drifting with the artwork. */
.cards .card .ill { height: 124px; place-items: end start; }
.cards .card .ill img { width: auto; height: auto; max-height: 124px; }
.qa summary:hover { color: var(--accent); }
.foot__col a, .crow .cv { transition: color .15s ease, transform .15s ease; }
.js .reveal[data-r="scale"] { transform: translateY(16px) scale(.985); }
.js .reveal[data-d="4"]{ transition-delay: .28s; } .js .reveal[data-d="5"]{ transition-delay: .35s; }
@media (prefers-reduced-motion: reduce){
  .card:hover, .card:hover .ill img, .conn:hover .conn__ic { transform: none; }
}


/* ---- Apple-style horizontal feature gallery (tall rounded cards + "+" ) ---- */
.fgallery { display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-padding-inline:var(--gutter); padding:8px var(--gutter) 26px; width:100vw; margin-left:calc(50% - 50vw); scrollbar-width:none; -webkit-overflow-scrolling:touch; }
.fgallery::-webkit-scrollbar { display:none; }
.fcard { flex:0 0 auto; width:clamp(258px,74vw,346px); aspect-ratio:3/4.1; border-radius:24px; overflow:hidden; position:relative; scroll-snap-align:center; background:#efe9dc; }
.fcard__face { display:block; height:100%; cursor:pointer; list-style:none; position:relative; }
.fcard__face::-webkit-details-marker { display:none; }
.fcard__img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.fcard__face::before { content:""; position:absolute; inset:0 0 45% 0; background:linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,0)); z-index:1; }
.fcard__top { position:absolute; inset:26px 26px auto 26px; z-index:2; }
.fc-eyebrow { display:block; font-size:var(--t-xs); font-weight:650; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); }
.fc-title { display:block; margin-top:6px; font-family:var(--font-serif); font-weight:600; font-size:clamp(1.3rem,1.1rem+1vw,1.7rem); line-height:1.08; color:var(--ink); letter-spacing:-.015em; max-width:12ch; }
.fcard__pm { position:absolute; left:20px; bottom:20px; z-index:3; width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.8); -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px); transition:transform .3s cubic-bezier(.2,.7,.2,1); }
.fcard__pm::before, .fcard__pm::after { content:""; position:absolute; left:50%; top:50%; background:var(--ink); border-radius:2px; }
.fcard__pm::before { width:15px; height:2px; transform:translate(-50%,-50%); }
.fcard__pm::after { width:2px; height:15px; transform:translate(-50%,-50%); }
.fcard[open] .fcard__pm { transform:rotate(45deg); }
.fcard__more { position:absolute; left:0; right:0; bottom:0; z-index:4; background:rgba(255,255,255,.94); -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px); border-top:1px solid var(--line); padding:20px 22px 22px; }
.fcard__more p { font-size:var(--t-small); color:var(--ink); }
@media (prefers-reduced-motion: reduce){ .fcard__pm{ transition:none; } }

a.fcard { display:block; text-decoration:none; transition:transform .25s cubic-bezier(.2,.7,.2,1); }
a.fcard:hover { transform:translateY(-4px); }
a.fcard::before { content:""; position:absolute; inset:0 0 45% 0; background:linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,0)); z-index:1; }
@media (prefers-reduced-motion: reduce){ a.fcard:hover{ transform:none; } }

.fbanner { position:relative; border-radius:28px; overflow:hidden; min-height:clamp(340px,40vw,520px); display:flex; align-items:center; background:#e9e6df; }
.fbanner > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.fbanner::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.72) 34%, rgba(255,255,255,.08) 64%, rgba(255,255,255,0) 100%); z-index:1; }
.fbanner__in { position:relative; z-index:2; padding:clamp(28px,5vw,60px); max-width:60%; }
.fbanner__in .h2 { color:var(--ink); margin-top:var(--s-3); }
@media (max-width:680px){ .fbanner__in{ max-width:90%; } .fbanner::before{ background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.35)); } }

/* ----------------------------------------------------------- Misc */
/* Remove stray decorative scribbles that read as empty/unfinished marks.
   Meaningful graphics stay: illustrations, the "pal/floor" underline,
   the circled headline stat, and the connector marquee. */
.page-doodle, .divider, .squig, .hero__spark, .cta__spark, .cta__arrow { display: none !important; }

/* real app icons in the Connected section */
.conn-grid { grid-template-columns: repeat(3, 1fr); }
.conn__ic img { width: 50px; height: 50px; display: block; border-radius: 12px; }
.conn-row { grid-template-columns: 46px 1fr; }
.conn-row img.appicon { width: 42px; height: 42px; border-radius: 10px; }
@media (max-width: 880px){ .conn-grid{ grid-template-columns: repeat(2,1fr); } }
/* connector tiles/rows are links to their own pages */
a.conn { text-decoration: none; }
a.conn:hover b { color: var(--accent); }
.conn-list a.conn-row { text-decoration: none; transition: background .15s ease; }
.conn-list a.conn-row:hover b { color: var(--accent); }
.conn-list a.conn-row .ol::after { content: " ›"; color: var(--accent); }
.connhero { width: clamp(112px,16vw,156px); height: auto; margin-inline: auto; display: block; }

.art-band { width: 100vw; margin-left: calc(50% - 50vw); border-block: 1px solid var(--line); background: #efe9dc; overflow: hidden; }
.art-band img { width: 100%; height: clamp(220px, 32vw, 440px); object-fit: cover; display: block; }
.art-cap { text-align: center; color: var(--muted); font-family: var(--font-serif); font-size: var(--t-lede); margin-top: var(--s-6); letter-spacing: -.01em; }

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
@media print { .nav, .mmenu, .nav__burger { display: none !important; } .js .reveal { opacity:1 !important; transform:none !important; } }

/* ===================== GO TO YOUR PALL (home band) =====================
   A two-up: pitch copy + a faux chat preview rendered in the app's own look. */
.gopall { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.gopall__copy { min-width: 0; }
@media (max-width: 820px) { .gopall { grid-template-columns: 1fr; } .gopall__art { order: -1; } }

/* Faux app frame */
.gp-app {
  border: 1px solid var(--line); border-radius: 24px; background:
    radial-gradient(120% 80% at 50% -10%, #f7f8fb 0%, #fff 50%) , #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.05);
  overflow: hidden; max-width: 420px; margin-inline: auto;
}
.gp-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 14px 16px; }
.gp-wm { font-weight: 700; letter-spacing: .14em; font-size: .8rem; color: var(--ink); }
.gp-switch { justify-self: center; display: inline-flex; gap: 2px; padding: 3px; border-radius: 980px; background: rgba(120,120,128,.12); font-size: .78rem; font-weight: 600; }
.gp-switch b { background: #fff; color: var(--ink); border-radius: 980px; padding: 4px 12px; box-shadow: 0 1px 2px rgba(0,0,0,.12); }
.gp-switch i { color: var(--faint); padding: 4px 12px; font-style: normal; }
.gp-dot { justify-self: end; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); }
.gp-thread { padding: 8px 16px 16px; display: flex; flex-direction: column; gap: 12px; }
.gp-user { align-self: flex-end; max-width: 80%; background: #f2f3f6; border: .5px solid var(--line); border-radius: 18px; padding: 9px 14px; font-size: .92rem; }
.gp-pall { display: flex; flex-direction: column; gap: 5px; font-size: .92rem; line-height: 1.4; }
.gp-pall strong { font-size: 1rem; }
.gp-pin { background: rgba(0,113,227,.06); border-radius: 10px; padding: 7px 10px; }
.gp-li { color: var(--ink-2); }
.gp-bar { display: flex; align-items: center; gap: 8px; margin: 0 16px 16px; padding: 9px 9px 9px 14px; border: .5px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.05); color: var(--faint); font-size: .92rem; }
.gp-bar span { flex: 1; }
.gp-send { width: 30px; height: 30px; border-radius: 50%; background: var(--accent); flex: none; position: relative; }
.gp-send::after { content: ""; position: absolute; inset: 0; background: no-repeat center/14px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 19V5M5.5 11.5 12 5l6.5 6.5' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

/* ── Goal: every card clickable → its own page ── */
.pillar__more{display:inline-flex;align-items:center;gap:.45em;margin-top:22px;font-weight:700;
  color:var(--accent);text-decoration:none;font-size:1.02rem;transition:gap .2s ease}
.pillar__more svg{width:15px;height:15px}
.pillar__more:hover{gap:.8em}
.appcard--link{text-decoration:none;color:inherit;display:block;cursor:pointer}
.appcard--link .appcard__frame{transition:transform .3s ease,box-shadow .3s ease}
.appcard--link:hover .appcard__frame{transform:translateY(-4px)}

/* ── Card detail pages: bigger, cross-linked ── */
.detail-list{list-style:none;padding:0;margin:0;display:grid;gap:18px;max-width:62ch}
.detail-list li{position:relative;padding-left:34px;font-size:1.14rem;line-height:1.5}
.detail-list li::before{content:"";position:absolute;left:0;top:.62em;width:18px;height:2px;background:var(--accent)}
.rel-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:16px}
.rel-card{display:flex;flex-direction:column;gap:8px;padding:24px;border:1px solid var(--line,rgba(0,0,0,.1));
  border-radius:20px;text-decoration:none;color:inherit;background:var(--card,#fff);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}
.rel-card:hover{transform:translateY(-3px);box-shadow:0 14px 34px rgba(0,0,0,.09);border-color:var(--accent)}
.rel-eyebrow{font-size:.72rem;letter-spacing:.13em;text-transform:uppercase;color:var(--accent);font-weight:700}
.rel-title{font-size:1.16rem;font-weight:650;line-height:1.25}
.rel-card .rel-go{margin-top:8px;color:var(--accent);display:inline-flex}
.rel-card .rel-go svg{width:17px;height:17px}
