/* ============================================================
   SaClay — Design System (Arah C)
   Layout & instrument feel from A, type & palette from B.
   Single shared stylesheet for all pages.
   ============================================================ */

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  --bg:      #13241B;   /* deep forest — base */
  --bg-2:    #0E1C15;   /* darker well */
  --cream:   #EFE9DA;   /* paper / primary text on dark */
  --lime:    #C8E6A0;   /* brand · positive · CTA */
  --lime-d:  #B3D584;
  --red:     #E14328;   /* alert · loss framing ONLY */
  --ink:     #16271d;   /* text on cream surfaces */

  --mute:    rgba(239,233,218,.55);
  --mute-2:  rgba(239,233,218,.38);
  --line:    rgba(239,233,218,.14);
  --line-2:  rgba(239,233,218,.08);

  --paper-line: rgba(22,39,29,.16);

  --sans: 'Inter', sans-serif;
  --disp: 'Archivo', sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --pad-x: 6vw;
  --maxw: 1280px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 2px; }

/* ── Topbar / nav ──────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  background: rgba(19,36,27,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 12px; letter-spacing: .06em;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--disp); font-weight: 700; font-size: 1.1rem;
  letter-spacing: -.01em; text-decoration: none; color: var(--cream);
}
.brand .crock { width: 19px; height: 19px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--cream); opacity: .55; text-decoration: none; transition: opacity .18s; }
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; color: var(--lime); }
.nav-meta { color: var(--mute); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: 0; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--cream); display: block; transition: .25s; }

/* ── Layout helpers ────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; }
.section { padding: clamp(64px, 11vh, 120px) var(--pad-x); border-bottom: 1px solid var(--line); }
.section--well { background: var(--bg-2); }
.section--paper { background: var(--cream); color: var(--ink); }
.section--accent { background: var(--lime); color: var(--bg-2); }

/* ── Eyebrow + section header ──────────────────────────────── */
.eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: .16em;
  color: var(--lime); display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--lime); }
.section--paper .eyebrow { color: var(--red); }
.section--paper .eyebrow::before { background: var(--red); }

.s-head { max-width: 720px; margin-bottom: clamp(40px, 6vh, 64px); }
.s-num {
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em;
  color: var(--mute-2); display: block; margin-bottom: 18px;
}
.section--paper .s-num { color: rgba(22,39,29,.4); }
h2.s-title {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.05;
  letter-spacing: -.025em;
}
h2.s-title .hl { color: var(--lime); }
.section--paper h2.s-title .hl { color: var(--red); }
.s-sub { margin-top: 18px; font-size: 1.05rem; line-height: 1.6; color: var(--mute); max-width: 56ch; }
.section--paper .s-sub { color: rgba(22,39,29,.7); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  font-family: var(--disp); font-size: .92rem; font-weight: 600;
  text-decoration: none; padding: 13px 24px; border-radius: 3px;
  transition: .18s; display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; border: 1px solid transparent;
}
.btn svg { width: 14px; height: 14px; }
.btn-solid { background: var(--lime); color: var(--bg-2); }
.btn-solid:hover { background: var(--lime-d); transform: translateY(-1px); }
.btn-ghost { color: var(--cream); border-color: var(--line); font-weight: 500; }
.btn-ghost:hover { border-color: var(--cream); }
.section--paper .btn-ghost { color: var(--ink); border-color: var(--paper-line); }
.section--paper .btn-ghost:hover { border-color: var(--ink); }
.btn-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* ── HERO (home) ───────────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1.15fr .85fr;
  min-height: calc(100vh - 60px); border-bottom: 1px solid var(--line);
}
.hero-left {
  padding: 7vh 5vw 6vh var(--pad-x);
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--line);
}
.hero-right { display: flex; align-items: stretch; background: var(--bg-2); }
.hero h1 {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 1.02;
  letter-spacing: -.025em; margin-bottom: 26px; max-width: 14ch;
}
.hero h1 .hl { color: var(--lime); }
.hero .lede { font-size: 1.06rem; line-height: 1.65; color: var(--mute); max-width: 46ch; margin-bottom: 16px; }
.stat-line {
  font-family: var(--mono); font-size: .82rem; color: rgba(239,233,218,.7);
  margin-bottom: 40px; padding-left: 14px; border-left: 2px solid var(--red);
}
.stat-line b { color: var(--red); font-weight: 500; }

/* ── Instrument panel (signature, reusable) ────────────────── */
.panel { flex: 1; display: flex; flex-direction: column; font-family: var(--mono); }
.panel-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 28px; border-bottom: 1px solid var(--line);
  font-size: 11px; letter-spacing: .1em; color: var(--mute);
}
.live { display: flex; align-items: center; gap: 7px; color: var(--lime); }
.live .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 0 rgba(200,230,160,.5); animation: ping 2.4s infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(200,230,160,.45); }
  70% { box-shadow: 0 0 0 9px rgba(200,230,160,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,230,160,0); }
}
.readouts { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.ro { padding: 26px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ro:nth-child(2n) { border-right: none; }
.ro:nth-child(3), .ro:nth-child(4) { border-bottom: none; }
.ro .k { font-size: 10.5px; letter-spacing: .12em; color: var(--mute); margin-bottom: 10px; }
.ro .v { font-family: var(--disp); font-size: 2.2rem; font-weight: 700; letter-spacing: -.02em; line-height: 1; color: var(--cream); }
.ro .v small { font-family: var(--mono); font-size: .78rem; color: var(--mute); font-weight: 400; margin-left: 3px; }
.chart { padding: 22px 28px; border-bottom: 1px solid var(--line); }
.chart .k { font-size: 10.5px; letter-spacing: .12em; color: var(--mute); margin-bottom: 14px; display: flex; justify-content: space-between; }
.chart .k .delta { color: var(--lime); }
svg.spark { width: 100%; height: 54px; display: block; }
.spark path.line { fill: none; stroke: var(--lime); stroke-width: 1.6; }
.spark path.area { fill: url(#sparkgrad); opacity: .22; }
.panel-foot {
  margin-top: auto; padding: 22px 28px; display: flex; align-items: center;
  justify-content: space-between; background: var(--lime); color: var(--bg-2);
}
.panel-foot .label { font-size: 10.5px; letter-spacing: .14em; opacity: .65; }
.panel-foot .cls { font-family: var(--disp); font-size: 1.6rem; font-weight: 700; letter-spacing: -.01em; }
.panel-foot .conf { font-size: 11px; text-align: right; opacity: .8; }

/* ── Big-number statement (problem, on paper) ──────────────── */
.statement { display: grid; grid-template-columns: auto 1fr; gap: clamp(24px,4vw,56px); align-items: center; }
.bignum { font-family: var(--disp); font-weight: 800; font-size: clamp(5rem,15vw,12rem); line-height: .82; letter-spacing: -.04em; color: var(--ink); }
.bignum .pct { color: var(--red); }
.statement .txt { max-width: 42ch; }
.statement .txt p { font-size: 1.15rem; line-height: 1.55; }
.statement .txt p b { font-weight: 600; }
.statement .txt .src { display: block; margin-top: 14px; font-family: var(--mono); font-size: .72rem; color: rgba(22,39,29,.45); letter-spacing: .04em; }

/* problem sub-points as numbered rows */
.facts { margin-top: clamp(40px,6vh,64px); border-top: 1px solid var(--paper-line); }
.fact { display: grid; grid-template-columns: 60px 1fr 1.2fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--paper-line); align-items: baseline; }
.fact .fn { font-family: var(--mono); font-size: 13px; color: var(--red); }
.fact h3 { font-family: var(--disp); font-size: 1.15rem; font-weight: 600; line-height: 1.2; }
.fact p { font-size: .95rem; color: rgba(22,39,29,.7); line-height: 1.55; }

/* ── Process flow (cara kerja teaser) ──────────────────────── */
.flow { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.flow-step { padding: 32px 28px; border-right: 1px solid var(--line); position: relative; }
.flow-step:last-child { border-right: none; }
.flow-step .fn { font-family: var(--mono); font-size: 12px; color: var(--lime); letter-spacing: .1em; }
.flow-step h3 { font-family: var(--disp); font-size: 1.25rem; font-weight: 700; letter-spacing: -.01em; margin: 18px 0 10px; }
.flow-step p { font-size: .9rem; color: var(--mute); line-height: 1.55; }
.flow-step .tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.flow-step .tag { font-family: var(--mono); font-size: 10.5px; color: var(--mute); border: 1px solid var(--line); padding: 3px 8px; border-radius: 40px; }

/* ── Innovation / feature editorial rows ───────────────────── */
.rows { border-top: 1px solid var(--line); }
.erow { display: grid; grid-template-columns: 64px 1fr 1.4fr; gap: clamp(20px,3vw,48px); padding: clamp(28px,4vh,44px) 0; border-bottom: 1px solid var(--line); align-items: start; }
.erow .fn { font-family: var(--mono); font-size: 13px; color: var(--lime); }
.erow h3 { font-family: var(--disp); font-size: clamp(1.3rem,2.4vw,1.9rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; }
.erow .body p { color: var(--mute); font-size: 1rem; line-height: 1.6; }
.erow .body .tag { display: inline-block; margin-top: 14px; font-family: var(--mono); font-size: 11px; color: var(--lime); border: 1px solid var(--line); padding: 4px 10px; border-radius: 40px; }

/* ── Comparison table ──────────────────────────────────────── */
.compare { width: 100%; border-collapse: collapse; font-size: .92rem; }
.compare th, .compare td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.compare thead th { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--mute); font-weight: 400; text-transform: uppercase; }
.compare thead th.us { color: var(--lime); }
.compare tbody th { font-weight: 500; color: var(--cream); font-family: var(--sans); }
.compare td { color: var(--mute); }
.compare td.us { color: var(--cream); background: rgba(200,230,160,.06); font-weight: 500; }
.compare .yes { color: var(--lime); }
.compare .no { color: var(--red); }

/* ── CTA band ──────────────────────────────────────────────── */
.cta-band { text-align: center; }
.cta-band h2 { font-family: var(--disp); font-weight: 700; font-size: clamp(2rem,4.5vw,3.2rem); line-height: 1.05; letter-spacing: -.025em; max-width: 18ch; margin: 0 auto 20px; }
.cta-band p { color: var(--mute-2); max-width: 50ch; margin: 0 auto 32px; }
.section--accent .cta-band p { color: rgba(14,28,21,.7); }
.section--accent .btn-ghost { color: var(--bg-2); border-color: rgba(14,28,21,.3); }
.section--accent .btn-ghost:hover { border-color: var(--bg-2); background: rgba(14,28,21,.06); }

/* ── Inner page hero ───────────────────────────────────────── */
.page-hero { padding: clamp(70px,12vh,140px) var(--pad-x) clamp(50px,8vh,90px); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-family: var(--disp); font-weight: 700; font-size: clamp(2.4rem,5.5vw,4rem); line-height: 1.02; letter-spacing: -.03em; max-width: 16ch; }
.page-hero h1 .hl { color: var(--lime); }
.page-hero .lede { margin-top: 22px; font-size: 1.1rem; color: var(--mute); max-width: 56ch; line-height: 1.6; }

/* ── Prose (cara kerja content) ────────────────────────────── */
.prose { max-width: 64ch; }
.prose h3 { font-family: var(--disp); font-size: 1.5rem; font-weight: 700; letter-spacing: -.02em; margin: 0 0 16px; }
.prose p { color: var(--mute); margin-bottom: 18px; line-height: 1.7; }
.prose p strong { color: var(--cream); font-weight: 600; }
.prose .callout { border-left: 2px solid var(--lime); padding: 4px 0 4px 18px; margin: 24px 0; color: var(--cream); font-size: 1.05rem; }
.diagram { font-family: var(--mono); font-size: .8rem; line-height: 1.7; color: var(--lime); background: var(--bg-2); border: 1px solid var(--line); border-radius: 4px; padding: 24px; overflow-x: auto; white-space: pre; margin: 8px 0 24px; }

/* generic data table */
.dtable { width: 100%; border-collapse: collapse; font-size: .92rem; margin: 8px 0 24px; }
.dtable th, .dtable td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.dtable thead th { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--mute); font-weight: 400; text-transform: uppercase; }
.dtable td { color: var(--mute); }
.dtable td:first-child { color: var(--cream); font-weight: 500; }
.dtable .mono { font-family: var(--mono); color: var(--lime); }

/* two-column content layout */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px,5vw,72px); align-items: start; }
.split--rev { grid-template-columns: 1.1fr .9fr; }

/* ── FAQ accordion ─────────────────────────────────────────── */
.faq { max-width: 800px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; cursor: pointer; color: var(--cream); text-align: left; font-family: var(--disp); font-size: 1.1rem; font-weight: 600; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-q .ico { flex-shrink: 0; width: 18px; height: 18px; position: relative; transition: transform .3s; }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: var(--lime); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-q .ico::before { width: 14px; height: 2px; }
.faq-q .ico::after { width: 2px; height: 14px; transition: transform .3s; }
.faq-q[aria-expanded="true"] .ico::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { color: var(--mute); line-height: 1.7; padding-bottom: 24px; max-width: 70ch; }

/* ── Team (hierarchical, photo-ready) ──────────────────────── */
/* .photo holds initials as fallback; drop an <img> in and it covers them. */
.photo {
  position: relative; overflow: hidden; background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--disp); font-weight: 700; color: var(--lime);
  letter-spacing: -.01em; flex-shrink: 0;
}
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Dosen pembimbing — top of hierarchy */
.supervisor { background: var(--bg-2); border: 1px solid var(--line); border-radius: 4px; padding: 24px 28px; display: flex; gap: 22px; align-items: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.supervisor .photo { width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--line); font-size: 1.25rem; }
.supervisor .role { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; color: var(--lime); text-transform: uppercase; }
.supervisor h3 { font-family: var(--disp); font-size: 1.15rem; font-weight: 600; margin: 6px 0 4px; }
.supervisor p { color: var(--mute); font-size: .9rem; }

/* Ketua — same card as anggota, centered above grid */
.team-lead { max-width: 340px; margin: 0 auto 32px; background: var(--bg); display: flex; flex-direction: column; border-radius: 4px; overflow: hidden; border: 1px solid var(--lime); }
.team-lead .photo { width: 100%; aspect-ratio: 4 / 5; font-size: 1.7rem; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: center; background: var(--bg-2); color: var(--lime); font-family: var(--disp); font-weight: 700; position: relative; overflow: hidden; }
.team-lead .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.team-lead .info { padding: 20px 22px; text-align: center; }
.team-lead .role { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; color: var(--lime); text-transform: uppercase; }
.team-lead h3 { font-family: var(--disp); font-size: 1.15rem; font-weight: 600; margin: 9px 0 6px; line-height: 1.2; }
.team-lead p { font-size: .84rem; color: var(--mute); line-height: 1.5; }

/* Anggota — equal grid */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.member { background: var(--bg); display: flex; flex-direction: column; }
.member .photo { width: 100%; aspect-ratio: 4 / 5; font-size: 1.7rem; border-bottom: 1px solid var(--line); }
.member .info { padding: 20px 22px; }
.member .role { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; color: var(--lime); text-transform: uppercase; }
.member h3 { font-family: var(--disp); font-size: 1.02rem; font-weight: 600; margin: 9px 0 6px; line-height: 1.2; }
.member p { font-size: .84rem; color: var(--mute); line-height: 1.5; }

/* ── Timeline (progress) ───────────────────────────────────── */
.timeline { max-width: 760px; }
.tl-item { display: grid; grid-template-columns: 40px 1fr; gap: 20px; padding-bottom: 32px; position: relative; }
.tl-item:not(:last-child)::before { content: ""; position: absolute; left: 19px; top: 36px; bottom: -4px; width: 2px; background: var(--line); }
.tl-mark { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; font-family: var(--mono); font-size: 12px; }
.tl-mark.done { background: var(--lime); color: var(--bg-2); }
.tl-mark.active { background: var(--bg-2); border: 2px solid var(--lime); color: var(--lime); }
.tl-mark.todo { background: var(--bg-2); border: 1px solid var(--line); color: var(--mute-2); }
.tl-body h3 { font-family: var(--disp); font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.tl-item .tl-mark.todo + .tl-body h3 { color: var(--mute); }
.tl-body p { font-size: .92rem; color: var(--mute); line-height: 1.55; }
.tl-status { display: inline-block; margin-top: 8px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; padding: 3px 9px; border-radius: 40px; }
.tl-status.done { color: var(--lime); border: 1px solid rgba(200,230,160,.3); }
.tl-status.active { color: var(--red); border: 1px solid rgba(225,67,40,.4); }

/* ── Price page ────────────────────────────────────────────── */
.price-hero { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,48px); align-items: stretch; }
.price-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 4px; padding: 32px; }
.price-card .k { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--mute); }
.price-now { font-family: var(--disp); font-weight: 800; font-size: clamp(2.8rem,6vw,4.5rem); letter-spacing: -.03em; line-height: 1; margin: 14px 0; }
.price-now small { font-family: var(--mono); font-size: 1rem; color: var(--mute); font-weight: 400; }
.price-delta { font-family: var(--mono); font-size: .9rem; }
.price-delta.up { color: var(--red); }
.price-delta.down { color: var(--lime); }
.advice { display: flex; flex-direction: column; justify-content: center; }
.advice .tagrec { font-family: var(--disp); font-size: 1.8rem; font-weight: 700; letter-spacing: -.01em; margin: 10px 0 12px; }
.advice .tagrec.hold { color: var(--lime); }
.advice .tagrec.sell { color: var(--red); }
.stub-note { font-family: var(--mono); font-size: 11px; letter-spacing: .05em; color: var(--mute-2); border: 1px dashed var(--line); padding: 10px 14px; border-radius: 4px; display: inline-block; }

/* ── Footer ────────────────────────────────────────────────── */
footer.site {
  background: var(--bg-2); padding: clamp(48px,8vh,72px) var(--pad-x);
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  border-top: 1px solid var(--line);
}
footer.site .f-brand { font-family: var(--disp); font-weight: 700; font-size: 1.3rem; display: flex; align-items: center; gap: 10px; }
footer.site .f-brand + p { color: var(--mute); font-size: .9rem; margin-top: 14px; max-width: 34ch; }
footer.site .f-meta { margin-top: 18px; font-family: var(--mono); font-size: 11px; color: var(--mute-2); letter-spacing: .05em; }
footer.site h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: var(--mute); text-transform: uppercase; margin-bottom: 16px; font-weight: 400; }
footer.site ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer.site ul a { color: var(--cream); opacity: .65; text-decoration: none; font-size: .9rem; transition: opacity .18s; }
footer.site ul a:hover { opacity: 1; }

/* ── Scroll reveal ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--line); padding: 7vh var(--pad-x) 5vh; }
  .flow { grid-template-columns: 1fr 1fr; }
  .flow-step:nth-child(2) { border-right: none; }
  .flow-step:nth-child(1), .flow-step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .split, .split--rev, .price-hero { grid-template-columns: 1fr; }
  .statement { grid-template-columns: 1fr; }
  footer.site { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .nav-links {
    display: none; position: absolute; top: 59px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--bg-2);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0 var(--pad-x); }
  .nav-links a { display: block; padding: 16px 0; border-bottom: 1px solid var(--line-2); opacity: .85; }
  .nav-meta { display: none; }
  .hamburger { display: flex; }
  .flow { grid-template-columns: 1fr; }
  .flow-step { border-right: none !important; border-bottom: 1px solid var(--line); }
  .flow-step:last-child { border-bottom: none; }
  .fact { grid-template-columns: 1fr; gap: 8px; }
  .erow { grid-template-columns: 1fr; gap: 12px; }
  .team-grid { grid-template-columns: 1fr; }
  .member .photo { aspect-ratio: 3 / 2; }
  .readouts .ro { padding: 20px; }
  footer.site { grid-template-columns: 1fr; }
  .compare { font-size: .82rem; }
  .compare th, .compare td { padding: 12px 10px; }
}

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
