/* Geodesix Public Marketing Site · shared wireframe styles (grayscale, layout only) */
:root {
  --line: #c9c9c9;
  --line-strong: #9a9a9a;
  --ink: #2b2b2b;
  --muted: #6f6f6f;
  --faint: #9a9a9a;
  --panel: #f4f4f4;
  --panel-2: #ececec;
  --radius: 6px;
  --page-w: 1080px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink); background: #fff; font-size: 14px; line-height: 1.45;
  display: flex; flex-direction: column; min-height: 100vh;
}
a { color: inherit; }

/* ---------- Primitives (shared with the dashboard wireframes) ---------- */
.btn { display: inline-flex; align-items: center; gap: 7px; border: 1.4px solid var(--ink); background: #fff; color: var(--ink); border-radius: var(--radius); padding: 7px 14px; font-size: 13px; cursor: pointer; font-family: inherit; font-weight: 600; text-decoration: none; }
.btn:hover { background: var(--panel); }
.btn.primary { background: var(--ink); color: #fff; }
.btn.primary:hover { background: #000; }
.btn.ghost { border-color: transparent; font-weight: 500; }
.btn.ghost:hover { background: var(--panel); }
.btn.sm { padding: 4px 9px; font-size: 12px; }
.btn.lg { padding: 10px 20px; font-size: 14.5px; }
.btn.block { width: 100%; justify-content: center; }
.btn[disabled], .btn.disabled { opacity: .4; pointer-events: none; }

.card { border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.card.pad { padding: 18px; }
.grid { display: grid; gap: 16px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px){ .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }
a.card { text-decoration: none; }
a.card:hover, .clickable:hover { box-shadow: 0 2px 0 var(--line-strong); }

.badge { display: inline-flex; align-items: center; font-size: 11px; font-weight: 600; border: 1px solid var(--line-strong); border-radius: 20px; padding: 1px 9px; color: var(--muted); white-space: nowrap; }
.badge.solid { background: var(--panel-2); }
.chip { display: inline-flex; align-items: center; font-size: 12px; border: 1px solid var(--line); border-radius: 20px; padding: 3px 11px; cursor: pointer; color: var(--muted); background: #fff; font-family: inherit; text-decoration: none; }
.chip:hover { background: var(--panel); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.input, .select { width: 100%; border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 8px 11px; font-family: inherit; font-size: 13px; background: #fff; color: var(--ink); }
.input::placeholder { color: var(--faint); }
textarea.input { resize: vertical; }
.label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; color: var(--muted); margin-bottom: 5px; }

.ph { border: 1.5px dashed var(--line-strong); border-radius: var(--radius); display: grid; place-items: center; color: var(--faint); font-size: 12px; letter-spacing: .5px; text-transform: uppercase; text-align: center; padding: 10px; background: repeating-linear-gradient(45deg,#fbfbfb,#fbfbfb 8px,#f3f3f3 8px,#f3f3f3 16px); }

.link { text-decoration: underline; text-underline-offset: 2px; cursor: pointer; color: inherit; }
.link:hover { color: #000; }
.muted { color: var(--muted); }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.section-h { font-size: 16px; font-weight: 700; margin: 30px 0 14px; }
.sub-h { font-size: 11px; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); font-weight: 600; margin: 0 0 10px; }

.tabs { display: inline-flex; gap: 4px; border: 1px solid var(--line); border-radius: 8px; padding: 3px; background: #fff; }
.tab { border: 0; background: transparent; font-family: inherit; font-size: 12.5px; font-weight: 600; color: var(--muted); padding: 6px 14px; border-radius: var(--radius); cursor: pointer; text-decoration: none; }
.tab.active { background: var(--ink); color: #fff; }

.stepbar { display: flex; align-items: center; gap: 8px; margin-bottom: 26px; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 9px; text-decoration: none; color: inherit; }
.step .dot { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; border: 1.5px solid var(--line-strong); color: var(--muted); background: #fff; }
.step.done .dot, .step.current .dot { background: var(--ink); color: #fff; border-color: var(--ink); }
.step .stxt { font-size: 13px; color: var(--muted); }
.step.current .stxt { color: var(--ink); font-weight: 700; }
.step-sep { width: 30px; height: 1px; background: var(--line-strong); }

/* ---------- Marketing header ---------- */
.siteheader { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94); backdrop-filter: blur(4px); }
.sh-inner { max-width: var(--page-w); margin: 0 auto; display: flex; align-items: center; gap: 22px; padding: 12px 28px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.brand .logo { width: 30px; height: 30px; border: 1.5px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 13px; flex: none; }
.brand .name { font-weight: 700; font-size: 15px; letter-spacing: .2px; }
.brand .name small { display: block; font-weight: 400; font-size: 10px; color: var(--faint); letter-spacing: .5px; text-transform: uppercase; }
.sh-nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.sh-link { padding: 7px 12px; border-radius: var(--radius); font-size: 13.5px; text-decoration: none; color: var(--muted); }
.sh-link:hover { background: var(--panel); color: var(--ink); }
.sh-link.active { color: var(--ink); font-weight: 700; box-shadow: inset 0 -2px 0 var(--ink); border-radius: var(--radius) var(--radius) 0 0; }
.sh-actions { display: flex; align-items: center; gap: 8px; }
@media (max-width: 720px){ .sh-inner { flex-wrap: wrap; } .sh-nav { order: 3; width: 100%; } }

/* ---------- Page body ---------- */
main.site { flex: 1; width: 100%; }
.wrap { max-width: var(--page-w); margin: 0 auto; padding: 0 28px; }
.wrap.narrow { max-width: 720px; }
.wrap.tight { max-width: 560px; }
.mkt-section { padding: 44px 0; }
.mkt-section.first { padding-top: 36px; }
.mkt-h { margin: 0 0 6px; font-size: 26px; }
.mkt-sub { margin: 0 0 24px; color: var(--muted); font-size: 14.5px; max-width: 620px; }

/* Audience toggle band */
.audienceband { border-bottom: 1px solid var(--line); background: #fafafa; }
.audienceband .inner { max-width: var(--page-w); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 12px 28px; }
.audienceband .lab { font-size: 13px; font-weight: 600; color: var(--muted); }

/* Hero */
.hero { padding: 60px 0 50px; border-bottom: 1px solid var(--line); background: repeating-linear-gradient(-45deg,#ffffff,#ffffff 14px,#fafafa 14px,#fafafa 28px); }
.hero h1 { margin: 14px 0 0; font-size: 42px; line-height: 1.12; letter-spacing: -.5px; max-width: 720px; }
.hero h1 .accent { text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 6px; }
.hero .lede { margin: 18px 0 0; font-size: 17px; line-height: 1.55; color: var(--muted); max-width: 640px; }
.hero .cta-row { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero .footnote { margin-top: 18px; font-size: 12.5px; color: var(--faint); }

/* Stat band (dark) */
.statband { background: var(--ink); color: #fff; text-align: center; padding: 38px 28px; }
.statband .big { font-size: 46px; font-weight: 700; margin: 0 auto; }
.statband p { margin: 8px auto 0; max-width: 560px; font-size: 15.5px; color: #d9d9d9; }
.statband .src { font-size: 11px; color: #9a9a9a; margin-top: 8px; }

/* Feature / step cards */
.stepcard { padding: 18px; }
.stepcard .ic { width: 34px; height: 34px; border: 1.5px solid var(--line-strong); border-radius: 8px; background: var(--panel); display: inline-grid; place-items: center; font-size: 12px; color: var(--muted); }
.stepcard .stepno { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--faint); margin-left: 10px; vertical-align: middle; }
.stepcard h3 { margin: 12px 0 6px; font-size: 16px; }
.stepcard p { margin: 0; color: var(--muted); font-size: 13px; }

/* Checklist */
.checklist { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 9px; }
.checklist li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; }
.checklist .ck { width: 16px; height: 16px; border: 1.4px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font-size: 9px; flex: none; margin-top: 2px; }

/* Big quote sample */
.quotesample { background: var(--panel); }
.quotesample blockquote { margin: 12px 0 0; font-size: 19px; line-height: 1.5; font-weight: 500; quotes: none; }
.quotesample .attr { margin-top: 14px; display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); }
.quotesample .attr .av { width: 24px; height: 24px; border-radius: 50%; border: 1.4px solid var(--line-strong); display: grid; place-items: center; font-size: 9px; background: #fff; flex: none; }

/* Four ways interactive block (home) */
.fourways { display: grid; grid-template-columns: 320px 1fr; gap: 22px; align-items: stretch; }
@media (max-width: 880px){ .fourways { grid-template-columns: 1fr; } }
.fw-list { display: grid; gap: 10px; align-content: start; }
.fw-item { text-align: left; border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 12px 14px; cursor: pointer; font-family: inherit; color: inherit; }
.fw-item:hover { background: var(--panel); }
.fw-item.active { border-color: var(--ink); box-shadow: 0 0 0 1.5px var(--ink); }
.fw-item b { display: block; font-size: 14px; }
.fw-item span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 3px; line-height: 1.4; }
.fw-stage { border: 1px solid var(--line); border-radius: 8px; background: var(--panel); padding: 16px; display: grid; gap: 16px; }
.mock { background: #fff; border: 1px solid var(--line-strong); border-radius: 8px; overflow: hidden; }
.mock .mbar { display: flex; align-items: center; gap: 5px; padding: 7px 10px; border-bottom: 1px solid var(--line); background: var(--panel-2); }
.mock .mbar i { width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--line-strong); background: #fff; }
.mock .mbar .murl { flex: 1; height: 12px; border-radius: 6px; background: #fff; border: 1px solid var(--line); margin-left: 6px; }
.mock .mbody { padding: 14px; display: grid; gap: 12px; }
.skel { height: 9px; border-radius: 4px; background: var(--panel-2); }
.skel.dark { background: var(--line); }
.wframe { border: 1.5px solid var(--ink); border-radius: 8px; padding: 14px 12px 10px; background: #fff; position: relative; }
.wframe .wtag { position: absolute; top: -9px; left: 10px; background: var(--ink); color: #fff; font-size: 9.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 1px 9px; border-radius: 10px; }
.mock .mquote { font-size: 13px; font-weight: 500; line-height: 1.45; margin: 0; }
.mock .mattr { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: var(--muted); margin-top: 7px; }
.mock .mattr .av { width: 16px; height: 16px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; font-size: 7px; background: #fff; flex: none; }

/* CTA band */
.ctaband { background: var(--ink); color: #fff; border-radius: 10px; text-align: center; padding: 44px 28px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.ctaband h2 { margin: 0; font-size: 26px; color: #fff; }
.ctaband p { margin: 0; max-width: 520px; color: #d9d9d9; font-size: 14.5px; }
.ctaband .btn { background: #fff; color: var(--ink); border-color: #fff; }
.ctaband .btn:hover { background: var(--panel-2); }

/* Pricing tiers */
.tier { display: flex; flex-direction: column; padding: 22px; position: relative; }
.tier.hl { border-color: var(--ink); box-shadow: 0 0 0 1.5px var(--ink); }
.tier .tname { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 700; }
.tier .blurb { margin: 6px 0 0; color: var(--muted); font-size: 13px; }
.tier .price { margin: 16px 0 0; font-size: 34px; font-weight: 700; }
.tier .price small { font-size: 13px; font-weight: 400; color: var(--muted); }
.tier .checklist { flex: 1; margin-bottom: 18px; }

/* Auth / focused form pages */
.auth-wrap { max-width: 460px; margin: 0 auto; padding: 48px 28px 70px; }
.auth-wrap.wide { max-width: 620px; }
.auth-head { text-align: center; margin-bottom: 22px; }
.auth-head h1 { margin: 0 0 5px; font-size: 26px; }
.auth-head p { margin: 0; color: var(--muted); font-size: 13.5px; }
.auth-head.left { text-align: left; }
.formgrid { display: grid; gap: 14px; }
.notebox { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; font-size: 12.5px; color: var(--muted); }
.notebox p { margin: 0 0 8px; }
.notebox p:last-child { margin-bottom: 0; }
.chiprow { display: flex; flex-wrap: wrap; gap: 6px; margin: 6px 0 10px; }
.authlinks { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; font-size: 12.5px; color: var(--muted); }
.divider { border: 0; border-top: 1px solid var(--line); margin: 4px 0; }
.successbox { text-align: center; padding: 26px 18px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.successbox .bigcheck { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--ink); display: grid; place-items: center; font-size: 22px; font-weight: 700; }
.successbox h2 { margin: 0; font-size: 20px; }
.successbox p { margin: 0; color: var(--muted); font-size: 13.5px; max-width: 380px; }

/* Simple text pages (terms, privacy, etc.) */
.simplepage { max-width: 720px; margin: 0 auto; padding: 48px 28px 70px; }
.simplepage h1 { margin: 0 0 8px; font-size: 30px; letter-spacing: -.3px; }
.simplepage .intro { margin: 0 0 26px; font-size: 16px; color: var(--muted); }
.simplepage .body p { font-size: 14.5px; line-height: 1.65; color: var(--ink); margin: 0 0 16px; }

/* Footer */
.sitefooter { border-top: 1px solid var(--line); background: #fafafa; margin-top: 40px; }
.sf-inner { max-width: var(--page-w); margin: 0 auto; padding: 34px 28px 20px; }
.sf-cols { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 24px; }
@media (max-width: 720px){ .sf-cols { grid-template-columns: 1fr 1fr; } }
.sf-col h4 { margin: 0 0 10px; font-size: 10.5px; text-transform: uppercase; letter-spacing: .7px; color: var(--faint); font-weight: 600; }
.sf-col a { display: block; font-size: 13px; color: var(--muted); text-decoration: none; padding: 3px 0; }
.sf-col a:hover { color: var(--ink); text-decoration: underline; }
.sf-blurb { font-size: 12.5px; color: var(--muted); margin: 10px 0 0; max-width: 240px; }
.sf-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; border-top: 1px solid var(--line); margin-top: 26px; padding-top: 14px; font-size: 12px; color: var(--faint); }
.sf-bottom a { color: var(--muted); }

/* Sitemap (index) */
.sitemap { display: grid; gap: 22px; }
.sitemap .group h3 { font-size: 12px; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); margin: 0 0 10px; }
.sitemap .tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.tile { border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; text-decoration: none; color: inherit; background: #fff; }
.tile:hover { background: var(--panel); box-shadow: 0 2px 0 var(--line-strong); }
.tile b { display: block; font-size: 14px; }
.tile span { font-size: 12px; color: var(--muted); }

/* Wireframe status system: color-coded status badge, floating bottom bar, and
   sitemap chips. This annotation tooling is a deliberate exception to the
   otherwise grayscale rule so the data team can read status at a glance. */
.st-approved       { --stc: #1f7a3d; --stbg: #e6f4ea; }
.st-in-review      { --stc: #8a5a00; --stbg: #fbefd3; }
.st-in-development { --stc: #1d4ed8; --stbg: #e7edfb; }
.st-placeholder    { --stc: #555555; --stbg: #ececec; }
.st-deprecated     { --stc: #a12222; --stbg: #f6dede; }

.stbadge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; padding: 2px 9px; border-radius: 20px; color: var(--stc); background: var(--stbg); white-space: nowrap; }
.stbadge .stdot { width: 7px; height: 7px; border-radius: 50%; background: var(--stc); flex: none; }

.statusbar { position: fixed; left: 50%; transform: translateX(-50%); bottom: 16px; z-index: 60; display: flex; align-items: center; gap: 12px; width: max-content; max-width: calc(100% - 32px); padding: 7px 8px 7px 12px; border: 1px solid var(--line-strong); border-radius: 24px; background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,.14); font-size: 12px; }
.statusbar .sb-upd { color: var(--muted); white-space: nowrap; }
.statusbar .sb-notes { color: var(--muted); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.statusbar .sb-legend { color: var(--ink); font-weight: 700; text-decoration: none; white-space: nowrap; border: 1px solid var(--line-strong); border-radius: 16px; padding: 4px 12px; }
.statusbar .sb-legend:hover { background: var(--panel); }

/* ---- Review conventions (batch 2) ------------------------------------- */

/* Cloudflare Turnstile. A static placeholder in the wireframes, never the real
   widget, because a real one is a remote asset and the repo forbids those. */
.turnstile { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line-strong);
  border-radius: var(--radius); background: var(--panel); padding: 11px 13px; font-size: 12.5px;
  color: var(--muted); }
.turnstile .tsbox { width: 22px; height: 22px; border: 1px solid var(--line-strong);
  border-radius: 4px; background: #fff; flex: none; }

/* ---- Date range: fixed windows plus a calendar, one control everywhere ---- */
/* Any element the builders or the shared controls hide must actually hide.
   .filterbar, .dr-panel and friends set display, which outranks the user agent's
   [hidden] rule, so a hidden panel would render open. Batch 11 added this to the
   retailer surface for the placement gate; batch 12 put the date range control on
   every surface without it, which is why the date panel rendered open everywhere
   else. */
[hidden] { display: none !important; }

.daterange { position: relative; display: inline-flex; align-items: center; }
.dr-panel { position: absolute; z-index: 45; top: calc(100% + 6px); right: 0; min-width: 280px;
  background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 14px; display: grid; gap: 12px; }
.dr-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dr-head { display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; margin-bottom: 8px; }
.dr-head span { cursor: pointer; color: var(--muted); padding: 0 6px; }
.dr-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.dr-dow { font-size: 10.5px; color: var(--faint); text-align: center; padding: 2px 0; }
.dr-day { font-size: 12px; text-align: center; padding: 5px 0; border-radius: 4px; cursor: pointer; }
.dr-day:hover { background: var(--panel-2); }
.dr-day.in { background: var(--panel-2); }
.dr-day.edge { background: var(--ink); color: #fff; }
