/* Current Connector — marketing site
   Pure monochrome black & white, cohesive with the product. Reserved accents only (a single
   "verified" green used sparingly). One bundled system font stack; no external fonts. */

:root {
  --bg: #f5f5f5;          /* canvas — matches the app's --background */
  --surface: #ffffff;     /* floating cards — matches the app's --card */
  --fg: #141414;          /* near-black ink */
  --fg-soft: #2a2a2a;
  --muted: #6a6a6a;       /* secondary text */
  --faint: #9a9a9a;       /* tertiary / captions */
  --line: #e6e6e6;        /* hairlines */
  --line-strong: #d9d9d9;
  --ink: #111111;         /* inverted surfaces (CTA band, footer) */
  --on-ink: #f4f4f4;
  --ok: #1f9d62;          /* the one reserved accent — "verified" only */
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1140px;
  --font: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Space Grotesk", "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 1px rgba(0,0,0,0.03);
  --shadow: 0 6px 24px -8px rgba(0,0,0,0.12), 0 2px 6px -2px rgba(0,0,0,0.06);
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,0.22), 0 12px 24px -12px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); letter-spacing: -0.025em; line-height: 1.06; font-weight: 700; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

:focus-visible { outline: 2px solid var(--fg); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--fg); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 16px; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 22px; border-radius: 12px; font-weight: 650; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform 0.2s cubic-bezier(0.2,0.8,0.2,1), background 0.18s ease, border-color 0.18s ease, box-shadow 0.22s ease, color 0.18s ease;
}
.btn:active { transform: scale(0.97); transition-duration: 0.06s; }
/* default for ALL buttons: a small arrow that eases forward on hover */
.btn svg { width: 16px; height: 16px; flex: none; transition: transform 0.26s cubic-bezier(0.2,0.8,0.2,1); }
.btn:hover svg { transform: translateX(3px); }

/* IMPORTANT / CTA — a slight rise + slight shadow */
.btn-primary { background: var(--ink); color: var(--on-ink); }
.btn-primary:hover { background: #050505; transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* SUBTLE — gentle fill, the border firms up softly */
.btn-secondary { background: var(--surface); color: var(--fg); border-color: var(--line-strong); }
.btn-secondary:hover { background: #fbfbfb; border-color: var(--faint); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; }
.btn-ghost-ink { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.22); }
.btn-ghost-ink:hover { background: rgba(255,255,255,0.16); }

/* ── Header ────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,245,245,0.72);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; font-size: 16px; }
.brand .mark {
  width: 30px; height: 30px; padding: 6px; border-radius: 9px;
  background: var(--ink); color: #fff;
}
.brand-mark {
  width: 46px;
  height: 30px;
  object-fit: contain;
  background: transparent;
  border: none;
  padding: 0;
  flex: none;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links .link { padding: 9px 13px; border-radius: 9px; color: var(--muted); font-weight: 550; font-size: 15px; transition: color 0.15s ease, background 0.15s ease; }
.nav-links .link:hover { color: var(--fg); background: rgba(0,0,0,0.04); }
.nav-cta { margin-left: 8px; }

/* ── Section rhythm ────────────────────────────────────────────────────── */
section { padding: 96px 0; }
.alt { background: linear-gradient(180deg, #fff 0%, #fafafa 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 99px; background: var(--fg); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin: 16px 0 14px; }
.section-head .lead { color: var(--muted); font-size: 18px; }
.lead { font-size: 18px; line-height: 1.6; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero { padding: 56px 0 80px; overflow: hidden; }
.hero-centered { max-width: 840px; margin: 0 auto; text-align: center; }
.hero-centered { max-width: 900px; }
.hero-centered h1 { font-size: clamp(26px, 5.2vw, 56px); font-weight: 700; line-height: 1.06; letter-spacing: -0.035em; margin: 18px 0 22px; text-wrap: balance; }
.hero-centered .lead { color: var(--muted); max-width: 620px; margin: 0 auto; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 14px; }
.hero-centered .hero-cta { justify-content: center; }
.hero-note { color: var(--faint); font-size: 13.5px; }
.btn-lg { height: 54px; padding: 0 26px; font-size: 16px; border-radius: 13px; }

/* ── Bento grid (B&W product cells) ─────────────────────────────────────── */
.bento { margin-top: 60px; display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 1fr; gap: 16px; }
.cell { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; min-width: 0; transition: box-shadow 0.25s ease; will-change: transform; }
.cell:hover { box-shadow: var(--shadow-lg); }
.cell.donut    { grid-column: 1 / 5;  grid-row: 1; }
.cell.request  { grid-column: 5 / 9;  grid-row: 1; }
.cell.verified { grid-column: 9 / 13; grid-row: 1; }
.cell.project  { grid-column: 1 / 9;  grid-row: 2; padding: 0; overflow: hidden; }
.cell.avail    { grid-column: 9 / 13; grid-row: 2; }
.cell-head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 14px; }
.cell-head > span:first-child { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }
.cell-sub { font-size: 11px; color: var(--faint); }
.tag { font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 99px; background: #f0f0f0; color: var(--muted); white-space: nowrap; }
.tag.ok { background: rgba(31,157,98,0.1); color: var(--ok); }
/* donut */
.donut-wrap { position: relative; display: grid; place-items: center; margin: 6px 0 18px; }
.donut-num { position: absolute; text-align: center; }
.donut-num b { display: block; font-size: 30px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.donut-num small { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.legend { list-style: none; margin: auto 0 0; padding: 0; display: grid; gap: 10px; }
.legend li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--fg-soft); }
.legend li b { margin-left: auto; font-weight: 700; }
.legend .dot { width: 9px; height: 9px; border-radius: 99px; flex: none; }
.legend .d1 { background: #c4c4c4; } .legend .d2 { background: var(--ink); } .legend .d3 { background: #d99a2b; }
/* lines (request + profile) */
.line { display: flex; align-items: center; gap: 11px; padding: 9px 0; }
.line + .line { border-top: 1px solid var(--line); }
.line .av { position: relative; overflow: hidden; width: 36px; height: 36px; border-radius: 99px; background: #ececec; flex: none; display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 700; font-family: var(--font-display); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14), var(--shadow-sm); }
.line .av img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.line .av.lg { width: 42px; height: 42px; font-size: 14px; }
.av.c-indigo, .ph-av.c-indigo { background: linear-gradient(140deg, #5b6bb0, #3f4a85); }
.av.c-teal,   .ph-av.c-teal   { background: linear-gradient(140deg, #3a8a7d, #2a6b60); }
.av.c-rose,   .ph-av.c-rose   { background: linear-gradient(140deg, #c2708a, #9e506b); }
.av.c-amber,  .ph-av.c-amber  { background: linear-gradient(140deg, #d99a2b, #b97d12); }
.line .who { min-width: 0; flex: 1; }
.line .nm { font-size: 13.5px; font-weight: 650; }
.line .meta { font-size: 11.5px; color: var(--faint); }
.mini { font-size: 11.5px; font-weight: 700; padding: 7px 12px; border-radius: 9px; background: var(--ink); color: var(--on-ink); white-space: nowrap; }
.mini.ghost { background: transparent; color: var(--muted); border: 1px solid var(--line-strong); }
.stars { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; }
.stars svg { width: 15px; height: 15px; color: #e0a82e; }
/* company verified (checklist) */
.checklist { list-style: none; margin: 4px 0 auto; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--fg-soft); }
.checklist .ck { width: 20px; height: 20px; flex: none; border-radius: 99px; background-color: var(--ok); background-repeat: no-repeat; background-position: center; background-size: 12px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E"); }
/* donut footer */
.cell-foot { display: flex; align-items: baseline; justify-content: space-between; margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--line); }
.cell-foot span { font-size: 12px; color: var(--muted); }
.cell-foot b { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
/* mini project view (map + tabs) */
.cell.project { flex-direction: row; }
.proj-map { position: relative; width: 40%; min-width: 150px; background: #f0f0ef; }
.map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.proj-body { flex: 1; min-width: 0; padding: 22px; display: flex; flex-direction: column; }
.proj-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.025em; margin-top: 2px; }
.proj-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 6px 0 16px; }
.proj-tabs { display: flex; gap: 18px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.proj-tabs span { font-size: 12.5px; font-weight: 600; color: var(--faint); padding: 6px 0; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.proj-tabs span.on { color: var(--fg); border-bottom-color: var(--ink); }
.proj-stats { display: flex; gap: 26px; margin-top: auto; }
.proj-stats b { font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.proj-stats small { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }
.tag.dot-tag::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 99px; background: var(--ok); margin-right: 5px; vertical-align: middle; }
/* staffing proportion bar */
.staff-bar { margin: 2px 0 18px; }
.staff-bar-head { display: flex; justify-content: space-between; align-items: baseline; font-size: 12px; margin-bottom: 8px; }
.staff-bar-head span { color: var(--muted); }
.staff-bar-head b { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
.bar { height: 9px; border-radius: 99px; background: #ededed; overflow: hidden; }
.bar > span { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, #141414 0%, #1f9d62 100%); }

/* ── Product promo grid (Picktime-style cards + floating widgets) ───────── */
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.promo { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform 0.25s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.25s ease; }
.promo:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.promo::before { content: ""; position: absolute; inset: 0; background: radial-gradient(115% 75% at 0% 0%, var(--tint), transparent 55%); pointer-events: none; }
.promo > * { position: relative; }
.promo.t-blue  { --tint: rgba(91,107,176,0.18); }
.promo.t-green { --tint: rgba(31,157,98,0.15); }
.promo.t-amber { --tint: rgba(217,154,43,0.18); }
.promo.t-rose  { --tint: rgba(194,112,138,0.18); }
.promo-head { padding: 34px 30px 0; text-align: center; }
.promo-head h3 { font-size: 22px; margin-bottom: 9px; }
.promo-head p { color: var(--muted); font-size: 14px; line-height: 1.55; max-width: 330px; margin: 0 auto 18px; }
.promo-art { position: relative; flex: 1; min-height: 178px; margin-top: 22px; padding: 22px 26px 28px; display: flex; align-items: center; justify-content: center;
  background-image: radial-gradient(var(--line) 1px, transparent 1px); background-size: 18px 18px; background-position: center; }
.pop { width: 100%; max-width: 320px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 14px; }
.pop .line { padding: 8px 0; }
.pop .line + .line { border-top: 1px solid var(--line); }
.pop-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.pop-ttl { font-size: 13px; font-weight: 700; }
/* agreement widget */
.doc-line { height: 7px; border-radius: 99px; background: #efefef; margin-bottom: 8px; }
.doc-line.short { width: 60%; }
.sign { display: flex; align-items: center; gap: 12px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.sig { width: 70px; height: 24px; flex: none; }
.sign .nm { font-size: 13px; font-weight: 650; }
.sign .meta { font-size: 11px; color: var(--faint); }
/* dispatch widget */
.pop-mapstrip { margin: -14px -14px 0; height: 60px; border-radius: 14px 14px 0 0; overflow: hidden; }
.pop-mapstrip svg { width: 100%; height: 100%; display: block; }
.pop-pad { padding-top: 12px; }
/* invoice widget */
.inv-row { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--fg-soft); padding: 8px 0; border-top: 1px solid var(--line); }
.inv-row b { font-family: var(--font-display); font-weight: 700; }
.inv-row.total { border-top: 1.5px solid var(--line-strong); margin-top: 2px; }
.inv-row.total b { font-size: 15px; }

/* ── CTA — cross-platform with phone mockups ───────────────────────────── */
.cta { padding: 32px 0 100px; }
.cta-inner { position: relative; display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 16px; background: linear-gradient(180deg, #f4f4f3, #ededec); border: 1px solid var(--line); border-radius: 32px; padding: 52px 36px; overflow: hidden; }
.cta-center { text-align: center; padding: 0 8px; }
.cta-chip { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 650; padding: 7px 14px; border-radius: 99px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.cta-chip svg { width: 15px; height: 15px; }
.cta-center h2 { font-size: clamp(27px, 4vw, 44px); margin-bottom: 14px; }
.cta-center > p { color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 430px; margin: 0 auto 26px; }
.cta-actions { display: flex; justify-content: center; margin-bottom: 22px; }
.store-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
/* phone mockups */
.phone { width: 212px; flex: none; }
.phone-l { transform: rotate(-6deg); }
.phone-r { transform: rotate(6deg); }
.phone-frame { position: relative; border-radius: 38px; background: #0d0d0d; padding: 9px; box-shadow: var(--shadow-lg); }
.phone-notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 76px; height: 17px; border-radius: 0 0 11px 11px; background: #0d0d0d; z-index: 2; }
.phone-screen { border-radius: 30px; background: var(--surface); overflow: hidden; aspect-ratio: 9 / 18.5; }
.ph-stat { display: flex; align-items: center; justify-content: space-between; padding: 10px 18px 4px; font-size: 11px; font-weight: 700; }
.ph-sig { width: 24px; height: 9px; border-radius: 3px; background: #d8d8d8; }
.ph-pad { padding: 6px 14px 14px; }
.ph-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.ph-search { display: flex; align-items: center; gap: 6px; height: 30px; padding: 0 10px; border-radius: 9px; background: #f1f1f1; color: var(--faint); font-size: 9.5px; font-weight: 600; margin-bottom: 8px; }
.ph-search svg { width: 12px; height: 12px; flex: none; }
.ph-line { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.ph-line:last-child { border-bottom: none; }
.ph-line .ph-av { width: 24px; height: 24px; }
.ph-who { flex: 1; min-width: 0; }
.ph-nm { font-size: 9.5px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ph-meta { font-size: 8px; color: var(--faint); }
.ph-pill { font-size: 7.5px; font-weight: 700; padding: 3px 7px; border-radius: 99px; background: rgba(217,154,43,0.18); color: #a8761a; flex: none; }
.ph-req { font-size: 8.5px; font-weight: 700; padding: 4px 8px; border-radius: 7px; background: var(--ink); color: var(--on-ink); flex: none; }
.ph-terms { margin: 9px 0 4px; }
.ph-term { display: flex; align-items: center; justify-content: space-between; font-size: 9px; padding: 5px 0; border-bottom: 1px solid var(--line); }
.ph-term:last-child { border-bottom: none; }
.ph-term span { color: var(--muted); }
.ph-term b { font-size: 9.5px; font-weight: 700; }
.ph-card { display: flex; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 11px; padding: 8px; margin-bottom: 9px; }
.ph-av { width: 26px; height: 26px; border-radius: 99px; flex: none; background: #e2e2e2; }
.ph-tx { flex: 1; min-width: 0; display: grid; gap: 5px; }
.ph-tx i { height: 6px; border-radius: 99px; background: #e6e6e6; }
.ph-tx i.s { width: 60%; }
.ph-mini { width: 20px; height: 20px; border-radius: 6px; background: var(--ink); flex: none; }
.ph-btn { margin-top: 13px; height: 36px; border-radius: 11px; background: var(--ink); color: var(--on-ink); display: grid; place-items: center; font-size: 12.5px; font-weight: 650; }
@media (max-width: 940px) {
  .cta-inner { grid-template-columns: 1fr; padding: 44px 24px; }
  .phone-l, .phone-r { display: none; }
}

/* ── Pricing (contact-us, dark card) ───────────────────────────────────── */
.pricing { padding-top: 24px; }
.pricing-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; max-width: 1000px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: 28px; padding: 48px 52px; box-shadow: var(--shadow); }
.pricing-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 85% at 100% 0%, rgba(31,157,98,0.10), transparent 55%); pointer-events: none; }
.pricing-card > * { position: relative; }
.beta-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 6px 13px; border-radius: 99px; background: rgba(31,157,98,0.12); color: var(--ok); margin-bottom: 18px; }
.beta-badge::before { content: ""; width: 6px; height: 6px; border-radius: 99px; background: var(--ok); }
.pricing-copy h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }
.pricing-copy > p { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 0 0 24px; }
.pricing-copy .cta-actions { margin-bottom: 14px; }
.pricing-fine { color: var(--faint); font-size: 13px; margin: 0; }
/* art: rotating "free beta" seal + founders cluster */
.pricing-art { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.seal { width: 208px; height: 208px; }
.seal svg { width: 100%; height: 100%; overflow: visible; }
.seal-spin { animation: sealspin 26s linear infinite; transform-origin: 100px 100px; }
@keyframes sealspin { to { transform: rotate(360deg); } }
.seal-text { font-family: var(--font-display); font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; fill: var(--muted); }
.founders {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: min(100%, 330px);
  padding: 18px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(250, 250, 248, 0.78);
  box-shadow: var(--shadow-sm);
}
.founder-avs { display: flex; }
.founder-avs .av { width: 38px; height: 38px; border-radius: 99px; overflow: hidden; border: 2.5px solid var(--surface); background: #e2e2e2; margin-left: -11px; box-shadow: var(--shadow-sm); }
.founder-avs .av:first-child { margin-left: 0; }
.founder-avs .av img { width: 100%; height: 100%; object-fit: cover; }
.founder-logo-card {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 94px;
  padding: 9px 16px;
  border-radius: 15px;
  background: var(--surface);
}
.founder-logo { width: clamp(172px, 18vw, 230px); height: auto; }
.founders-txt { font-size: 12px; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.chips span { font-size: 11px; font-weight: 600; padding: 5px 10px; border-radius: 99px; border: 1px solid var(--line); color: var(--fg-soft); }
/* availability */
.days { display: flex; gap: 6px; margin-bottom: 12px; }
.days span { flex: 1; text-align: center; font-size: 11px; font-weight: 700; color: var(--faint); padding: 7px 0; border-radius: 8px; background: #f5f5f5; }
.days span.on { background: var(--ink); color: var(--on-ink); }
.slot { font-size: 13px; font-weight: 600; padding: 10px 12px; border-radius: 10px; border: 1px solid var(--line); margin-bottom: 8px; color: var(--fg-soft); }
.slot.on { background: var(--ink); color: var(--on-ink); border-color: var(--ink); }
/* availability: rate + travel-radius */
.avail-meta { display: flex; gap: 14px; margin: 16px 0 14px; }
.meta-stat { flex: 1; min-width: 0; }
.meta-stat small { display: block; font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.meta-stat b { font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: -0.025em; }
.meta-stat b i { font-style: normal; font-size: 12px; font-weight: 600; color: var(--muted); margin-left: 1px; }
.radius-map-wrap { position: relative; margin-top: auto; height: 120px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.radius-map { position: absolute; inset: 0; width: 100%; height: 100%; }
.radius-tag { position: absolute; left: 10px; bottom: 10px; font-size: 11px; font-weight: 650; padding: 4px 9px; border-radius: 99px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }

/* hero entrance */
.rise { opacity: 0; transform: translateY(16px); animation: rise 0.7s cubic-bezier(0.2,0.7,0.2,1) forwards; }
.rise.d1 { animation-delay: 0.06s; } .rise.d2 { animation-delay: 0.12s; }
.rise.d3 { animation-delay: 0.18s; } .rise.d4 { animation-delay: 0.26s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ── The product shot (hand-built dashboard, monochrome) ───────────────── */
.shot-wrap { position: relative; }
.shot {
  position: relative; border-radius: 18px; background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  overflow: hidden; opacity: 0; transform: translateY(24px) scale(0.985);
  animation: rise 0.9s cubic-bezier(0.2,0.7,0.2,1) 0.2s forwards;
}
.shot-bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; border-bottom: 1px solid var(--line); background: #fcfcfc; }
.shot-bar i { width: 10px; height: 10px; border-radius: 99px; background: var(--line-strong); }
.shot-bar span { margin-left: 8px; font-size: 12px; color: var(--faint); }
.shot-img { display: block; width: 100%; height: auto; }
.shot-body { display: grid; grid-template-columns: 56px 1fr; min-height: 320px; }
.shot-rail { border-right: 1px solid var(--line); padding: 14px 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.shot-rail .logo { width: 30px; height: 30px; border-radius: 9px; background: var(--ink); color: #fff; padding: 6px; }
.shot-rail .dot { width: 22px; height: 22px; border-radius: 7px; background: #ededed; }
.shot-rail .dot.on { background: #e2e2e2; box-shadow: inset 0 0 0 1.5px #cfcfcf; }
.shot-main { padding: 18px; }
.shot-title { font-size: 15px; font-weight: 800; letter-spacing: -0.02em; }
.shot-sub { font-size: 11px; color: var(--faint); margin-bottom: 14px; }
.shot-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 12px; }
.shot-card { border: 1px solid var(--line); border-radius: 12px; padding: 14px; background: #fff; }
.shot-ring { display: flex; align-items: center; gap: 14px; }
.shot-ring .num { font-size: 13px; }
.shot-ring .num b { display: block; font-size: 20px; letter-spacing: -0.02em; }
.shot-ring .num small { color: var(--muted); font-size: 11px; }
.kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.kpi { border: 1px solid var(--line); border-radius: 10px; padding: 10px; }
.kpi b { font-size: 18px; letter-spacing: -0.02em; }
.kpi span { display: block; font-size: 10.5px; color: var(--muted); margin-top: 2px; }
.shot-rows { margin-top: 12px; display: grid; gap: 8px; }
.row { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 10px; padding: 9px 11px; }
.row .av { width: 26px; height: 26px; border-radius: 99px; background: #ececec; flex: none; }
.row .nm { font-size: 12px; font-weight: 650; }
.row .meta { font-size: 10.5px; color: var(--faint); }
.row .pill { margin-left: auto; font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 99px; background: #f0f0f0; color: var(--muted); }
.row .pill.ok { background: rgba(31,157,98,0.1); color: var(--ok); }

/* floating accent chips around the shot */
.chip {
  position: absolute; background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow); padding: 10px 13px; font-size: 12px; font-weight: 650;
  display: flex; align-items: center; gap: 8px; z-index: 2;
}
.chip svg { width: 15px; height: 15px; }
.chip.tl { top: -16px; left: -18px; }
.chip.br { bottom: -16px; right: -16px; }
.chip .ok { color: var(--ok); }

/* ── Split (problem / solution) ────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.panel { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform 0.25s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.25s ease; }
.panel:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.panel.problem { background: #fafafa; }
.panel.solution { overflow: hidden; border-color: var(--line-strong); box-shadow: var(--shadow); }
.panel.solution::before { content: ""; position: absolute; inset: 0; background: radial-gradient(110% 70% at 100% 0%, rgba(31,157,98,0.10), transparent 55%); pointer-events: none; }
.panel.solution > * { position: relative; }
.panel-head { display: flex; align-items: center; gap: 11px; margin-bottom: 20px; }
.panel-head h3 { margin: 0; font-size: 18px; }
.panel-ico { width: 34px; height: 34px; border-radius: 10px; flex: none; display: grid; place-items: center; }
.panel-ico svg { width: 18px; height: 18px; }
.panel-ico.bad { background: #ededed; color: var(--faint); }
.panel-ico.good { background: rgba(31,157,98,0.13); color: var(--ok); }
.panel ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.panel li { position: relative; padding-left: 30px; color: var(--fg-soft); font-size: 15px; }
.panel li::before { content: ""; position: absolute; left: 0; top: 3px; width: 19px; height: 19px; border-radius: 99px; background-repeat: no-repeat; background-position: center; }
.panel.problem li::before { background-color: #e7e7e7; background-size: 9px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M6 6 18 18M18 6 6 18'/%3E%3C/svg%3E"); }
.panel.solution li::before { background-color: var(--ok); background-size: 11px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E"); }

/* ── Features ──────────────────────────────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform 0.22s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.22s ease, border-color 0.22s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.feature .icon { width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(145deg, #2c2c2c, #0c0c0c); color: #fff; display: grid; place-items: center; margin-bottom: 18px; box-shadow: 0 5px 12px -5px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08); transition: transform 0.28s cubic-bezier(0.2,0.8,0.2,1); }
.feature:hover .icon { transform: scale(1.09) translateY(-2px); }
.feature .icon svg { width: 21px; height: 21px; }
.feature h3 { font-size: 17px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* ── Steps ─────────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { position: relative; padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step .num { width: 38px; height: 38px; border-radius: 11px; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 16px; margin-bottom: 16px; }
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ── Trust ─────────────────────────────────────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.trust-card { display: flex; gap: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.trust-card .badge { width: 46px; height: 46px; flex: none; border-radius: 12px; background: #f1f1f1; color: var(--fg); display: grid; place-items: center; }
.trust-card .badge svg { width: 22px; height: 22px; }
.trust-card h3 { font-size: 17px; margin-bottom: 8px; }
.trust-card p { color: var(--muted); font-size: 14.5px; }

/* ── CTA band (inverted) ───────────────────────────────────────────────── */
.cta-band { background: var(--ink); color: var(--on-ink); }
.cta-band .inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(28px, 4vw, 44px); color: #fff; }
.cta-band .lead { color: rgba(244,244,244,0.7); margin: 16px 0 28px; }
.cta-band .hero-cta { justify-content: center; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer { background: #fafafa; border-top: 1px solid var(--line); padding: 64px 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 320px; margin: 14px 0 18px; }
.badges { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge { display: inline-flex; align-items: center; gap: 14px; flex: none; border: 1px solid var(--line-strong); border-radius: 13px; padding: 12px 22px 12px 18px; background: var(--surface); transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.store-badge:hover { border-color: var(--faint); box-shadow: var(--shadow-sm); }
.store-badge svg { flex: none; width: 22px; height: 22px; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.3; white-space: nowrap; }
.store-badge small { font-size: 10px; color: var(--muted); }
.store-badge strong { font-size: 14px; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); margin-bottom: 14px; font-weight: 700; }
.footer-col a { display: block; color: var(--muted); font-size: 14px; padding: 5px 0; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--faint); font-size: 13px; }
.placeholder-tag { font-size: 10px; border: 1px dashed var(--line-strong); border-radius: 6px; padding: 1px 6px; margin-left: 6px; color: var(--faint); }
.o3-link { color: var(--muted); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.o3-link:hover { color: var(--fg); }
.maker-lockup {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-weight: 650;
}
.maker-lockup img {
  height: 22px;
  width: auto;
  background: transparent;
  border: none;
  padding: 0;
}

/* ── Scroll reveal ─────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2,0.7,0.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ── Product showcase (alternating real screenshots) ───────────────────── */
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 100px; }
.feat-row:last-child { margin-bottom: 0; }
.feat-row.reverse .feat-shot { order: 2; }
.feat-copy h3 { font-size: clamp(23px, 3vw, 31px); margin: 14px 0 16px; }
.feat-copy > p { color: var(--muted); font-size: 17px; line-height: 1.62; }
.ticks { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 13px; }
.ticks li { position: relative; padding-left: 30px; color: var(--fg-soft); font-size: 15px; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 19px; height: 19px; border-radius: 99px;
  background-color: var(--ink);
  -webkit-mask: center / 12px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E");
          mask: center / 12px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E");
}
/* the showcase shots are static (no hero entrance) */
.feat-shot .shot { opacity: 1; transform: none; animation: none; box-shadow: var(--shadow-lg); }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 40px 22px 0; font-size: 17px; font-weight: 650; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 19px; font-size: 24px; font-weight: 300; line-height: 1; color: var(--muted); }
.faq details[open] summary::after { content: "\2212"; }
.faq details > p { color: var(--muted); font-size: 15.5px; line-height: 1.62; padding: 0 40px 22px 0; margin: 0; }
.faq a { text-decoration: underline; text-underline-offset: 2px; }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 940px) {
  .hero { padding: 24px 0 48px; }
  .pricing-card { grid-template-columns: 1fr; gap: 30px; text-align: center; padding: 46px 34px; }
  .pricing-copy .cta-actions { justify-content: center; }
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .cell.donut, .cell.request, .cell.verified, .cell.project, .cell.avail { grid-column: auto; grid-row: auto; }
  .cell.donut, .cell.project { grid-column: 1 / 3; }
  .features, .steps { grid-template-columns: 1fr 1fr; }
  .split, .trust-grid, .footer-top { grid-template-columns: 1fr; }
  .footer-top { gap: 28px; }
  .feat-row { grid-template-columns: 1fr; gap: 28px; margin-bottom: 64px; }
  .feat-row.reverse .feat-shot { order: 0; }
}
@media (max-width: 600px) {
  section { padding: 52px 0; }
  .nav-links .link { display: none; }
  .hero { padding: 16px 0 40px; }
  .hero-centered h1 { margin: 14px 0 16px; }
  .hero-centered .lead { font-size: 16px; line-height: 1.55; }
  .bento { grid-template-columns: 1fr; gap: 12px; }
  .promo-grid { grid-template-columns: 1fr; }
  .cell.donut, .cell.project { grid-column: auto; }
  .cell.project { flex-direction: column; }
  .proj-map { width: auto; height: 150px; }
  .features, .steps { grid-template-columns: 1fr; }
  .shot-body { grid-template-columns: 48px 1fr; }
  .shot-grid { grid-template-columns: 1fr; }
  .chip.tl, .chip.br { display: none; }
  /* keep the two hero CTAs on one line (drop the arrows + shrink to fit) */
  .hero-cta { flex-wrap: nowrap; gap: 10px; }
  .hero-cta .btn-lg { height: 48px; padding: 0 16px; font-size: 14px; }
  .hero-cta .btn-lg svg { display: none; }
  /* tidy the pricing card + seal on phones */
  .pricing-card { padding: 36px 22px; gap: 22px; }
  .seal { width: 164px; height: 164px; }
  .founders { width: 100%; padding: 15px 16px 17px; }
  .founder-logo-card { min-height: 82px; padding: 8px 12px; }
  .founder-logo { width: 184px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .rise, .shot, .reveal { opacity: 1 !important; transform: none !important; }
}
