/* Flyway Pacific Title — design system v3 "ledger"
   Transactional, financial, precise. Dark pine greens on paper white. */

:root {
  --bg: #f7f9f7;
  --surface: #ffffff;
  --ink: #0e1f17;
  --muted: #5b6a60;
  --line: #e3e8e3;
  --pine: #14532d;          /* primary dark green */
  --pine-deep: #0c3d20;     /* darker green */
  --leaf: #178f4e;          /* signal green accent */
  --leaf-bright: #5fd695;
  --accent-soft: #e9f4ec;
  --gold: #d9a441;
  --good: #067647;
  --good-soft: #e9f6ef;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --serif: "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --sans: "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 1px 2px rgba(14, 31, 23, .05), 0 6px 20px -12px rgba(14, 31, 23, .12);
  --shadow-lift: 0 2px 4px rgba(14, 31, 23, .06), 0 16px 36px -16px rgba(14, 31, 23, .18);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; }

/* ---------- ambient background (retired) ---------- */
.bg-blob { display: none; }

/* ---------- reveal motion ---------- */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1); }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .06s; } .rv.d2 { transition-delay: .12s; }
.rv.d3 { transition-delay: .18s; } .rv.d4 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
}

/* ---------- nav ---------- */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .85); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16.5px; letter-spacing: -.01em; }
.logo svg { width: 26px; height: 26px; color: var(--pine); }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14.5px; color: var(--muted); font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
@media (max-width: 720px) { .nav-links .hide-sm { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pine); color: #fff;
  padding: 12px 22px; border-radius: 9px;
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  font-family: var(--sans);
  transition: background .15s ease, box-shadow .15s ease;
  box-shadow: 0 1px 2px rgba(12, 61, 32, .25);
}
.btn:hover { background: var(--pine-deep); box-shadow: 0 4px 14px -4px rgba(12, 61, 32, .4); }
.btn.accent { background: var(--pine); }
.btn.ghost { background: #fff; color: var(--ink); border: 1px solid #cfdacb; box-shadow: none; }
.btn.ghost:hover { border-color: var(--pine); color: var(--pine); }
.btn.sm { padding: 9px 18px; font-size: 14px; }
.btn.lg { padding: 14px 28px; font-size: 16px; }
.btn:disabled { opacity: .45; cursor: default; }
.btn .arr { transition: transform .15s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- hero ---------- */
header.hero {
  padding: 84px 0 72px; position: relative;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.pill-note {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .03em;
  color: var(--pine); background: var(--accent-soft);
  border: 1px solid #d3ead9;
  padding: 6px 14px; border-radius: 7px; margin-bottom: 26px;
}
.pill-note .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good); animation: pulse 2.2s ease infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(6, 118, 71, .4); }
  55% { box-shadow: 0 0 0 6px rgba(6, 118, 71, 0); }
}
h1 {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(36px, 5vw, 54px); line-height: 1.08; letter-spacing: -.028em;
  max-width: 760px; margin-bottom: 22px;
}
h1 em { font-style: normal; color: var(--leaf); }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 540px; margin-bottom: 34px; line-height: 1.65; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-fine { font-size: 13px; color: var(--muted); margin-top: 20px; }
.hero-fine b { color: var(--pine); font-weight: 600; }

/* retired hero illustration */
.branch { display: none; }

/* sample order ticket */
.order-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lift); overflow: hidden;
}
.oc-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px; background: var(--pine); color: #fff;
  font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.oc-head .oc-ref { font-family: var(--mono); font-weight: 500; letter-spacing: .02em; text-transform: none; color: #bcd9c6; }
.oc-line {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 13px 22px; border-bottom: 1px solid var(--line); font-size: 14.5px;
}
.oc-line span { color: var(--muted); }
.oc-line b { font-family: var(--mono); font-weight: 500; font-size: 14px; }
.oc-line.total { background: #fbfdfb; }
.oc-line.total span { color: var(--ink); font-weight: 600; }
.oc-line.total b { font-weight: 700; font-size: 16px; color: var(--pine); }
.oc-line.total small { display: block; font-size: 11.5px; color: var(--good); font-weight: 500; margin-top: 2px; }
.oc-step {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 22px; border-bottom: 1px solid var(--line);
}
.oc-step i {
  flex: 0 0 auto; width: 18px; height: 18px; border-radius: 50%; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
}
.oc-step.done i { background: var(--good); }
.oc-step.done i::after {
  content: ""; width: 5px; height: 9px; margin-top: -2px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.oc-step.now i { background: #fff; border: 2px solid var(--good); }
.oc-step.now i::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--good); animation: pulse 2.2s ease infinite; }
.oc-step.next i { background: #fff; border: 2px solid var(--line); }
.oc-step > div { flex: 1; min-width: 0; }
.oc-step b { display: block; font-size: 13.5px; font-weight: 650; line-height: 1.35; }
.oc-step.next b { color: var(--muted); }
.oc-step small { display: block; font-size: 11.5px; color: var(--muted); line-height: 1.45; margin-top: 1px; }
.oc-step .day { flex: 0 0 auto; font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 3px; }
.oc-status {
  display: flex; align-items: center; gap: 9px;
  padding: 13px 22px; font-size: 13px; font-weight: 600; color: var(--good);
  background: var(--good-soft);
}
.oc-status i { width: 8px; height: 8px; border-radius: 50%; background: var(--good); }

/* ---------- stat strip ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  padding: 44px 24px 20px;
}
.stats > div {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 24px 22px; box-shadow: var(--shadow);
}
.stats .n {
  font-family: var(--mono); font-size: 27px; font-weight: 600; letter-spacing: -.02em; color: var(--pine);
}
.stats .l { font-size: 13.5px; color: var(--muted); margin-top: 8px; line-height: 1.5; }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- sections ---------- */
section { padding: 88px 0 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--leaf); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--leaf); border-radius: 2px; }
h2 {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(28px, 3.6vw, 38px); line-height: 1.12; letter-spacing: -.025em;
  max-width: 660px; margin-bottom: 16px;
}
.lede { font-size: 17px; color: var(--muted); max-width: 580px; margin-bottom: 42px; line-height: 1.65; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr; } }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr; } }
.card.ask-geo { border-style: dashed; background: transparent; box-shadow: none; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 28px 26px 26px; box-shadow: var(--shadow);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: var(--shadow-lift); border-color: #cfe4d4; }
.card .icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--accent-soft); color: var(--pine);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card .icon svg { width: 21px; height: 21px; }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.card .step-n { font-family: var(--mono); font-size: 12px; color: var(--leaf); display: block; margin-bottom: 14px; letter-spacing: .08em; }

/* process steps (how it works) */
.grow-line { position: relative; max-width: 700px; counter-reset: step; }
.grow-line .rail {
  position: absolute; left: 17px; top: 8px; bottom: 8px; width: 2px;
  background: var(--line); border-radius: 2px; overflow: hidden;
}
.grow-line .rail i {
  position: absolute; inset: 0; background: var(--pine);
  transform: scaleY(0); transform-origin: top; transition: transform 1.2s cubic-bezier(.3,0,.2,1);
  display: block;
}
.grow-line.in .rail i { transform: scaleY(1); }
.g-step { position: relative; padding: 0 0 36px 60px; counter-increment: step; }
.g-step:last-child { padding-bottom: 0; }
.g-step .node {
  position: absolute; left: 3px; top: 0; width: 30px; height: 30px; border-radius: 8px;
  background: var(--pine); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  opacity: 0; transform: scale(.6); transition: opacity .35s ease, transform .35s cubic-bezier(.2,.9,.3,1.3);
}
.g-step .node::after { content: counter(step); }
.grow-line.in .g-step:nth-child(2) .node { transition-delay: .05s; }
.grow-line.in .g-step:nth-child(3) .node { transition-delay: .45s; }
.grow-line.in .g-step:nth-child(4) .node { transition-delay: .85s; }
.grow-line.in .node { opacity: 1; transform: scale(1); }
.g-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; letter-spacing: -.01em; }
.g-step p { font-size: 14.5px; color: var(--muted); max-width: 560px; line-height: 1.6; }

/* ---------- audience ---------- */
.aud { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 820px) { .aud { grid-template-columns: 1fr; } }
.aud .card.wide { grid-column: 1 / -1; display: flex; gap: 26px; align-items: flex-start; }
@media (max-width: 820px) { .aud .card.wide { flex-direction: column; } }

/* ---------- pricing ---------- */
.price-box {
  position: relative; overflow: hidden;
  background: var(--pine-deep);
  color: #e8eef7; border-radius: 18px;
  padding: 48px 48px 44px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
  box-shadow: 0 24px 50px -24px rgba(12, 61, 32, .5);
}
.price-box::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 214, 149, .16), transparent 65%);
  top: -160px; right: -120px;
}
@media (max-width: 820px) { .price-box { grid-template-columns: 1fr; padding: 34px 26px; } }
.price-box h2 { color: #fff; max-width: none; }
.price-box .lede { color: #b9d2be; margin-bottom: 26px; }
.price-box .eyebrow { color: var(--leaf-bright); }
.price-box .eyebrow::before { background: var(--leaf-bright); }
.price-box .btn { background: #fff; color: var(--pine-deep); }
.price-box .btn:hover { background: var(--leaf-bright); color: var(--pine-deep); }
.dd-callout {
  margin-top: 26px; padding: 16px 18px; border-radius: 12px;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(95, 214, 149, .35);
  position: relative; z-index: 1;
}
.dd-callout > b { display: block; font-size: 14px; color: var(--leaf-bright); margin-bottom: 5px; }
.dd-callout p { font-size: 13.5px; color: #b9d2be; line-height: 1.6; margin: 0; }
.dd-callout p b { color: #fff; font-weight: 600; }
.price-line { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 15px; position: relative; z-index: 1; }
.price-line:last-child { border-bottom: none; }
.price-line .v { font-family: var(--mono); font-size: 14px; color: #dff0e2; white-space: nowrap; }
.price-line .k { color: #b9d2be; }
.price-foot { font-size: 12.5px; color: #8fae95; margin-top: 18px; line-height: 1.55; }

/* ---------- faq ---------- */
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 0 24px; margin-bottom: 10px; transition: border-color .2s ease;
}
.faq details[open] { border-color: #cfe4d4; }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 15.5px; padding: 18px 0;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { transition: transform .2s ease; flex: 0 0 auto; color: var(--leaf); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq details p { font-size: 14.5px; color: var(--muted); padding-bottom: 20px; max-width: 720px; line-height: 1.65; }

/* ---------- final cta ---------- */
.final-cta { margin-top: 88px; padding: 88px 0 96px; text-align: center; position: relative; background: #fff; border-top: 1px solid var(--line); }
.final-cta h2, .final-cta .lede { margin-left: auto; margin-right: auto; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); padding: 38px 0 50px; background: #fff; }
.foot-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.foot-inner .legal { max-width: 620px; line-height: 1.6; font-size: 12.5px; }

/* ================= intake ================= */
.intake-shell { max-width: 620px; margin: 0 auto; padding: 56px 24px 96px; }
.intake-head { margin-bottom: 26px; }
.intake-head h1 { font-size: clamp(30px, 4.2vw, 40px); margin-bottom: 0; }

.progress { display: flex; gap: 7px; margin-bottom: 30px; }
.progress span { flex: 1; height: 4px; border-radius: 99px; background: var(--line); transition: background .3s ease; }
.progress span.on { background: var(--pine); }

.panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 34px; box-shadow: var(--shadow);
  animation: panel-in .3s cubic-bezier(.2,.7,.2,1);
}
@keyframes panel-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (max-width: 600px) { .panel { padding: 24px 18px; } }

.q { font-family: var(--sans); font-weight: 700; font-size: 23px; letter-spacing: -.02em; margin-bottom: 22px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; }
.field label .opt { font-weight: 400; color: var(--muted); }
.field input[type=text], .field input[type=email], .field input[type=tel],
.field input[type=date], .field input[type=number], .field select, .field textarea {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--line); border-radius: 9px;
  font: 15px/1.4 var(--sans); background: #fff; color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(23, 143, 78, .13);
}
.field .hint { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.field.error input, .field.error select { border-color: #b91c1c; }
.field .err-msg { display: none; font-size: 12.5px; color: #b91c1c; margin-top: 6px; }
.field.error .err-msg { display: block; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .row-2 { grid-template-columns: 1fr; } }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .choice-grid { grid-template-columns: 1fr; } }
.choice {
  border: 1.5px solid var(--line); border-radius: 10px; padding: 16px;
  cursor: pointer; background: #fff; display: block; position: relative;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.choice:hover { border-color: var(--leaf); box-shadow: var(--shadow); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice.selected { border-color: var(--pine); background: var(--accent-soft); }
.choice b { display: block; font-size: 15px; margin-bottom: 3px; }
.choice span { font-size: 13px; color: var(--muted); line-height: 1.45; display: block; }
.choice.big { padding: 24px 18px; text-align: center; }
.choice.big b { font-size: 16.5px; margin: 0; }

.seg { display: flex; border: 1.5px solid var(--line); border-radius: 9px; overflow: hidden; width: fit-content; }
.seg label { position: relative; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span {
  display: block; padding: 10px 22px; font-size: 14px; font-weight: 600; cursor: pointer;
  background: #fff; color: var(--muted); border-left: 1px solid var(--line);
  transition: background .15s ease, color .15s ease;
}
.seg label:first-child span { border-left: none; }
.seg input:checked + span { background: var(--pine); color: #fff; }

.money { position: relative; }
.money::before {
  content: "$"; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: 15px; pointer-events: none;
}
.money input { padding-left: 30px !important; }

.auto-note {
  display: none; align-items: center; gap: 7px;
  font-size: 12.5px; color: var(--good); background: var(--good-soft);
  border-radius: 8px; padding: 7px 12px; margin-top: 8px; width: fit-content;
}
.auto-note.show { display: inline-flex; animation: panel-in .25s ease; }
.auto-note svg { width: 14px; height: 14px; flex: 0 0 auto; }

.fade-hide { display: none; }

.nav-row { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; }
.back { font-size: 14px; color: var(--muted); cursor: pointer; font-weight: 500; }
.back:hover { color: var(--pine); }

.ticket { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px; min-height: 30px; }
.ticket .chip {
  display: inline-flex; align-items: center;
  font-size: 12.5px; font-weight: 550; color: var(--pine);
  background: var(--accent-soft); border: 1px solid #d3ead9;
  border-radius: 7px; padding: 5px 12px;
  animation: chip-in .2s ease;
}
@keyframes chip-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.escape { font-size: 13.5px; color: var(--muted); }
.escape a { color: var(--pine); font-weight: 600; cursor: pointer; }
.escape a:hover { color: var(--leaf); }
.escape.center { text-align: center; margin-top: 24px; }

#chat-pane cerver-chat { display: block; height: 540px; }

.confirm { text-align: center; padding: 22px 0 8px; }
.confirm .check-icon {
  width: 62px; height: 62px; border-radius: 50%; background: var(--good-soft); color: var(--good);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
  animation: pop-in .45s cubic-bezier(.2,.9,.3,1.4);
}
@keyframes pop-in { from { transform: scale(.3); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.confirm .check-icon svg { width: 30px; height: 30px; }
.confirm h2 { max-width: none; margin-bottom: 10px; }
.confirm .order-ref {
  font-family: var(--mono); font-size: 15px; background: var(--bg);
  border: 1px solid var(--line); border-radius: 8px; display: inline-block;
  padding: 8px 18px; margin: 12px 0 18px; color: var(--pine);
}
.confirm p { color: var(--muted); max-width: 440px; margin: 0 auto 8px; font-size: 15px; }
.agent-ack {
  text-align: left; font-family: var(--mono); font-size: 12.5px; line-height: 1.7;
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  padding: 16px 18px; margin: 4px auto 18px; max-width: 480px;
  white-space: pre-wrap; word-break: break-word;
}

/* ---------- gantt ---------- */
.gantt {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 30px 30px 24px; box-shadow: var(--shadow);
}
.gantt-grid { display: grid; grid-template-columns: minmax(96px, 170px) repeat(5, 1fr); gap: 10px 0; align-items: center; }
.gantt-grid .gh {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; color: var(--muted);
  text-align: center; padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.gantt-grid .gh:first-child { text-align: left; }
.gantt-grid .gl { font-size: 13.5px; font-weight: 600; padding-right: 16px; }
.gantt-grid .gl small { display: block; font-weight: 400; color: var(--muted); font-size: 12px; }
.gbar-track { grid-column: span 5; display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; height: 34px; position: relative; }
.gbar-track::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(to right, var(--line) 1px, transparent 1px);
  background-size: 20% 100%; opacity: .6;
}
.gbar {
  height: 16px; border-radius: 5px; position: relative; z-index: 1;
  background: linear-gradient(90deg, var(--pine), var(--leaf));
  transform: scaleX(0); transform-origin: left;
  transition: transform .8s cubic-bezier(.3,0,.2,1);
}
.gbar.human { background: repeating-linear-gradient(135deg, var(--gold), var(--gold) 6px, #e8bd6a 6px, #e8bd6a 12px); }
.in .gbar { transform: scaleX(1); }
.in .gbar.dl1 { transition-delay: .12s; } .in .gbar.dl2 { transition-delay: .24s; }
.in .gbar.dl3 { transition-delay: .36s; } .in .gbar.dl4 { transition-delay: .48s; }
.in .gbar.dl5 { transition-delay: .6s; }
.gantt-industry { display: flex; align-items: center; gap: 14px; margin-top: 20px; padding-top: 16px; border-top: 1px dashed var(--line); }
.gantt-industry .gl { font-size: 13px; color: var(--muted); flex: 0 1 auto; min-width: 96px; padding-right: 16px; }
.gantt-industry .slow {
  flex: 1; height: 10px; border-radius: 5px;
  background: linear-gradient(90deg, #d7ddd4, #e7ebe4 70%, transparent);
}
.gantt-legend { display: flex; gap: 20px; margin-top: 16px; font-size: 12.5px; color: var(--muted); }
.gantt-legend i { display: inline-block; width: 20px; height: 10px; border-radius: 4px; margin-right: 7px; vertical-align: -1px; }
.gantt-legend .auto i { background: linear-gradient(90deg, var(--pine), var(--leaf)); }
.gantt-legend .hum i { background: repeating-linear-gradient(135deg, var(--gold), var(--gold) 5px, #e8bd6a 5px, #e8bd6a 10px); }

/* ---------- quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 820px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 26px 24px 22px; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: box-shadow .2s ease;
}
.quote:hover { box-shadow: var(--shadow-lift); }
.quote .mark { font-size: 38px; line-height: .6; color: var(--leaf); margin-bottom: 16px; font-weight: 700; }
.quote p { font-size: 15.5px; line-height: 1.55; letter-spacing: -.005em; margin-bottom: 22px; }
.quote .byline { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote .avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: 0 0 auto;
  background: var(--accent-soft); color: var(--pine);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.quote .byline b { display: block; font-size: 14px; }
.quote .byline small { color: var(--muted); font-size: 12.5px; }

/* gantt: compress instead of scroll */
@media (max-width: 700px) {
  .gantt { padding: 20px 16px 18px; }
  .gantt-grid { grid-template-columns: minmax(84px, 120px) repeat(5, 1fr); }
  .gantt-grid .gl { font-size: 12px; padding-right: 10px; }
  .gantt-grid .gl small { display: none; }
  .gantt-grid .gh { font-size: 10px; letter-spacing: .02em; }
  .gbar { height: 12px; }
  .gbar-track { height: 26px; }
}
