@font-face { font-family: "Figtree"; font-weight: 300 900; font-display: swap; src: url(../fonts/figtree-latin-variable-normal.woff2) format("woff2"); }
:root {
  --bg: #F4F1EB; --paper-2: #ECE8E0; --paper-3: #E3DED4;
  --surface: #FFFFFF; --surface-2: #F8F6F2;
  --ink: #17171A; --text: #17171A; --text-2: #46464C; --muted: #7C7C84; --dim: #B4B4BA;
  --line: rgba(23,23,26,.08); --line-2: rgba(23,23,26,.14);
  --accent: #FF6A2B; --accent-ink: #FFFFFF; --accent-soft: #FFEDE4;
  --ok: #2E8B57; --warn: #C98A2E;
  --dark: #17171A; --dark-2: #232327; --dark-text: #F3F3F5; --dark-muted: #A0A0A8; --accent-dark: #E07C52;
  --shadow: 0 1px 2px rgba(23,23,26,.04), 0 14px 34px -14px rgba(23,23,26,.16);
  --shadow-lg: 0 2px 4px rgba(23,23,26,.04), 0 40px 80px -30px rgba(23,23,26,.28);
  --ui: "Figtree", "Segoe UI", system-ui, sans-serif;
  --display: "Figtree", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font: 16px/1.5 var(--ui); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, ul, ol { margin: 0; }
img { display: block; }
.wrap { width: min(1120px, 100% - 48px); margin: 0 auto; }
@media (max-width: 600px) { .wrap { width: calc(100% - 32px); } }

/* ---------- top bar ---------- */
.bar { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(14px); background: rgba(244,241,235,.82); }
.bar .wrap { display: flex; align-items: center; gap: 28px; height: 64px; }
.mark { display: flex; align-items: center; gap: 10px; }
.mark .m { width: 30px; height: 30px; }
.mark .w { height: 19px; width: auto; }
.nav { display: flex; gap: 22px; margin-left: 10px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--muted); padding: 6px 0; border-bottom: 1.5px solid transparent; transition: color .2s var(--ease); }
.nav a:hover, .nav a.on { color: var(--text); }
.nav a.on { border-color: var(--text); }
.bar .side { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 46px; padding: 0 20px; border-radius: 12px; font: 600 15px/1 var(--ui); color: var(--accent-ink); background: var(--accent); border: 0; cursor: pointer; transition: transform .25s var(--ease), background .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); background: #F25A1A; }
.btn.soft { background: rgba(23,23,26,.07); color: var(--text); }
.btn.soft:hover { background: rgba(23,23,26,.11); }
.btn.sm { height: 38px; padding: 0 14px; font-size: 14px; }
.btn.lg { height: 54px; padding: 0 26px; font-size: 16px; }
@media (max-width: 720px) { .nav { gap: 14px; } .bar .side .btn.soft { display: none; } }
@media (max-width: 480px) { .bar .wrap { gap: 16px; } .mark .w { display: none; } .nav { margin-left: 0; gap: 12px; } .nav a { font-size: 14px; } .bar .side .btn.sm { padding: 0 12px; } }

/* ---------- hero ---------- */
.hero { padding: 56px 0 30px; position: relative; }
.hero h1 { font: 800 clamp(38px, 5.8vw, 68px)/1.02 var(--display); letter-spacing: -.035em; max-width: 14ch; text-wrap: balance; }
.hero .lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--text-2); max-width: 52ch; margin-top: 20px; }
.hero .acts { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero .fine { margin-top: 14px; font-size: 14px; color: var(--muted); }
.rise { opacity: 0; transform: translateY(14px); animation: rise .9s var(--ease) forwards; }
.rise.d1 { animation-delay: .1s; } .rise.d2 { animation-delay: .22s; } .rise.d3 { animation-delay: .34s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- the scene: the service board and a phone ---------- */
.scene-wrap { position: relative; margin-top: 44px; }
.scene-fit { position: relative; width: 100%; overflow: hidden; }
.scene { position: absolute; left: 0; top: 0; width: 1120px; height: 620px; transform-origin: 0 0; font-family: var(--ui); }
.scene .grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(23,23,26,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(23,23,26,.055) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 40%, transparent 100%); }

.win { position: absolute; left: 0; top: 30px; width: 872px; height: 560px; border-radius: 16px; background: var(--surface); box-shadow: var(--shadow-lg); overflow: hidden; display: grid; grid-template-rows: 44px 1fr; grid-template-columns: 110px 1fr; grid-template-areas: "title title" "rail main"; }
.win .titlebar { grid-area: title; display: flex; align-items: center; gap: 14px; padding: 0 16px; border-bottom: 1px solid var(--line); }
.win .brand { display: flex; align-items: center; gap: 8px; }
.win .brand img:first-child { width: 22px; height: 22px; }
.win .brand img:last-child { height: 13px; width: auto; }
.win .omni { display: flex; align-items: center; gap: 8px; width: 340px; height: 28px; padding: 0 10px; border-radius: 9px; background: var(--surface-2); color: var(--muted); font-size: 12.5px; }
.win .omni span { flex: 1; }
.win .tb-status { margin-left: auto; display: flex; align-items: center; gap: 12px; font-size: 12.5px; color: var(--muted); }
.win .tb-status .clock { color: var(--text-2); font-weight: 500; font-variant-numeric: tabular-nums; }
.disc { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font: 700 9.5px/1 var(--display); color: var(--ink); background: var(--paper-3); flex: none; }
.win .rail { grid-area: rail; display: flex; flex-direction: column; gap: 2px; padding: 14px 10px; border-right: 1px solid var(--line); }
.win .rail span { position: relative; font-size: 13px; font-weight: 500; color: var(--muted); padding: 7px 10px; border-radius: 8px; }
.win .rail span.active { color: var(--text); font-weight: 600; background: var(--surface-2); }
.win .rail span i { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-style: normal; font-size: 11px; color: var(--muted); }
.win .main { grid-area: main; padding: 18px 16px 0; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.win .page-head { display: flex; align-items: flex-end; gap: 14px; }
.win .page-head h1 { font: 700 22px/1.1 var(--display); letter-spacing: -.3px; }
.win .page-head p { margin-top: 4px; font-size: 12.5px; color: var(--text-2); }
.win .tabs { margin-left: auto; display: flex; gap: 16px; font-size: 12.5px; color: var(--muted); font-weight: 500; }
.win .tabs b { color: var(--text); font-weight: 600; border-bottom: 1.5px solid var(--text); padding-bottom: 2px; }
.win .btn-p { margin-left: 8px; height: 30px; line-height: 30px; padding: 0 12px; border-radius: 8px; background: var(--accent); color: var(--accent-ink); font-weight: 600; font-size: 12.5px; }
.win .board-clip { position: relative; flex: 1; overflow: hidden; }
.sv-board { position: absolute; left: 0; top: 0; height: 100%; display: flex; gap: 10px; transition: transform 1.1s var(--ease); }
.sv-col { position: relative; width: 172px; flex: none; height: 100%; padding: 8px; border-radius: 12px; background: var(--surface-2); }
.sv-col header { display: flex; align-items: baseline; gap: 6px; padding: 2px 4px 6px; }
.sv-col h2 { font: 600 12.5px/1.2 var(--display); color: var(--text); }
.sv-col span { font-size: 11.5px; color: var(--muted); font-variant-numeric: tabular-nums; }
.sv-card { position: absolute; left: 8px; top: 0; width: 156px; display: flex; flex-direction: column; gap: 4px; padding: 6px 8px 8px; border-radius: 10px; background: var(--surface); box-shadow: var(--shadow); transition: transform 1.1s var(--ease), opacity .5s; }
.sv-card.hide { opacity: 0; transform: translate(0, 32px) scale(.96) !important; }
.sv-card .top { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-top: 4px; }
.sv-card .top b { font: 600 12.5px/1.25 var(--display); color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sv-card .who { font-size: 11px; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sv-dot { display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: var(--dim); margin: 0 6px; vertical-align: middle; }
.sv-card .concern { font-size: 11px; line-height: 1.35; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sv-card .foot { display: flex; align-items: center; gap: 6px; margin-top: 2px; font-size: 10.5px; color: var(--muted); }
.sv-card .foot > span:first-child { white-space: nowrap; flex: none; }
.sv-card .flag { color: var(--warn); font-weight: 500; white-space: nowrap; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.sv-card .flag:empty { display: none; }
.sv-card .flag.good { color: var(--ok); }
.sv-card .tech { margin-left: auto; width: 22px; height: 22px; font-size: 9px; }
.sv-card .tech.none { background: transparent; box-shadow: inset 0 0 0 1.5px var(--line-2); }
.sv-card .act { margin-top: 4px; height: 26px; line-height: 26px; border-radius: 7px; text-align: center; font-size: 11px; font-weight: 600; color: var(--accent-ink); background: var(--accent); }
.sv-card .act.soft { background: var(--surface-2); color: var(--text-2); }
.sv-card .act:empty { display: none; }

/* photo tiles: a vehicle picture drawn in SVG */
.photo { position: relative; width: 100%; height: 68px; border-radius: 7px; overflow: hidden; background: #E7E2D9; }
.photo::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 90% 50% at 50% 100%, rgba(23,23,26,.14), transparent 70%); }
.photo svg { position: absolute; left: 6%; top: 10%; width: 88%; height: 84%; }
.car-body { fill: var(--c, #7A7F86); }
.car-glass { fill: #2B2E33; opacity: .9; }
.car-tire { fill: #1D1D20; }
.car-hub { fill: #C9C9CE; }
.car-line { fill: none; stroke: rgba(0,0,0,.25); stroke-width: 1.2; }
.car-light { fill: #F6E7B5; }
.car-shadow { fill: rgba(23,23,26,.22); }
.photo.tall { height: 120px; }
.photo.count::after { content: attr(data-n); position: absolute; right: 6px; bottom: 5px; font: 600 10px/16px var(--ui); color: #fff; background: rgba(23,23,26,.55); padding: 0 6px; border-radius: 5px; }

/* the phone */
.phone { position: absolute; left: 856px; top: 12px; width: 270px; height: 560px; border-radius: 40px; background: #1E1E22; box-shadow: inset 0 0 0 2px #3A3A40, inset 0 0 0 5px #121214, var(--shadow-lg); padding: 12px; z-index: 4; }
.phone .screen { position: relative; width: 100%; height: 100%; border-radius: 30px; background: var(--bg); overflow: hidden; }
.phone .notch { position: absolute; left: 50%; top: 10px; width: 92px; height: 24px; border-radius: 13px; background: #121214; transform: translateX(-50%); z-index: 3; }
.ps { position: absolute; inset: 0; padding: 44px 16px 16px; opacity: 0; transform: translateX(24px); transition: opacity .5s, transform .6s var(--ease); pointer-events: none; }
.ps.on { opacity: 1; transform: none; }
.ph-top { display: flex; flex-direction: column; gap: 1px; }
.ph-top span { font-size: 10.5px; color: var(--muted); }
.ph-top b { font: 700 19px/1.15 var(--display); letter-spacing: -.3px; }
.ph-car { font-size: 11.5px; color: var(--text-2); margin-top: 2px; }
.p-cap { position: absolute; left: 856px; width: 270px; top: 584px; text-align: center; font-size: 13px; font-weight: 500; color: var(--muted); transition: opacity .4s; }
.p-cap.out { opacity: 0; }

/* VIN scan screen */
.cam { position: relative; height: 210px; margin-top: 12px; border-radius: 14px; overflow: hidden; background: #2A2A2E; }
.cam::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 70% at 50% 40%, rgba(255,255,255,.08), transparent 70%); }
.jamb { position: absolute; left: 22px; right: 22px; top: 38px; padding: 8px 10px; border-radius: 3px; background: #F7F5EE; color: #333; transform: rotate(-2deg); box-shadow: 0 6px 14px rgba(0,0,0,.4); }
.jamb .j { height: 3px; border-radius: 2px; background: #C8C4BB; margin: 3px 0; }
.jamb .j.s { width: 60%; } .jamb .j.m { width: 80%; }
.jamb .bars { height: 18px; margin: 6px 0 4px; background: repeating-linear-gradient(90deg, #222 0 2px, transparent 2px 4px, #222 4px 5px, transparent 5px 8px, #222 8px 11px, transparent 11px 13px); }
.jamb code { display: block; font: 600 10.5px/1.2 ui-monospace, "Cascadia Mono", Consolas, monospace; letter-spacing: .6px; color: #111; }
.frame { position: absolute; left: 16px; right: 16px; top: 96px; height: 30px; }
.frame::before, .frame::after { content: ""; position: absolute; width: 14px; height: 14px; border: 2px solid #fff; }
.frame::before { left: 0; top: 0; border-right: 0; border-bottom: 0; }
.frame::after { right: 0; bottom: 0; border-left: 0; border-top: 0; }
.beam { position: absolute; left: 20px; right: 20px; top: 40px; height: 2px; background: var(--accent); box-shadow: 0 0 12px var(--accent); opacity: .9; animation: beam 2.2s var(--ease) infinite; }
@keyframes beam { 0% { top: 40px; } 50% { top: 160px; } 100% { top: 40px; } }
.cam.locked .beam { animation: none; top: 110px; }
.ph-hint { margin-top: 10px; font-size: 11px; color: var(--muted); text-align: center; }
.vin-result { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 12px; border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); transform: translateY(24px); opacity: 0; transition: opacity .5s, transform .6s var(--ease); }
.vin-result.show { opacity: 1; transform: none; }
.vin-result small { display: block; font-size: 10px; color: var(--muted); }
.vin-result code { display: block; font: 600 12px/1.3 ui-monospace, "Cascadia Mono", Consolas, monospace; letter-spacing: .5px; color: var(--text); margin-top: 1px; }
.vin-result b { display: block; font: 700 14px/1.2 var(--display); margin-top: 8px; }
.vin-result span { display: block; font-size: 11px; color: var(--text-2); }
.p-btn { height: 36px; border-radius: 10px; background: var(--accent); color: var(--accent-ink); font: 600 12px/36px var(--ui); text-align: center; transition: transform .18s var(--ease), background .3s; margin-top: 10px; }
.p-btn.soft { background: rgba(23,23,26,.07); color: var(--text); }
.p-btn.press { transform: scale(.96); }
.p-btn.done { background: var(--paper-3); color: var(--text-2); }

/* the customer's approval page */
.line { display: grid; grid-template-columns: 1fr auto; gap: 2px 8px; padding: 10px 0; border-top: 1px solid var(--line); }
.line:first-of-type { border-top: 0; }
.line b { display: block; font: 600 12px/1.25 var(--display); }
.line span { display: block; font-size: 10.5px; color: var(--muted); margin-top: 1px; }
.line em { font-style: normal; font: 600 12px/1.25 var(--ui); font-variant-numeric: tabular-nums; text-align: right; }
.ln-act { grid-column: 1 / -1; display: flex; gap: 6px; margin-top: 6px; }
.ln-act i { flex: 1; height: 26px; line-height: 26px; border-radius: 7px; text-align: center; font-style: normal; font-size: 11px; font-weight: 600; background: rgba(23,23,26,.07); color: var(--text); transition: transform .18s var(--ease); }
.ln-act i.ok { background: var(--accent); color: var(--accent-ink); }
.ln-act i.press { transform: scale(.96); }
.line.yes .ln-act, .line.no .ln-act { display: none; }
.line .state { grid-column: 1 / -1; display: none; font-size: 11px; font-weight: 600; margin-top: 4px; }
.line.yes .state { display: block; color: var(--ok); }
.line.no .state { display: block; color: var(--muted); }
.line.no .state::before { content: "Declined"; }
.line.yes .state::before { content: "Approved"; }
.tot { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0 6px; border-top: 1px solid var(--line-2); font-size: 11.5px; color: var(--text-2); }
.tot b { font: 700 15px/1 var(--display); color: var(--text); font-variant-numeric: tabular-nums; }
.sig { position: relative; height: 44px; margin-top: 6px; border-bottom: 1px solid var(--line-2); }
.sig small { position: absolute; left: 0; bottom: -16px; font-size: 9.5px; color: var(--muted); }
.sig svg { position: absolute; left: 4px; top: 2px; width: 150px; height: 40px; }
.sig path { fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 420; stroke-dashoffset: 420; }
.sig.draw path { animation: draw 1.4s var(--ease) forwards; }
.sig.static path { stroke-dashoffset: 0; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.p-done { font-size: 11px; color: var(--ok); font-weight: 600; text-align: center; margin-top: 10px; opacity: 0; transition: opacity .4s; }
.p-done.show { opacity: 1; }

/* the customer's status page */
.stages { list-style: none; margin: 12px 0 0; padding: 0; }
.stages li { display: flex; align-items: center; gap: 8px; padding: 3px 0; font-size: 11.5px; color: var(--dim); }
.stages li i { width: 8px; height: 8px; border-radius: 50%; background: var(--paper-3); flex: none; }
.stages li.done { color: var(--muted); } .stages li.done i { background: var(--muted); }
.stages li.now { color: var(--text); font-weight: 600; } .stages li.now i { background: var(--accent); }
.p-h { font-size: 10.5px; font-weight: 600; color: var(--muted); margin-top: 14px; }
.p-note { padding: 7px 0; border-top: 1px solid var(--line); }
.p-note:first-of-type { border-top: 0; }
.p-note time { display: block; font-size: 9.5px; color: var(--muted); }
.p-note p { font-size: 11px; line-height: 1.4; color: var(--text); margin-top: 1px; }
.p-photos { display: flex; gap: 6px; margin-top: 6px; }
.p-photos .photo { height: 44px; width: auto; flex: 1; }

/* static phone used in sections */
.phone.static { position: relative; left: auto; top: auto; height: auto; margin: 0 auto; }
.phone.static .screen { height: auto; }
.phone.static .ps { position: relative; opacity: 1; transform: none; padding-bottom: 20px; }
.phone.static .vin-result { position: relative; left: auto; right: auto; bottom: auto; margin-top: 12px; opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) { .rise { animation: none; opacity: 1; transform: none; } .beam { animation: none; } }

/* ---------- sections ---------- */
section.block { padding: 84px 0 0; }
section.block.tight { padding-top: 60px; }
.eyebrow { font-size: 14px; font-weight: 600; color: var(--accent); margin-bottom: 12px; }
h2.h { font: 700 clamp(28px, 3.8vw, 42px)/1.08 var(--display); letter-spacing: -.03em; max-width: 22ch; text-wrap: balance; }
.sub { color: var(--text-2); font-size: 17px; max-width: 54ch; margin-top: 14px; }
.sub b { font-weight: 600; color: var(--text); }
.facts { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; max-width: 54ch; }
.facts li { position: relative; padding-left: 20px; font-size: 15.5px; color: var(--text-2); }
.facts li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.split.flip > :first-child { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 36px; } .split.flip > :first-child { order: 0; } }
.split > * { min-width: 0; }

/* product pictures in sections */
.shot { border-radius: 16px; background: var(--surface); box-shadow: var(--shadow-lg); overflow: hidden; }
.shot .sh-head { display: flex; align-items: baseline; gap: 10px; padding: 16px 18px 12px; }
.shot .sh-head h3 { font: 700 17px/1.2 var(--display); letter-spacing: -.2px; }
.shot .sh-head span { font-size: 12.5px; color: var(--muted); }
.shot .sh-head .r { margin-left: auto; }
.rows { display: flex; flex-direction: column; }
.row { display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; gap: 4px 14px; align-items: center; padding: 11px 18px; border-top: 1px solid var(--line); font-size: 13.5px; }
.row time { font-size: 12.5px; color: var(--muted); font-variant-numeric: tabular-nums; }
.row b { display: block; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.row span { display: block; font-size: 12.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.row .st { font-size: 12.5px; color: var(--text-2); font-weight: 500; white-space: nowrap; }
.row .st.warn { color: var(--warn); } .row .st.ok { color: var(--ok); }
.row .mini { height: 28px; line-height: 28px; padding: 0 10px; border-radius: 7px; font-size: 12px; font-weight: 600; background: var(--accent); color: var(--accent-ink); }
.row .mini.soft { background: rgba(23,23,26,.07); color: var(--text); }
.row.attn { grid-template-columns: minmax(0, 1fr) auto; }
.sh-sub { padding: 14px 18px 6px; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.sh-foot { padding: 12px 18px 16px; font-size: 12.5px; color: var(--muted); border-top: 1px solid var(--line); }
@media (max-width: 480px) { .row { grid-template-columns: 44px minmax(0, 1fr) auto; padding: 10px 14px; } .shot .sh-head, .sh-foot, .sh-sub { padding-left: 14px; padding-right: 14px; } }

/* the walkaround photos */
.walk { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0 18px 18px; }
.walk figure { margin: 0; }
.walk figcaption { font-size: 11.5px; color: var(--muted); margin-top: 5px; }
.odo { position: relative; width: 100%; height: 68px; border-radius: 7px; background: #1C1C1F; overflow: hidden; display: grid; place-items: center; }
.odo b { font: 700 18px/1 ui-monospace, "Cascadia Mono", Consolas, monospace; color: #EDEDF0; letter-spacing: 1px; }
.odo small { position: absolute; left: 10px; bottom: 6px; font-size: 9px; color: #8A8A92; }
.odo i { position: absolute; right: 10px; bottom: 6px; font-style: normal; font-size: 9px; color: #8A8A92; }
.dash { position: relative; width: 100%; height: 68px; border-radius: 7px; background: #1C1C1F; overflow: hidden; display: grid; place-items: center; }
.dash b { font: 700 11px/1 var(--ui); letter-spacing: 1.5px; color: #E8A33A; }
.dash::before { content: ""; position: absolute; left: 12px; right: 12px; bottom: 10px; height: 3px; border-radius: 2px; background: #2E2E33; }
.dash::after { content: ""; position: absolute; left: 12px; bottom: 10px; width: 46%; height: 3px; border-radius: 2px; background: #C9C9CE; }

/* the stage row */
.stage-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 860px) { .stage-cards { grid-template-columns: 1fr; } }
.stage-cards > div { border-radius: 14px; background: var(--surface-2); padding: 12px; }
.stage-cards h4 { display: flex; align-items: baseline; gap: 8px; font: 600 14px/1.2 var(--display); padding: 2px 4px 10px; }
.stage-cards h4 span { font-size: 12px; color: var(--muted); font-weight: 500; }
.stage-cards .sv-card { position: relative; left: auto; top: auto; width: 100%; padding: 8px 10px 10px; transition: none; }
.stage-cards .sv-card .top b { font-size: 14px; }
.stage-cards .sv-card .who, .stage-cards .sv-card .concern { font-size: 12.5px; }
.stage-cards .sv-card .foot { font-size: 11.5px; }
.stage-cards .sv-card .act { height: 32px; line-height: 32px; font-size: 12.5px; }
.stage-cards .photo { height: 110px; }
.stage-cards .sv-card .tech { width: 24px; height: 24px; font-size: 9.5px; }
.stage-list { display: flex; flex-wrap: wrap; gap: 6px 22px; margin-top: 22px; font-size: 15px; color: var(--text-2); font-weight: 500; }
.stage-list span { display: inline-flex; align-items: center; gap: 8px; }
.stage-list span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--paper-3); }
.stage-list span.now::before { background: var(--accent); }

/* estimate builder */
.est { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 2px 12px; padding: 10px 18px; border-top: 1px solid var(--line); align-items: center; font-size: 13.5px; }
.est b { font-weight: 600; }
.est span { grid-column: 1; font-size: 12.5px; color: var(--muted); }
.est em { font-style: normal; color: var(--text-2); font-size: 12.5px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.est strong { font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.est.total { border-top: 1px solid var(--line-2); font-size: 14px; }
.est.total strong { font-size: 16px; }
.est .approved { grid-column: 3; font-size: 11.5px; color: var(--ok); font-weight: 600; text-align: right; }
.est .declined { grid-column: 3; font-size: 11.5px; color: var(--muted); font-weight: 600; text-align: right; }
.est .approved, .est .declined { grid-row: 2; }
.est.head { font-size: 12px; color: var(--muted); border-top: 0; padding-bottom: 4px; }
.sh-actions { display: flex; gap: 8px; padding: 14px 18px 18px; flex-wrap: wrap; }
.sh-actions .mini { height: 32px; line-height: 32px; padding: 0 12px; border-radius: 8px; font-size: 12.5px; font-weight: 600; background: var(--accent); color: var(--accent-ink); }
.sh-actions .mini.soft { background: rgba(23,23,26,.07); color: var(--text); }

/* parts */
.parts .row { grid-template-columns: minmax(0, 1fr) auto auto; }
.parts .row .due { font-size: 12.5px; color: var(--muted); white-space: nowrap; }

/* follow-up: call list and the scorecard ledger */
.ledger { display: flex; flex-direction: column; }
.ledger div { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 10px 18px; border-top: 1px solid var(--line); font-size: 13.5px; }
.ledger div:first-child { border-top: 0; }
.ledger span { color: var(--text-2); }
.ledger b { font-weight: 600; font-variant-numeric: tabular-nums; }
.ledger div.head { font-size: 12px; color: var(--muted); padding-bottom: 4px; }
.ledger div.head b { color: var(--muted); font-weight: 500; }
.two { display: grid; grid-template-columns: 1.35fr 1fr; gap: 16px; }
@media (max-width: 860px) { .two { grid-template-columns: 1fr; } }
.tpl { padding: 12px 18px 18px; }
.tpl .bub { font-size: 12.5px; line-height: 1.45; padding: 10px 12px; border-radius: 12px 12px 12px 4px; background: var(--surface-2); color: var(--text); max-width: 34ch; }
.tpl small { display: block; font-size: 11.5px; color: var(--muted); margin-bottom: 6px; }
.stars { display: inline-flex; gap: 2px; vertical-align: middle; }
.stars i { width: 10px; height: 10px; background: var(--accent); clip-path: polygon(50% 0, 62% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 38% 35%); }
.stars i.off { background: var(--paper-3); }

/* team */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 860px) { .team { grid-template-columns: repeat(2, 1fr); } }
.team > div { padding: 18px 16px; border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; }
.team .disc { width: 40px; height: 40px; font-size: 13px; }
.team .name { display: block; font: 600 15px/1.2 var(--display); }
.team .role { display: block; font-size: 12.5px; color: var(--muted); }
.team p { font-size: 12.5px; color: var(--text-2); margin-top: 2px; }
.pcs { margin-top: 18px; font-size: 15px; color: var(--text-2); max-width: 60ch; }

/* ---------- closing band ---------- */
.cta { margin: 96px 0 0; padding: 0 0 40px; }
.cta .inner { border-radius: 22px; background: var(--surface); box-shadow: var(--shadow-lg); padding: 44px 40px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta h2 { font: 700 clamp(26px, 3.4vw, 38px)/1.1 var(--display); letter-spacing: -.03em; max-width: 22ch; }
.cta p { color: var(--text-2); margin-top: 10px; max-width: 48ch; }
@media (max-width: 600px) { .cta .inner { padding: 30px 22px; } }

footer { background: var(--dark); color: var(--dark-muted); padding: 36px 0 44px; font-size: 14px; }
footer .wrap { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
footer img { height: 18px; width: auto; }
footer a:hover { color: var(--dark-text); }
footer .r { margin-left: auto; }
footer .cp { flex-basis: 100%; font-size: 13px; margin-top: 6px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- plans ---------- */
.page { padding: 70px 0 40px; }
.page h1 { font: 800 clamp(34px, 5vw, 56px)/1.04 var(--display); letter-spacing: -.035em; }
.page .lead { color: var(--text-2); font-size: 18px; margin-top: 14px; max-width: 52ch; }
.plans { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 14px; margin-top: 40px; }
@media (max-width: 720px) { .plans { grid-template-columns: 1fr; } }
.plan { position: relative; display: flex; flex-direction: column; gap: 12px; padding: 24px; border-radius: 16px; background: var(--surface); box-shadow: var(--shadow); animation: rise .6s var(--ease) both; animation-delay: calc(.1s + var(--i) * .08s); }
.plan.on { box-shadow: var(--shadow-lg); }
.plan.locked { background: var(--paper-2); box-shadow: none; }
.plan-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.plan-top b { font: 600 18px/1.2 var(--display); }
.plan-price { font: 700 24px/1 var(--display); color: var(--text); }
.plan-price.soon { font-size: 13px; font-weight: 500; color: var(--muted); }
.plan p { font-size: 13.5px; color: var(--muted); }
.plan ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.plan li { position: relative; padding-left: 20px; font-size: 14px; line-height: 1.4; color: var(--text-2); }
.plan li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 9px; height: 5px; border-left: 2px solid var(--ok); border-bottom: 2px solid var(--ok); transform: rotate(-45deg); }
.plan ul.ghost li { padding: 0; height: 12px; } .plan ul.ghost li::before { display: none; }
.plan ul.ghost i { display: block; height: 6px; border-radius: 3px; background: rgba(23,23,26,.08); }
.plan-foot { margin-top: auto; padding-top: 8px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.plan.on .plan-foot { color: var(--text); }
.plan .btn { margin-top: 6px; }
.plans-note { margin-top: 26px; color: var(--muted); font-size: 14.5px; max-width: 60ch; }

/* ---------- download ---------- */
.dl { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: start; margin-top: 40px; }
@media (max-width: 820px) { .dl { grid-template-columns: 1fr; } }
.dl-card { padding: 28px; border-radius: 16px; background: var(--surface); box-shadow: var(--shadow-lg); }
.dl-card h3 { font: 600 20px/1.2 var(--display); }
.dl-card .ver { color: var(--muted); font-size: 14px; margin-top: 4px; min-height: 20px; }
.dl-card .btn { margin-top: 18px; }
.dl-card .req { margin-top: 18px; font-size: 14px; color: var(--text-2); }
.dl-card .req b { color: var(--text); font-weight: 600; }
.dl-card.quiet { background: var(--paper-2); box-shadow: none; }
.dl-card.quiet p { color: var(--text-2); font-size: 14.5px; margin-top: 6px; }
.dl-card.quiet .btn { margin-top: 14px; }
.warn { margin-top: 10px; font-size: 13.5px; color: var(--muted); }
.warn:empty { display: none; }
