/* ============================================================
   Igor Software — calm technical microsite
   Design tokens
   ============================================================ */

:root {
  --bg: #F6F4EE;
  --bg-elevated: #FFFFFF;
  --bg-ink: #0E1726;
  --bg-ink-soft: #131D31;
  --bg-tint: #EFECE2;
  --ink: #0E1726;
  --ink-2: #2B3344;
  --ink-3: #56607A;
  --ink-4: #7B8398;
  --line: #E5E1D4;
  --line-strong: #D4CDB9;
  --line-dark: #1F2A3F;

  --accent: #2A6FDB;
  --accent-ink: #1E5BC0;
  --accent-soft: rgba(42, 111, 219, 0.10);
  --accent-2: #C57B2A;

  --pos: #1F8A5B;
  --neg: #B33A2A;

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --pad-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(40px, 4.5vw, 64px);
  --max: 1240px;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; }

html { overflow-x: clip; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body { font-feature-settings: "ss01", "cv11"; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }
::selection { background: var(--accent); color: #fff; }

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  z-index: 9999;
  font-size: 14px;
}
.skip-link:focus { top: 8px; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  position: relative;
  scroll-margin-top: 80px;
}
.section--tint { background: var(--bg-tint); }
.section--ink {
  background: var(--bg-ink);
  color: #DCE3F0;
  /* Dark section wraps its content slightly tighter so the bottom doesn't read as empty panel. */
  padding-bottom: clamp(36px, 4vw, 56px);
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--ink-3);
}
.section--ink .section-eyebrow { color: #9CADCB; }
.section--ink .section-eyebrow::before { background: #9CADCB; }

.section-title {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 16px;
  text-wrap: balance;
}
.section-lede {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--ink-2);
  max-width: 660px;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.section--ink .section-lede { color: #B5C0D6; }

/* ============================================================ Header */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 238, 0.78);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.hdr.is-scrolled { border-bottom-color: var(--line); background: rgba(246, 244, 238, 0.92); }
.hdr__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.brand__mark {
  width: 24px; height: 24px;
  border-radius: 5px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  position: relative;
  flex-shrink: 0;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.brand__name { font-size: 15px; line-height: 1; white-space: nowrap; }
.brand__suffix { color: var(--ink-3); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 14.5px; color: var(--ink-2); position: relative; padding: 6px 0; }
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.hdr__cta { display: inline-flex; align-items: center; gap: 24px; }
.hdr__menu-btn {
  display: none;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}
.hdr__menu-btn span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 3px 0; border-radius: 1px; }

.mnav {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--bg);
  z-index: 40;
  padding: 32px var(--pad-x);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  border-top: 1px solid var(--line);
}
.mnav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mnav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 18px; letter-spacing: -0.01em; }
.mnav .btn {
  display: inline-flex;
  width: 100%;
  margin-top: 24px;
  padding: 14px 22px;
  font-size: 15px;
  justify-content: center;
  border-bottom: 0;
}

/* ============================================================ Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  min-height: 44px;
  font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--primary:hover { background: #1a2538; }
.btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 8px 22px -10px rgba(42, 111, 219, 0.55);
}
.btn--accent:hover { background: var(--accent-ink); border-color: var(--accent-ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); }
.section--ink .btn--ghost { color: #DCE3F0; border-color: #2C3A55; }
.section--ink .btn--ghost:hover { border-color: #5A6F95; }
.btn .arrow { display: inline-block; width: 14px; height: 14px; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(2px); }
.btn--sm { padding: 9px 16px; font-size: 13.5px; min-height: 0; }

/* ============================================================ Hero */
.hero {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(32px, 3.5vw, 48px);
  scroll-margin-top: 80px;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: stretch;
}
.hero__inner > div:first-child { display: flex; flex-direction: column; justify-content: center; }

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 28px;
  align-self: flex-start;
}
.hero__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pos);
  box-shadow: 0 0 0 3px rgba(31, 138, 91, 0.18);
}

.hero h1 {
  font-size: clamp(32px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--accent); }
/* Desktop: break to a new line before the accent phrase ("for agencies & consultants."). */
.hero__h1-break { display: inline; }
@media (min-width: 641px) {
  .hero__h1-break::before {
    content: "\A";
    white-space: pre;
  }
}

.hero__sub {
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--ink);
  max-width: 580px;
  margin: 0 0 28px;
  text-wrap: pretty;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.hchip {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 999px;
}

/* Workflow diagram */
.hdiag {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02), 0 30px 60px -40px rgba(14, 23, 38, 0.20);
  display: flex;
  flex-direction: column;
}
.hdiag__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.hdiag__title {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hdiag__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--pos);
}
.hdiag__pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pos);
  box-shadow: 0 0 0 3px rgba(31, 138, 91, 0.16);
  display: inline-block;
}

.hdiag__stages { display: flex; flex-direction: column; gap: 0; flex: 1; }
.hdiag__stage {
  position: relative;
  border: 1px solid var(--line);
  background: #FBFAF5;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 30px;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.hdiag__stage:last-child { margin-bottom: 0; }
.hdiag__stage.is-active {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.hdiag__connector {
  position: absolute;
  bottom: -25px;
  left: 26px;
  width: 12px;
  height: 17px;
  color: var(--line-strong);
  display: block;
  pointer-events: none;
}
.hdiag__stage.is-active .hdiag__connector { color: var(--accent); }
.hdiag__stage-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.hdiag__chip {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--bg-tint);
  color: var(--ink-3);
}
.hdiag__chip--trigger { color: var(--accent); border-color: var(--accent-soft); background: var(--accent-soft); }
.hdiag__chip--core { color: var(--ink); }
.hdiag__chip--out { color: var(--accent-2); border-color: rgba(197, 123, 42, 0.20); background: rgba(197, 123, 42, 0.08); }
.hdiag__chip--dash { color: var(--pos); border-color: rgba(31, 138, 91, 0.22); background: rgba(31, 138, 91, 0.08); }
.hdiag__stage-label { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.hdiag__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 14px;
}
.hdiag__items li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: 12px;
  min-width: 0;
}
.hdiag__items b { font-weight: 600; color: var(--ink); font-size: 12.5px; letter-spacing: 0; }
.hdiag__items span { color: var(--ink-3); font-size: 11px; }
.hdiag__foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}

@media (prefers-reduced-motion: reduce) {
  .hdiag__stage { transition: none; }
}

/* ============================================================ Section head w/ note */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 32px;
}
.section-head .section-lede { margin-bottom: 0; }
.section-head__note {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--ink-3);
  text-align: left;
  flex-shrink: 0;
  max-width: 300px;
  line-height: 1.6;
  border-left: 1px solid var(--line-strong);
  padding-left: 22px;
  text-wrap: pretty;
}
.section-head__note-label {
  display: block;
  width: fit-content;
  color: var(--accent-2);
  background: rgba(197, 123, 42, 0.10);
  border: 1px solid rgba(197, 123, 42, 0.25);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* ============================================================ Proof grid + cards */
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.vcard {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.vcard:hover { border-color: var(--line-strong); box-shadow: 0 30px 60px -40px rgba(14, 23, 38, 0.20); }

.vcard__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  width: 100%;
  display: block;
  font-family: inherit;
}
.vcard__thumb:focus-visible { outline-offset: -2px; }
.vcard__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--bg-ink-soft);
  transition: transform .28s ease;
}
.vcard:hover .vcard__poster,
.vcard__thumb:hover .vcard__poster { transform: scale(1.015); }
.vcard__time {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.76);
  padding: 5px 8px 6px;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
  z-index: 5;
}

.vcard__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  z-index: 5;
  pointer-events: none;
}
.vcard:hover .vcard__play,
.vcard__thumb:hover .vcard__play {
  background: rgba(0, 0, 0, 0.74);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%) scale(1.06);
}
.vcard__play svg { transform: translateX(2px); }

.vcard__body { padding: 22px 22px 24px; }
.vcard__title { font-size: 20px; font-weight: 600; letter-spacing: -0.018em; margin: 0 0 6px; }
.vcard__sub { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-3); margin: 0 0 16px; line-height: 1.55; }
.vcard__proves { font-size: 15px; color: var(--ink-2); margin: 0 0 18px; line-height: 1.55; text-wrap: pretty; }
.vcard__proves::before {
  content: "What it proves \2014 ";
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  margin-bottom: 4px;
}
.vcard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  background: var(--bg-tint);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--line);
}

/* ============================================================ Thumbnail variants */
.thumb { position: absolute; inset: 0; display: flex; flex-direction: column; }
.thumb__chrome {
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  border-bottom: 1px solid var(--line);
  background: #F2EFE5;
}
.thumb__url {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0;
}
.thumb__chrome--app { background: #FAFAFA; }
.thumb__chrome--dark { background: var(--bg-ink-soft); border-bottom-color: var(--line-dark); color: #8FA0BD; }
.thumb__chrome--dark .thumb__url { background: rgba(255, 255, 255, 0.05); border-color: var(--line-dark); color: #DCE3F0; }
.thumb__chrome--make { background: #1B1F26; border-bottom-color: #2A2F38; color: #C8B89C; }
.thumb__chrome--make .thumb__url { background: rgba(255, 255, 255, 0.04); border-color: #2A2F38; color: #E8DAC0; }
.thumb__body { flex: 1; padding: 14px; position: relative; overflow: hidden; }

/* 01 Intake */
.thumb--intake { background: #FFFFFF; }
.th-form { display: grid; gap: 8px; font-family: var(--font-sans); }
.th-row { display: grid; grid-template-columns: 90px 1fr; gap: 10px; align-items: center; font-size: 12px; }
.th-row label {
  color: var(--ink-3);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.th-input { background: #F8F6EE; border: 1px solid var(--line); padding: 6px 10px; border-radius: 6px; color: var(--ink); font-size: 12px; }
.th-drop {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-soft);
  border: 1px dashed var(--accent);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--ink-2);
  margin-top: 4px;
}
.th-drop b { color: var(--accent); font-weight: 600; }
.th-drop__icon { color: var(--accent); display: inline-flex; }
.th-drop__ok { margin-left: auto; color: var(--pos); font-weight: 600; }
.th-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 138, 91, 0.08);
  border: 1px solid rgba(31, 138, 91, 0.25);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--ink-2);
  margin-top: 2px;
}
.th-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pos);
  box-shadow: 0 0 0 3px rgba(31, 138, 91, 0.18);
}

/* 02 Agency */
.thumb--agency { background: #FFFFFF; }
.ag-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 10px; }
.ag-stats > div {
  background: #FBFAF5;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ag-stats b { font-size: 16px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.ag-stats span {
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-family: var(--font-mono);
}
.ag-list { display: flex; flex-direction: column; gap: 4px; }
.ag-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 6px 10px;
  background: #FBFAF5;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 11.5px;
}
.ag-row__name { color: var(--ink); font-weight: 500; }
.ag-row__meta { color: var(--ink-3); font-family: var(--font-mono); font-size: 10.5px; }
.ag-row__chip {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid var(--line);
}
.ag-row__chip--warm { color: var(--accent-2); background: rgba(197, 123, 42, 0.08); border-color: rgba(197, 123, 42, 0.20); }
.ag-row__chip--won { color: var(--pos); background: rgba(31, 138, 91, 0.08); border-color: rgba(31, 138, 91, 0.22); }
.ag-row__chip--open { color: var(--accent); background: var(--accent-soft); border-color: rgba(42, 111, 219, 0.25); }

/* 03 Reliability — dark */
.thumb--reliability { background: var(--bg-ink); }
.rel-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 70px;
  padding: 8px 4px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 8px;
}
.rel-bars span { flex: 1; background: linear-gradient(180deg, var(--accent), #1E5BC0); border-radius: 2px 2px 0 0; opacity: .85; }
.rel-bars span:nth-child(2n) { opacity: .55; }
.rel-rows { display: grid; gap: 4px; }
.rel-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 0;
}
.rel-row__name { color: #DCE3F0; }
.rel-row__stat {
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid;
}
.rel-row__stat--done { color: var(--pos); border-color: rgba(31, 138, 91, 0.35); background: rgba(31, 138, 91, 0.10); }
.rel-row__stat--retry { color: var(--accent-2); border-color: rgba(197, 123, 42, 0.35); background: rgba(197, 123, 42, 0.10); }
.rel-row__t { color: #6B7B97; font-size: 10.5px; }

/* 04 Make — dark canvas */
.thumb--make { background: #14171C; }
.mk-canvas { position: absolute; inset: 28px 0 0 0; width: 100%; height: calc(100% - 28px); }
.mk-nodes { position: absolute; inset: 28px 0 0 0; }
.mk-node {
  position: absolute;
  width: 88px;
  background: #20242C;
  border: 1px solid #2F343F;
  border-radius: 8px;
  padding: 6px 8px;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}
.mk-node i {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: linear-gradient(135deg, #C57B2A, #E8B26A);
  margin-bottom: 4px;
  display: block;
}
.mk-node--in i { background: linear-gradient(135deg, var(--accent), #4FA3FF); }
.mk-node--out i { background: linear-gradient(135deg, var(--pos), #4ECF94); }
.mk-node b { color: #E8DAC0; font-size: 11px; font-weight: 600; letter-spacing: -0.005em; }
.mk-node span { color: #8B8270; font-size: 9.5px; font-family: var(--font-mono); letter-spacing: 0.03em; }

/* ============================================================ Video modal */
.vmodal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(14, 23, 38, 0.86);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.vmodal[hidden] { display: none; }
.vmodal.is-open { opacity: 1; pointer-events: auto; }
.vmodal__panel {
  width: min(960px, 100%);
  background: var(--bg-ink);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #DCE3F0;
  transform: scale(.98);
  transition: transform .2s ease;
}
.vmodal.is-open .vmodal__panel { transform: scale(1); }
.vmodal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  color: #9CADCB;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.vmodal__head strong { color: #fff; font-weight: 600; }
.vmodal__close {
  background: transparent;
  border: 1px solid var(--line-dark);
  color: #9CADCB;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.vmodal__close:hover { color: #fff; border-color: #5A6F95; }
.vmodal__player {
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 40px),
    var(--bg-ink-soft);
  display: grid;
  place-items: center;
  position: relative;
}
.vmodal__video-shell,
.vmodal__player iframe,
.vmodal__player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vmodal__video-shell {
  overflow: hidden;
  background: #000;
}
.vmodal__player video {
  object-fit: contain;
  background: #000;
}
.vmodal__big-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 88px;
  height: 88px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.62);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.94);
  transition: opacity .16s ease, transform .16s ease, background .16s ease;
}
.vmodal__big-play:hover { background: rgba(0, 0, 0, 0.76); }
.vmodal__video-shell.is-paused .vmodal__big-play {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.vmodal__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 12px;
  padding: 48px 16px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
  color: #fff;
  opacity: 0;
  transition: opacity .16s ease;
}
.vmodal__video-shell:hover .vmodal__controls,
.vmodal__video-shell.is-paused .vmodal__controls,
.vmodal__controls:focus-within {
  opacity: 1;
}
.vmodal__control {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.vmodal__control:hover,
.vmodal__control:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}
.vmodal__toggle .ico-play { display: none; }
.vmodal__video-shell.is-paused .vmodal__toggle .ico-play { display: block; }
.vmodal__video-shell.is-paused .vmodal__toggle .ico-pause { display: none; }
.vmodal__mute .ico-muted { display: none; }
.vmodal__video-shell.is-muted .vmodal__mute .ico-volume { display: none; }
.vmodal__video-shell.is-muted .vmodal__mute .ico-muted { display: block; }
.vmodal__fullscreen .ico-exit-fullscreen { display: none; }
.vmodal__video-shell.is-fullscreen .vmodal__fullscreen .ico-fullscreen { display: none; }
.vmodal__video-shell.is-fullscreen .vmodal__fullscreen .ico-exit-fullscreen { display: block; }
.vmodal__seek {
  width: 100%;
  accent-color: #fff;
  cursor: pointer;
}
.vmodal__volume {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vmodal__volume-range {
  width: 84px;
  accent-color: #fff;
  cursor: pointer;
}
.vmodal__time {
  min-width: 112px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
  white-space: nowrap;
}
.vmodal__placeholder {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: #8195B0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
  line-height: 1.6;
}
.vmodal__placeholder b {
  display: block;
  color: #DCE3F0;
  font-size: 14px;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.vmodal__placeholder small {
  display: block;
  margin-top: 10px;
  font-size: 10.5px;
  color: #6B7B97;
  text-transform: none;
  letter-spacing: 0.02em;
}

/* ============================================================ Capability grid */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.cap {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px;
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  transition: background .2s ease;
}
.cap:hover { background: #FBFAF5; }
.cap__num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.cap__title { font-size: 19px; font-weight: 600; letter-spacing: -0.015em; margin: 0; }
.cap__copy { font-size: 15.5px; color: var(--ink-2); line-height: 1.55; margin: 0; text-wrap: pretty; }

/* ============================================================ Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line-strong);
}
.step { padding: 0 24px 0 0; position: relative; }
.step:last-child { padding-right: 0; }
.step__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.step:hover .step__num { border-color: var(--accent); color: var(--accent); }
.step__title { font-size: 18px; font-weight: 600; letter-spacing: -0.015em; margin: 0 0 8px; }
.step__copy { font-size: 15px; color: var(--ink-2); margin: 0; line-height: 1.55; text-wrap: pretty; }

/* ============================================================ White-label cards */
.wl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.wl-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wl-card__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(31, 138, 91, 0.10);
  color: var(--pos);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.wl-card__title { font-size: 16px; font-weight: 600; letter-spacing: -0.015em; margin: 0; }
.wl-card__copy { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0; text-wrap: pretty; }

/* ============================================================ Ways to work */
.ways-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.way {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  transition: border-color .2s ease, transform .2s ease;
}
.way:hover { border-color: var(--line-strong); transform: translateY(-1px); }
.way__num {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.way__title { font-size: 19px; font-weight: 600; letter-spacing: -0.018em; margin: 0 0 8px; }
.way__copy { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin: 0 0 14px; text-wrap: pretty; }
.way__best {
  font-size: 13.5px;
  color: var(--ink-3);
  margin: 0;
  padding-top: 12px;
  border-top: 1px dashed var(--line-strong);
  line-height: 1.5;
}
.way__best span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 8px;
}

/* ============================================================ About */
.about-sec { padding-top: 0; padding-bottom: clamp(28px, 3vw, 40px); }
.about {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
.about__avatar {
  width: 192px;
  height: 192px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ink);
  border: 1px solid rgba(14, 23, 38, 0.12);
}
.about__title { font-size: clamp(24px, 2.4vw, 32px); font-weight: 600; letter-spacing: -0.02em; margin: 0 0 14px; }
.about__copy { font-size: 16px; color: var(--ink-2); line-height: 1.6; margin: 0 0 22px; max-width: 640px; text-wrap: pretty; }
.about__facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.about__facts span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 14px;
  border-left: 1px solid var(--line-strong);
}
.about__facts b { font-size: 14px; font-weight: 600; color: var(--ink); }
.about__facts i { font-style: normal; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-3); }

/* ============================================================ Tech stack */
.stack-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.stack-copy { color: #B5C0D6; font-size: 16px; line-height: 1.65; max-width: 460px; }
.stack-copy em { color: var(--accent-2); font-style: normal; }
.stack-copy--small { font-size: 13.5px; color: #8195B0; margin-top: 14px; }
.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.stack-item { background: var(--bg-ink); padding: 18px 16px; display: flex; flex-direction: column; gap: 4px; transition: background .2s ease; }
.stack-item:hover { background: var(--bg-ink-soft); }
.stack-item__name { font-size: 14.5px; font-weight: 500; color: #E6ECF7; letter-spacing: -0.005em; }
.stack-item__kind {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #8195B0;
}

/* ============================================================ Fit */
.fit-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fit { background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }
.fit--no { background: transparent; border-style: dashed; }
.fit__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pos);
  margin-bottom: 14px;
}
.fit--no .fit__label { color: var(--neg); }
.fit__label-glyph { width: 16px; height: 16px; border-radius: 50%; background: rgba(31, 138, 91, 0.14); display: grid; place-items: center; }
.fit--no .fit__label-glyph { background: rgba(179, 58, 42, 0.14); }
.fit__title { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 22px; }
.fit__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.fit__list li {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
  text-wrap: pretty;
}
.fit__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--pos);
}
.fit--no .fit__list li::before { background: var(--neg); }

/* ============================================================ Contact CTA */
.cta {
  background: var(--bg-ink);
  color: #DCE3F0;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 90% 0%, rgba(42, 111, 219, 0.18), transparent 60%);
  pointer-events: none;
}
.cta > * { position: relative; }
.cta__title {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 20px;
  color: #fff;
  text-wrap: balance;
}
.cta__copy { font-size: 16px; line-height: 1.6; color: #B5C0D6; margin: 0 0 20px; max-width: 460px; text-wrap: pretty; }
.cta__next {
  font-size: 14px;
  line-height: 1.6;
  color: #9CADCB;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 0 0 24px;
  max-width: 460px;
  text-wrap: pretty;
}
.cta__next strong { color: #DCE3F0; font-weight: 600; }
.cta__next code { font-family: var(--font-mono); font-size: 12.5px; color: #DCE3F0; background: rgba(255, 255, 255, 0.05); padding: 1px 6px; border-radius: 4px; }
.cta__email {
  font-family: var(--font-mono);
  font-size: 14.5px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 14px;
  transition: border-color .2s ease, background .2s ease;
}
.cta__email:hover { border-color: var(--accent); background: rgba(42, 111, 219, 0.08); }
.cta__sub-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; color: #9CADCB; }
.cta__sub-link:hover { color: #DCE3F0; }

.form { display: grid; gap: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 6px; }
.field label,
.field__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B5C0D6;
  font-weight: 500;
}
.field__opt {
  color: #8195B0;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-left: 4px;
}
.field input, .field textarea, .field select {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid #2C3A55;
  border-radius: 8px;
  padding: 11px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
  outline: none;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #8195B0; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: #3B4D6F; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent);
  background: rgba(42, 111, 219, 0.10);
  box-shadow: 0 0 0 3px rgba(42, 111, 219, 0.22);
}
.field [aria-invalid="true"] {
  border-color: #D95B4D;
  box-shadow: 0 0 0 3px rgba(179, 58, 42, 0.18);
}
.field__error {
  min-height: 16px;
  margin: -2px 0 0;
  color: #FFB7AE;
  font-size: 12.5px;
  line-height: 1.35;
}
.form__status {
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 13.5px;
  line-height: 1.45;
  border: 1px solid #2C3A55;
  background: rgba(255, 255, 255, 0.05);
  color: #DCE3F0;
}
.form__status.is-success {
  border-color: rgba(31, 138, 91, 0.46);
  background: rgba(31, 138, 91, 0.12);
  color: #91E0B9;
}
.form__status.is-error {
  border-color: rgba(179, 58, 42, 0.48);
  background: rgba(179, 58, 42, 0.12);
  color: #FFB7AE;
}
.form__buyer {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #2C3A55;
  border-radius: 8px;
  padding: 4px;
}
.form__buyer label {
  flex: 1;
  background: transparent;
  border: 0;
  color: #B5C0D6;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 9px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  text-align: center;
  position: relative;
}
.form__buyer input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form__buyer label:hover { color: #fff; }
.form__buyer label:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.form__buyer label.is-on {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.18), 0 6px 14px -6px rgba(42, 111, 219, 0.55);
}
.form button[disabled] {
  cursor: wait;
  opacity: 0.76;
}
.form__submit {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form__micro { font-size: 12.5px; color: #8195B0; max-width: 280px; line-height: 1.5; margin: 0; }

/* Honeypot — hidden from users + assistive tech, visible to naive bots */
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

/* ============================================================ Footer */
.ftr {
  border-top: 1px solid var(--line);
  padding: 56px var(--pad-x) 40px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.ftr__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.ftr__brand .brand { margin-bottom: 14px; }
.ftr__addr { font-size: 14.5px; line-height: 1.7; color: var(--ink-2); }
.ftr__addr a { color: var(--ink); }
.ftr__addr a:hover { color: var(--accent); }
.ftr__col h5 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  margin: 0 0 14px;
}
.ftr__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ftr__col a { color: var(--ink-2); }
.ftr__col a:hover { color: var(--ink); }
.ftr__base {
  max-width: var(--max);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================ Legal pages */
.legal { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(72px, 9vw, 128px); }
.legal__wrap { max-width: 720px; margin: 0 auto; padding: 0 var(--pad-x); }
.legal__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 14px;
}
.legal h1 {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 28px;
}
.legal h2 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 36px 0 10px;
}
.legal p, .legal li { font-size: 16px; color: var(--ink-2); line-height: 1.65; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal__updated { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em; }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 14px;
  color: var(--accent);
}
.legal__back:hover { color: var(--accent-ink); }

/* ============================================================ Responsive */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .proof-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .steps::before { display: none; }
  .stack-wrap { grid-template-columns: 1fr; gap: 32px; }
  .stack-grid { grid-template-columns: repeat(3, 1fr); }
  .fit-wrap { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; }
  .ftr__inner { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head__note {
    text-align: left;
    border-left: 0;
    border-top: 1px solid var(--line-strong);
    padding-left: 0;
    padding-top: 16px;
    max-width: none;
  }
  .wl-grid { grid-template-columns: repeat(2, 1fr); }
  .ways-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 20px; }
  .about__avatar { width: 144px; height: 144px; font-size: 22px; }
  .about__facts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  html, body { font-size: 16px; }
  .nav { display: none; }
  .hdr__menu-btn { display: block; }
  .hdr__cta .btn--accent { display: none; }
  .cap-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr; }
  .ftr__inner { grid-template-columns: 1fr; gap: 28px; }
  .ftr__base { flex-direction: column; align-items: flex-start; }
  .wl-grid { grid-template-columns: 1fr; }
  .about__facts { grid-template-columns: 1fr 1fr; }
  .hdiag__items { grid-template-columns: repeat(2, 1fr); }
  .vcard__body { padding: 18px 18px 20px; }
  .vcard__title { font-size: 18px; }
  .vcard__play { width: 62px; height: 62px; }
  .vcard__time { left: 12px; bottom: 12px; font-size: 12px; }
  .vmodal__controls {
    grid-template-columns: auto 1fr auto auto;
    gap: 8px;
    padding: 44px 10px 10px;
  }
  .vmodal__time { display: none; }
  .vmodal__volume-range { width: 58px; }
  .vmodal__big-play { width: 74px; height: 74px; }
  .about__avatar { width: 128px; height: 128px; }
  .way { grid-template-columns: 40px 1fr; padding: 22px; gap: 14px; }
  .way__num { font-size: 20px; }
  .fit { padding: 24px; }
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
