/* ============================================================
   YUNAKI — design system v2
   ivory / navy / gold · serif headings · hairline borders
   ============================================================ */

:root {
  --paper: #f7f5ef;
  --paper-deep: #efebe1;
  --paper-raise: #fbfaf6;
  --ink: #152a43;
  --ink-deep: #0f2036;
  --muted: #5c6675;
  --accent: #96772e;
  --accent-soft: #e9dfc4;
  --line: 1.5px solid var(--ink);
  --line-soft: 1px solid rgba(21, 42, 67, 0.16);
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--paper-deep);
  background-image:
    linear-gradient(rgba(21, 42, 67, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 42, 67, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--ink); color: var(--paper); }

a { color: inherit; }

.frame {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--paper);
  border-left: var(--line);
  border-right: var(--line);
  min-height: 100vh;
}

/* ---------- topbar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px;
  background: var(--paper);
  border-bottom: var(--line);
}

.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
}

.brand span {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topnav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.topnav a:hover { color: var(--accent); }

.topnav a.active { color: var(--accent); }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 22px;
  border: var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn:hover { background: var(--ink); color: var(--paper); }

.btn-solid {
  background: var(--ink);
  color: var(--paper);
}

.btn-solid:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.topbar .btn { padding: 11px 18px; }

/* ---------- hero ---------- */

.hero { padding: 84px 32px 72px; }

.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.kicker .live {
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.kicker .dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(44px, 6.6vw, 84px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 18ch;
}

.hl {
  background: var(--ink);
  color: var(--paper);
  padding: 0 0.16em;
  display: inline-block;
}

.lead {
  margin-top: 32px;
  font-size: 20px;
  line-height: 1.6;
  max-width: 560px;
}

.lead strong { font-weight: 700; }

.hero-ctas {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.ticker {
  border-top: var(--line);
  border-bottom: var(--line);
  overflow: hidden;
  padding: 13px 0;
  background: var(--paper-raise);
}

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
}

.ticker span {
  font-family: var(--mono);
  font-size: 13px;
  padding: 0 26px;
}

.ticker span::before {
  content: "◆";
  color: var(--accent);
  margin-right: 14px;
  font-size: 11px;
}

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

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

section { border-bottom: var(--line); }

.sec-pad { padding: 72px 32px; }

.seclabel {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 24px;
}

h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  max-width: 26ch;
}

h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.3;
}

.prose {
  margin-top: 22px;
  max-width: 560px;
  font-size: 17.5px;
}

.prose p + p { margin-top: 14px; }

.prose em { font-style: italic; }

/* split: text left, stats right */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split > div { padding: 72px 40px; }

.split > div + div { border-left: var(--line); }

/* ---------- stats ---------- */

.statrow {
  display: flex;
  align-items: stretch;
}

.stat {
  padding: 8px 30px;
  text-align: left;
}

.stat:first-child { padding-left: 0; }

.stat + .stat { border-left: var(--line); }

.stat .num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.stat .num .unit {
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
}

.stat .lbl {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
  max-width: 17ch;
}

.stat-note {
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 46ch;
}

.stat-note strong { color: var(--ink); }

/* ---------- figure ---------- */

.fig {
  border: var(--line);
  background: var(--paper-raise);
  margin-top: 44px;
}

.fig-body { padding: 36px 28px 28px; }

.fig-body svg { width: 100%; height: auto; display: block; }

.fig-cap {
  border-top: var(--line);
  padding: 15px 24px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--muted);
  background: var(--paper);
}

.fig-cap strong { color: var(--ink); }

/* ---------- pipeline animation ---------- */

.pipeline {
  display: flex;
  align-items: stretch;
  padding: 36px 28px;
}

.pl-stage { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.pl-cardlabel {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.pl-card {
  border: var(--line);
  background: var(--paper);
  padding: 18px;
  position: relative;
  flex: 1;
  min-height: 168px;
}

.pl-doctitle {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pl-line {
  height: 8px;
  background: rgba(21, 42, 67, 0.14);
  margin: 9px 0;
  opacity: 0;
  animation: plIn 10s infinite;
}

.pl-line.w80 { width: 80%; }
.pl-line.w60 { width: 60%; }
.pl-line.w70 { width: 70%; }

.pl-line.d2 { animation-delay: 0.25s; }
.pl-line.d3 { animation-delay: 0.5s; }

.pl-chip {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 14px;
  opacity: 0;
  animation: plIn 10s infinite;
  animation-delay: 0.7s;
}

@keyframes plIn {
  0%, 2% { opacity: 0; transform: translateY(4px); }
  6%, 94% { opacity: 1; transform: none; }
  98%, 100% { opacity: 0; }
}

.pl-flow {
  flex: 0 0 56px;
  position: relative;
  align-self: center;
  height: 2px;
  background: rgba(21, 42, 67, 0.25);
  margin: 0 8px;
}

.pl-dot {
  position: absolute;
  top: -4px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--accent);
  opacity: 0;
  animation: plDot1 10s infinite;
}

@keyframes plDot1 {
  0%, 10% { left: 0; opacity: 0; }
  12% { opacity: 1; }
  18% { left: calc(100% - 10px); opacity: 1; }
  20%, 100% { left: calc(100% - 10px); opacity: 0; }
}

.pl-flow2 .pl-dot { animation-name: plDot2; }

@keyframes plDot2 {
  0%, 46% { left: 0; opacity: 0; }
  48% { opacity: 1; }
  54% { left: calc(100% - 10px); opacity: 1; }
  56%, 100% { left: calc(100% - 10px); opacity: 0; }
}

.pl-check {
  font-family: var(--mono);
  font-size: 12px;
  padding: 8px 0 8px 22px;
  position: relative;
  border-top: var(--line-soft);
  opacity: 0.3;
  animation: plCheck1 10s infinite;
}

.pl-check:first-of-type { border-top: none; }

.pl-check::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--accent);
  font-weight: 700;
}

.pl-check.c2 { animation-name: plCheck2; }
.pl-check.c3 { animation-name: plCheck3; }

@keyframes plCheck1 {
  0%, 22% { opacity: 0.3; }
  26%, 94% { opacity: 1; }
  98%, 100% { opacity: 0.3; }
}

@keyframes plCheck2 {
  0%, 30% { opacity: 0.3; }
  34%, 94% { opacity: 1; }
  98%, 100% { opacity: 0.3; }
}

@keyframes plCheck3 {
  0%, 38% { opacity: 0.3; }
  42%, 94% { opacity: 1; }
  98%, 100% { opacity: 0.3; }
}

.pl-field {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
}

.pl-field span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  flex: 0 0 84px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pl-field i {
  display: block;
  flex: 1;
  height: 9px;
  background: rgba(21, 42, 67, 0.08);
  position: relative;
  overflow: hidden;
}

.pl-field i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: plFill1 10s infinite;
}

.pl-field.f2 i::after { animation-name: plFill2; }
.pl-field.f3 i::after { animation-name: plFill3; }

@keyframes plFill1 {
  0%, 58% { transform: scaleX(0); }
  64%, 94% { transform: scaleX(1); }
  98%, 100% { transform: scaleX(0); }
}

@keyframes plFill2 {
  0%, 65% { transform: scaleX(0); }
  71%, 94% { transform: scaleX(1); }
  98%, 100% { transform: scaleX(0); }
}

@keyframes plFill3 {
  0%, 72% { transform: scaleX(0); }
  78%, 94% { transform: scaleX(1); }
  98%, 100% { transform: scaleX(0); }
}

.pl-stamp {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 10px;
  transform: rotate(-7deg) scale(0.6);
  opacity: 0;
  animation: plStamp 10s infinite;
  background: var(--paper);
}

@keyframes plStamp {
  0%, 80% { opacity: 0; transform: rotate(-7deg) scale(0.6); }
  84%, 95% { opacity: 1; transform: rotate(-7deg) scale(1); }
  99%, 100% { opacity: 0; transform: rotate(-7deg) scale(0.6); }
}

@media (prefers-reduced-motion: reduce) {
  .pl-line, .pl-chip, .pl-check { opacity: 1; animation: none; }
  .pl-field i::after { transform: scaleX(1); animation: none; }
  .pl-stamp { opacity: 1; transform: rotate(-7deg) scale(1); animation: none; }
  .pl-dot { display: none; }
  .ticker-track { animation: none; }
  .kicker .dot { animation: none; }
}

/* pipeline inside a case file */

.file-anim {
  border-bottom: var(--line);
  background: var(--paper-raise);
}

.file-anim .pipeline { padding: 28px; }

/* ---------- duo cards ---------- */

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--line);
  margin-top: 44px;
}

.duo > div { padding: 36px; }

.duo > div + div { border-left: var(--line); }

.card-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.duo p { font-size: 17px; }

.after-fig-cta { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- practice areas ---------- */

.practices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--line);
  margin-top: 44px;
}

.practice { padding: 36px; border-top: var(--line); }

.practice:nth-child(-n + 2) { border-top: none; }

.practice:nth-child(even) { border-left: var(--line); }

.practice-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.chip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  padding: 4px 9px;
  white-space: nowrap;
}

.chip-live { border-color: var(--accent); color: var(--accent); }

.practice > p { color: var(--muted); font-size: 15.5px; margin-bottom: 18px; }

.practice > p strong { color: var(--ink); }

.list { list-style: none; }

.list li {
  font-size: 15.5px;
  padding: 9px 0 9px 26px;
  position: relative;
  border-top: var(--line-soft);
}

.list li::before {
  content: "◆";
  position: absolute;
  left: 2px;
  top: 11px;
  font-size: 10px;
  color: var(--accent);
}

.prose .list { margin-top: 8px; max-width: 560px; }

.practice-foot {
  grid-column: 1 / -1;
  border-top: var(--line);
  padding: 20px 36px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}

.practice-foot strong { color: var(--ink); }

/* ---------- case file cards (home preview) ---------- */

.cf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: var(--line);
  margin-top: 44px;
}

.cf-card {
  padding: 32px 30px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.15s;
}

.cf-card + .cf-card { border-left: var(--line); }

.cf-card:hover { background: var(--paper-raise); }

.cf-card:hover .cf-go { color: var(--accent); }

.cf-id {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.cf-card h3 { font-size: 20px; }

.cf-card p { font-size: 15.5px; color: var(--muted); flex: 1; }

.cf-go {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--ink-deep);
  color: var(--paper);
  padding: 88px 32px;
}

.cta-band .seclabel { color: var(--accent-soft); }

.cta-band h2 { max-width: 26ch; }

.cta-band .lead { color: rgba(247, 245, 239, 0.82); font-size: 18px; max-width: 580px; }

.cta-band .hero-ctas { margin-top: 40px; }

.cta-band .btn { border-color: var(--paper); color: var(--paper); }

.cta-band .btn:hover { background: var(--paper); color: var(--ink); }

.cta-band .btn-solid { background: var(--accent); border-color: var(--accent); color: #fff; }

.cta-band .btn-solid:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }

/* ---------- footer ---------- */

footer {
  padding: 40px 32px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}

footer .fcol {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  line-height: 2;
}

footer .fcol strong { color: var(--ink); }

footer a { text-decoration: none; }

footer a:hover { color: var(--accent); }

/* ============================================================
   case-files page
   ============================================================ */

.page-head { padding: 72px 32px 56px; border-bottom: var(--line); }

.page-head .prose { max-width: 620px; }

.honesty {
  margin-top: 32px;
  border: var(--line);
  border-left: 5px solid var(--accent);
  background: var(--paper-raise);
  padding: 18px 24px;
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.8;
  max-width: 720px;
}

.files { padding: 64px 32px; display: flex; flex-direction: column; gap: 56px; }

.file { border: var(--line); background: var(--paper-raise); scroll-margin-top: 90px; }

.file-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 24px 32px;
  border-bottom: var(--line);
  flex-wrap: wrap;
}

.file-head .cf-id { font-size: 13px; font-weight: 700; }

.file-head h3 { font-size: 26px; flex: 1; }

.file-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: var(--line);
}

.file-meta > div { padding: 14px 32px; }

.file-meta > div + div { border-left: var(--line); }

.file-meta .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.file-meta .v {
  font-family: var(--mono);
  font-size: 13.5px;
  margin-top: 4px;
}

.file-body { padding: 32px; }

.file-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.file-body h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.file-body p { font-size: 16px; margin-bottom: 12px; }

.file-body .list li { font-size: 15.5px; }

.file-body .list li:first-child { border-top: none; }

.fix {
  margin-top: 28px;
  border-top: var(--line);
  padding-top: 24px;
}

.fix h4 { color: var(--accent); }

.fix p { max-width: 70ch; }

.sources {
  border-top: var(--line);
  padding: 13px 32px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.8;
  background: var(--paper);
}

.side-note {
  border: var(--line);
  padding: 30px 36px;
  background: var(--paper-raise);
}

.side-note h3 { margin-bottom: 12px; }

.side-note p { font-size: 16px; max-width: 74ch; }

.side-note p + p { margin-top: 10px; }

/* ============================================================
   how-it-works page
   ============================================================ */

.subsystems { margin-top: 44px; border: var(--line); }

.subsystem {
  display: grid;
  grid-template-columns: 110px 1fr 1.35fr;
  align-items: stretch;
}

.subsystem + .subsystem { border-top: var(--line); }

.subsystem > div { padding: 30px 32px; }

.subsystem .sub-no {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 28px;
  color: var(--accent);
}

.subsystem .sub-title { border-left: var(--line); }

.subsystem .sub-title h3 { font-size: 19px; margin-bottom: 8px; }

.subsystem .sub-title .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.subsystem .sub-desc { border-left: var(--line); font-size: 16px; }

.subsystem .sub-desc p + p { margin-top: 10px; }

/* ============================================================
   contact / pilot form
   ============================================================ */

.form-wrap {
  padding: 64px 32px 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
}

.pilot-form { border: var(--line); background: var(--paper-raise); padding: 36px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field label b { color: var(--accent); font-weight: 700; }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--paper);
  border: var(--line);
  padding: 12px 14px;
  border-radius: 0;
  width: 100%;
  appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M0 0l5 6 5-6z' fill='%23152a43'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-field textarea { resize: vertical; min-height: 110px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.form-submit { margin-top: 28px; }

.form-note {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.pilot-points { display: flex; flex-direction: column; }

.pilot-points .list li { font-size: 16.5px; padding-top: 14px; padding-bottom: 14px; }

.pilot-points .list li:first-child { border-top: none; }

/* ---------- responsive ---------- */

@media (max-width: 940px) {
  .split, .duo, .file-cols, .form-wrap { grid-template-columns: 1fr; }
  .split > div + div, .duo > div + div { border-left: none; border-top: var(--line); }
  .practices { grid-template-columns: 1fr; }
  .practice:nth-child(even) { border-left: none; }
  .practice:nth-child(2) { border-top: var(--line); }
  .cf-grid { grid-template-columns: 1fr; }
  .cf-card + .cf-card { border-left: none; border-top: var(--line); }
  .statrow { flex-direction: column; gap: 32px; }
  .stat { padding-left: 0; }
  .stat + .stat { border-left: none; border-top: var(--line); padding-top: 32px; }
  .subsystem { grid-template-columns: 1fr; }
  .subsystem .sub-title, .subsystem .sub-desc { border-left: none; border-top: var(--line-soft); }
  .file-meta { grid-template-columns: 1fr; }
  .file-meta > div + div { border-left: none; border-top: var(--line-soft); }
  .topnav a:not(.btn) { display: none; }
  .split > div { padding: 56px 28px; }
  .sec-pad { padding: 56px 24px; }
  .hero { padding: 64px 24px 56px; }
  .pipeline { flex-direction: column; }
  .pl-flow { flex: 0 0 36px; width: 2px; height: 36px; align-self: center; margin: 8px 0; }
  .pl-dot { display: none; }
  .form-grid { grid-template-columns: 1fr; }
}
