/* MOSAIK marketing site — shared stylesheet across index.html,
   get-started.html, setup-company.html. Real implementation of
   WebsiteHome.dc.html / WebsiteGetStarted.dc.html /
   WebsiteSetupCompany.dc.html (crm-mockup-extract/) — same tokens,
   same component language as those mockups and as the real dashboard
   app (public/style.css), so the site and the product it's selling
   actually look like the same thing.
   Real difference from the mockups (deliberate, not an oversight):
   those are fixed 1440px desktop-only Claude Design artboards — no
   Mobile counterpart was ever built for the website pages (unlike the
   dashboard, which got a Mobile*.dc.html for every page). This is a
   REAL site, so it needs to actually work on a phone — the responsive
   rules below are this file's own addition, not translated from a
   mockup that doesn't exist. */

:root {
  --bg: #ffffff;
  --bg-soft: #f4f5f7;
  --card: #ffffff;
  --border: #e2e5ea;
  --ink: #1c2330;
  --muted: #6b7482;
  --accent: #0f6e56;
  --accent-dark: #0c5945;
  --accent-mid: #6fa998;
  --accent-tint: #eaf3f0;
  --accent-pale: #d8e8e3;
  --rent: #b45309;
  --sale: #0f6e56;
  --ink-fixed: #1c2330; /* the dark navy itself, unaffected by theme — used for the CTA band, which stays dark in both themes */
}
/* Dark theme (2026-09-09) — a REAL palette, not the light one inverted
   naively: --ink flips meaning (surface color -> text color), --bg
   gets its own genuinely dark value rather than #000, and --accent
   brightens slightly since the light-mode green reads muddy on a dark
   background. Two guarded blocks, same convention used throughout
   this project (see public/style.css): the system-preference block
   only applies when nothing was chosen explicitly, so an explicit
   [data-theme="light"] always wins over a dark OS setting, and
   [data-theme="dark"] always wins the other way. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #12161d;
    --bg-soft: #171c24;
    --card: #1a2029;
    --border: #2a3240;
    --ink: #e9edf2;
    --muted: #93a0b0;
    --accent: #1a9c7d;
    --accent-dark: #7fd9c0;
    --accent-mid: #4f8779;
    --accent-tint: #17362c;
    --accent-pale: #234539;
    --rent: #e2a765;
    --sale: #1a9c7d;
  }
}
:root[data-theme="dark"] {
  --bg: #12161d;
  --bg-soft: #171c24;
  --card: #1a2029;
  --border: #2a3240;
  --ink: #e9edf2;
  --muted: #93a0b0;
  --accent: #1a9c7d;
  --accent-dark: #7fd9c0;
  --accent-mid: #4f8779;
  --accent-tint: #17362c;
  --accent-pale: #234539;
  --rent: #e2a765;
  --sale: #1a9c7d;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* overflow-x:hidden lives here, not on .page (2026-09-09 fix) — it
   used to sit on .page, a direct ancestor of .nav (position:sticky),
   and ANY overflow value other than "visible" on an ancestor breaks
   position:sticky on a descendant in most browsers. body/html is the
   standard place for a horizontal-scroll guard precisely because it
   sits above the sticky element's containing-block chain without
   becoming what sticky gets computed relative to. */
body {
  margin: 0;
  font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: "Sora", sans-serif; }
img { max-width: 100%; }

/* Real pages scroll and size to content — the mockups' fixed
   `.page { width:1440px }` was a canvas-artboard convention, not
   something a real responsive page should carry over. */
.page { width: 100%; }

/* --- Nav ------------------------------------------------------- */
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 18px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-logo { display: flex; align-items: center; gap: 9px; font-family: "Sora", sans-serif; font-weight: 800; font-size: 19px; }
.brand-mark {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-template-areas: "a a b c" "a a b c" "d e e c" "d f f f";
  gap: 1px;
  width: 22px;
  height: 22px;
  border-radius: 5px;
}
.brand-mark i { display: block; border-radius: 1px; }
.brand-mark i:nth-child(1) { grid-area: a; background: var(--accent); }
.brand-mark i:nth-child(2) { grid-area: b; background: var(--accent-tint); }
.brand-mark i:nth-child(3) { grid-area: c; background: var(--ink-fixed); }
.brand-mark i:nth-child(4) { grid-area: d; background: var(--accent-mid); }
.brand-mark i:nth-child(5) { grid-area: e; background: var(--accent-dark); }
.brand-mark i:nth-child(6) { grid-area: f; background: var(--accent-pale); }
.nav-links { display: flex; gap: 30px; font-size: 14px; font-weight: 500; color: var(--muted); }
.nav-links a.active { color: var(--accent); font-weight: 700; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.nav-login { font-size: 14px; font-weight: 600; color: var(--ink); }
.nav-cta { background: var(--accent); color: #fff; padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 700; }
.back-link { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--accent); cursor: pointer; }

/* Theme toggle (2026-09-09) — real this time, not decorative. Same
   Light/Dark/System control as the dashboard app's own Settings
   screen (public/js/settings.js), reimplemented here since this is a
   separate app on a separate port with no shared JS. See main.js. */
.theme-toggle { display: flex; border: 1px solid var(--border); border-radius: 7px; overflow: hidden; flex-shrink: 0; }
.theme-toggle span { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; color: var(--muted); border-right: 1px solid var(--border); cursor: pointer; }
.theme-toggle span:last-child { border-right: none; }
.theme-toggle span.active { background: var(--ink-fixed); color: #fff; }

/* Nav's mobile hamburger — real addition, no mockup equivalent (see
   file header). Off-canvas isn't needed at this nav's size; the link
   row just wraps onto its own line below the logo/actions instead. */
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* --- Hero -------------------------------------------------------- */
/* clamp()'d font-size/padding (2026-09-09) — genuinely fluid, not just
   two fixed breakpoint snapshots: scales continuously with viewport
   width between the two bounds, so every width in between (a
   half-resized window, an odd tablet size) gets a real intermediate
   size instead of jumping straight from the desktop value to the
   tablet one. The @media blocks further down still exist for
   STRUCTURAL changes (flex-direction, grid columns) that genuinely
   can't be fluid — this is additive, not a replacement for those. */
.hero { display: flex; align-items: center; gap: 56px; padding: clamp(40px, 8vw, 90px) clamp(20px, 6vw, 64px) clamp(48px, 9vw, 100px); }
.hero-copy { flex: 1; min-width: 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-dark); background: var(--accent-tint); padding: 6px 13px; border-radius: 20px; }
.hero h1 { font-size: clamp(28px, 4.2vw, 52px); font-weight: 800; line-height: 1.1; margin: 22px 0 20px; letter-spacing: -.01em; text-wrap: balance; }
.hero h1 span { color: var(--accent); }
.hero-sub { font-size: clamp(15px, 1.6vw, 18px); line-height: 1.6; color: var(--muted); max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.btn-primary { background: var(--accent); color: #fff; padding: 15px 26px; border-radius: 9px; font-size: 15px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: none; font-family: inherit; }
.btn-secondary { border: 1px solid var(--border); color: var(--ink); padding: 15px 26px; border-radius: 9px; font-size: 15px; font-weight: 600; cursor: pointer; background: var(--bg); font-family: inherit; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); }

.hero-visual { flex: 1; min-width: 0; }
.preview-frame { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 16px; padding: 20px; box-shadow: 0 30px 70px rgba(28, 35, 48, .12); }
.pf-topbar { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.pf-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.pf-title { margin-left: 8px; font-size: 12px; color: var(--muted); font-weight: 600; }
.pf-card { background: var(--card); border: 1px solid var(--border); border-radius: 11px; padding: 14px 16px; margin-bottom: 10px; }
.pf-tags { display: flex; gap: 6px; margin-bottom: 8px; }
.pf-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 3px 8px; border-radius: 6px; }
.pf-tag.rent { background: #fdf1e0; color: var(--rent); }
.pf-tag.sale { background: #e5f4ef; color: var(--sale); }
.pf-tag.cat { background: #e2f0fa; color: #0369a1; }
.pf-name { font-family: "Sora", sans-serif; font-weight: 800; font-size: 15px; }
.pf-loc { color: var(--muted); font-size: 12px; margin-top: 2px; }
.pf-price { font-family: "Sora", sans-serif; color: var(--accent); font-weight: 800; font-size: 16px; margin-top: 8px; }

.locality-strip { text-align: center; padding: 20px 64px 60px; font-size: 13px; color: var(--muted); }

/* --- Sections ------------------------------------------------------ */
.section { padding: clamp(40px, 7vw, 80px) clamp(20px, 6vw, 64px); }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(32px, 6vw, 56px); }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--accent-dark); }
.section-head h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; margin: 12px 0 14px; text-wrap: balance; }
.section-head p { font-size: 16px; color: var(--muted); line-height: 1.6; }

/* auto-fit grids (2026-09-09) — reflow to however many columns
   actually fit at the CURRENT width, not just the 3 discrete states a
   fixed repeat(N,1fr) + breakpoint-override approach gives. This is
   what "adaptive" means beyond the breakpoints below: every width in
   between gets a real, correct column count, not just the nearest of
   two hardcoded snapshots. */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.step { position: relative; padding-top: 8px; }
.step-num { font-family: "Sora", sans-serif; font-size: 13px; font-weight: 800; color: var(--accent); }
.step h3 { font-size: 18px; margin: 10px 0 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.55; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.feature-card { border: 1px solid var(--border); border-radius: 14px; padding: 26px; background: var(--card); }
.feature-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--accent-tint); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-card h3 { font-size: 16px; margin: 0 0 8px; }
.feature-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; }

/* --- Pricing --------------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.price-card { border: 1px solid var(--border); border-radius: 16px; padding: 32px 28px; background: var(--card); }
.price-card.featured { border-color: var(--accent); box-shadow: 0 20px 50px rgba(15, 110, 86, .14); position: relative; }
.featured-tag { position: absolute; top: -13px; left: 28px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.price-tier { font-family: "Sora", sans-serif; font-weight: 800; font-size: 19px; }
.price-seats { font-size: 13px; color: var(--muted); margin-top: 4px; }
.price-value { font-family: "Sora", sans-serif; font-size: 28px; font-weight: 800; margin: 20px 0 4px; }
.price-value span { font-size: 14px; font-weight: 500; color: var(--muted); }
.price-list { list-style: none; padding: 0; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 11px; }
.price-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--ink); }
.price-list svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.price-cta { display: block; text-align: center; padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 700; border: 1px solid var(--border); cursor: pointer; }
.price-card.featured .price-cta { background: var(--accent); color: #fff; border-color: var(--accent); }

/* --- Trust ------------------------------------------------------- */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.trust-card { text-align: center; padding: 8px; }
.trust-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.trust-card h3 { font-size: 15px; margin: 0 0 6px; }
.trust-card p { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0; }

/* --- CTA band ---------------------------------------------------- */
/* --ink-fixed, not --ink (2026-09-09) — this band is meant to stay a
   dark contrast band in BOTH themes, same as the dashboard app's own
   sidebar; --ink itself now flips meaning to "text color" in dark
   mode (see the dark-palette block above), which would turn this into
   a light band with invisible white text if used here. */
.cta-band { background: var(--ink-fixed); border-radius: 24px; margin: 0 clamp(16px, 5vw, 64px); padding: clamp(28px, 6vw, 64px); display: flex; align-items: center; gap: 56px; flex-wrap: wrap; }
.cta-copy { flex: 1; color: #fff; min-width: 260px; }
.cta-copy h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin: 0 0 12px; }
.cta-copy p { font-size: 15px; color: #9aa8b3; line-height: 1.6; max-width: 420px; }
.cta-checkout { flex: 1; min-width: 260px; max-width: 340px; background: var(--card); border-radius: 14px; padding: 26px; }
.cta-submit { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; border-radius: 8px; border: none; background: var(--accent); color: #fff; font-size: 14.5px; font-weight: 700; cursor: pointer; font-family: inherit; }
.cta-fineprint { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11.5px; color: var(--muted); margin-top: 14px; }

/* --- Contact ------------------------------------------------------- */
.contact-wrap { display: flex; flex-wrap: wrap; gap: 40px 64px; max-width: 1100px; margin: 0 auto; }
.contact-copy { flex: 1; min-width: 280px; }
.contact-copy h2 { font-size: 32px; font-weight: 800; margin: 0 0 14px; text-wrap: balance; }
.contact-copy p { font-size: 15px; color: var(--muted); line-height: 1.65; max-width: 400px; margin: 0 0 28px; }
.contact-row { display: flex; align-items: center; gap: 12px; font-size: 14.5px; margin-bottom: 16px; }
.contact-row-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--accent-tint); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-form { flex: 1; min-width: 280px; max-width: 420px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.contact-field-label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.contact-field-label:not(:first-child) { margin-top: 18px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; color: var(--ink); font-family: inherit; }
.contact-form textarea { resize: none; height: 88px; }
.contact-submit { width: 100%; margin-top: 22px; padding: 13px; background: var(--accent); color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; }
.contact-note { margin-top: 12px; font-size: 12.5px; color: var(--accent-dark); display: none; }
.contact-note.visible { display: block; }

/* --- Footer -------------------------------------------------------- */
footer { padding: 56px 64px 40px; border-top: 1px solid var(--border); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--muted); max-width: 280px; line-height: 1.6; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin: 0 0 14px; }
.footer-col a { display: block; font-size: 13.5px; color: var(--ink); margin-bottom: 11px; }
.footer-bottom { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 8px; }

/* --- Get Started gate ------------------------------------------- */
.gate { max-width: 900px; margin: 0 auto; padding: 88px 24px 60px; text-align: center; }
.gate-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--accent-dark); }
.gate h1 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; margin: 14px 0 12px; text-wrap: balance; }
.gate-sub { font-size: 16px; color: var(--muted); line-height: 1.6; max-width: 520px; margin: 0 auto; }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 52px; text-align: left; }
.choice-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 36px 32px; display: flex; flex-direction: column; }
.choice-card.primary { border-color: var(--accent); box-shadow: 0 24px 60px rgba(15, 110, 86, .12); }
.choice-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-tint); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; }
.choice-card h2 { font-size: 20px; margin: 20px 0 8px; }
.choice-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0 0 26px; flex: 1; }
.choice-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border-radius: 9px; font-size: 14.5px; font-weight: 700; border: 1px solid var(--border); color: var(--ink); cursor: pointer; background: var(--bg); font-family: inherit; }
.choice-card.primary .choice-btn { background: var(--accent); color: #fff; border-color: var(--accent); }
.choice-btn:disabled { opacity: .5; cursor: not-allowed; }
.choice-meta { margin-top: 16px; font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.gate-foot { text-align: center; margin-top: 44px; font-size: 13.5px; color: var(--muted); }
.gate-foot a { color: var(--accent); font-weight: 600; }

/* --- Setup Company checkout --------------------------------------- */
.wrap { max-width: 1100px; margin: 0 auto; padding: 48px 24px 80px; }
.wrap-head { margin-bottom: 36px; }
.wrap-head h1 { font-size: clamp(24px, 3.5vw, 32px); font-weight: 800; margin: 12px 0 8px; }
.wrap-head p { font-size: 15px; color: var(--muted); line-height: 1.6; max-width: 520px; margin: 0; }
.layout { display: flex; gap: 40px; align-items: flex-start; }
.form-col { flex: 1.3; min-width: 0; }
.summary-col { flex: 1; min-width: 0; position: sticky; top: 88px; }
.panel { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.panel + .panel { margin-top: 24px; }
.panel-label { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin: 16px 0 8px; }
.field-label:first-child { margin-top: 0; }
input.field { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; color: var(--ink); font-family: inherit; }
.field-hint { margin-top: 6px; font-size: 12px; color: var(--muted); }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.plan-card { border: 1.5px solid var(--border); border-radius: 12px; padding: 18px 16px; cursor: pointer; }
.plan-card.selected { border-color: var(--accent); background: var(--accent-tint); }
.plan-name { font-family: "Sora", sans-serif; font-weight: 800; font-size: 15px; }
.plan-seats { font-size: 12px; color: var(--muted); margin-top: 3px; }
.plan-price { font-size: 13px; font-weight: 700; color: var(--accent-dark); margin-top: 12px; }
.seats-row { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.seats-row-copy .setting-label { font-weight: 600; font-size: 13.5px; }
.seats-row-copy .field-hint { margin-top: 3px; }
.seats-stepper { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.seats-stepper button { width: 34px; height: 34px; border: none; background: var(--card); color: var(--ink); font-size: 16px; cursor: pointer; font-family: inherit; }
.seats-stepper button:hover { background: var(--bg-soft); }
.seats-stepper input { width: 44px; height: 34px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; font-size: 14px; font-weight: 700; color: var(--ink); font-family: inherit; }
.summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); gap: 12px; }
.summary-row:last-of-type { border-bottom: none; }
.summary-row .label { color: var(--muted); }
.summary-row .value { font-weight: 700; }
.summary-row.total { border-top: 1.5px solid var(--ink); border-bottom: none; margin-top: 2px; padding-top: 16px; }
.summary-row.total .label { color: var(--ink); font-weight: 700; font-size: 15px; }
.summary-row.total .value { font-family: "Sora", sans-serif; font-size: 20px; color: var(--accent-dark); }
.next-steps { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.next-step { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--ink); line-height: 1.5; }
.next-step-num { flex-shrink: 0; width: 19px; height: 19px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-dark); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.pay-btn { width: 100%; margin-top: 22px; padding: 14px; background: var(--accent); color: #fff; border: none; border-radius: 9px; font-size: 14.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; font-family: inherit; }
.pay-btn:disabled { opacity: .55; cursor: not-allowed; }
.pay-fineprint { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11.5px; color: var(--muted); margin-top: 14px; }
.pay-provider { text-align: center; font-size: 11px; color: var(--muted); margin-top: 8px; }

/* --- Docs (real implementation of MarketingDocs.dc.html, 2026-09-09) ---
   Two-pane layout: a sidebar nav (search, grouped links, a help card)
   next to the article itself. Unlike the other pages, the mockup's own
   `.page` is a FIXED-HEIGHT `overflow:hidden` frame with each pane
   scrolling independently — a real desktop-app-style docs layout. Kept
   that same independent-scroll idea for real (`.docs-sidebar`/
   `.docs-main` each scroll on their own on a tall viewport), but
   without the fixed height, since a real page has to work at any
   viewport height, not just the canvas's own 980px frame. */
.docs-body { display: flex; align-items: flex-start; }
.docs-sidebar {
  width: 260px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 61px; /* sits right below the sticky nav's own height */
  max-height: calc(100vh - 61px);
  overflow-y: auto;
}
.docs-search { width: 100%; padding: 9px 12px; border: 1px solid var(--border); border-radius: 8px; font-size: 13px; color: var(--ink); background: var(--bg); margin-bottom: 22px; font-family: inherit; }
.docs-group { margin-bottom: 22px; }
.docs-group h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin: 0 0 8px; padding: 0 10px; }
.docs-link { display: block; padding: 8px 10px; border-radius: 7px; font-size: 13.5px; color: var(--ink); font-weight: 500; }
.docs-link.active { background: var(--accent-tint); color: var(--accent-dark); font-weight: 700; }
/* Not yet written (see docs.html's own comment) — same "honest
   placeholder" treatment as the rest of the site's not-yet-built
   pieces, rather than a live-looking link that goes nowhere. */
.docs-link.pending { opacity: .55; cursor: default; }
.docs-help-card { margin-top: auto; padding: 16px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg-soft); }
.docs-help-card h4 { font-size: 13px; margin: 0 0 6px; }
.docs-help-card p { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 0 0 12px; }
.docs-help-btn { display: block; text-align: center; padding: 9px; border-radius: 7px; font-size: 12.5px; font-weight: 700; background: var(--accent); color: #fff; }
.docs-version { margin-top: 16px; padding: 0 2px; font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.docs-version .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.docs-main { flex: 1; min-width: 0; padding: 40px clamp(24px, 5vw, 64px); max-width: 800px; }
.docs-eyebrow { font-size: 12px; font-weight: 700; color: var(--accent-dark); text-transform: uppercase; letter-spacing: .04em; }
.docs-main h1 { font-size: clamp(24px, 3.5vw, 30px); font-weight: 800; margin: 10px 0 12px; }
.docs-main > p.lead { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 32px; }
/* Prose elements for the newer, non-procedural docs articles (2026-09-09)
   — docs.html's one written article was all step-cards/FAQ, so nothing
   styled a plain paragraph, heading or list inside .docs-main until the
   rest of the sidebar got real content. */
.docs-main h2 { font-size: 18px; font-weight: 800; margin: 36px 0 14px; }
.docs-main h2:first-of-type { margin-top: 0; }
.docs-main > p { font-size: 14px; color: var(--ink); line-height: 1.7; margin: 0 0 14px; }
.docs-main ul, .docs-main ol { margin: 0 0 16px; padding-left: 20px; font-size: 14px; color: var(--ink); line-height: 1.75; }
.docs-main li { margin-bottom: 6px; }
.docs-main li b, .docs-main li strong, .docs-main > p b, .docs-main > p strong { font-weight: 700; }
.docs-note { display: flex; gap: 10px; padding: 14px 16px; border-radius: 10px; background: var(--accent-tint); border: 1px solid var(--accent-pale); font-size: 13px; color: var(--ink); line-height: 1.6; margin: 4px 0 24px; }
.docs-note svg { flex-shrink: 0; margin-top: 1px; color: var(--accent-dark); }
.docs-note.warn { background: var(--bg-soft); border-color: var(--border); }
.docs-note.warn svg { color: var(--muted); }
.step-card { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.step-card:last-child { border-bottom: none; }
.step-badge { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; font-family: "Sora", sans-serif; font-weight: 800; font-size: 13px; }
.step-card h3 { font-size: 15.5px; margin: 0 0 6px; }
.step-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0; }
.faq-section { margin-top: 40px; }
.faq-section h2 { font-size: 20px; margin-bottom: 18px; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; margin-bottom: 10px; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; cursor: pointer; }
.faq-q svg { color: var(--muted); transition: transform .15s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { margin-top: 12px; font-size: 13.5px; color: var(--muted); line-height: 1.6; display: none; }
.faq-item.open .faq-a { display: block; }

/* ================================================================
   Responsive — this file's own addition, no mockup to match (see
   header comment). Two breakpoints: tablet-ish (stack the widest
   multi-column sections) and phone (tighten padding/type, stack
   everything, real hamburger nav).
   ================================================================ */
@media (max-width: 980px) {
  .hero { flex-direction: column; padding: 56px 32px 64px; gap: 40px; }
  .hero-copy, .hero-visual { max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .section { padding: 56px 32px; }
  .cta-band { margin: 0 32px; padding: 40px; flex-direction: column; text-align: center; }
  .cta-copy p { max-width: 100%; }
  .contact-wrap { flex-direction: column; gap: 36px; }
  .contact-copy p { max-width: 100%; }
  .contact-form { max-width: 100%; }
  .features-grid, .pricing-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .choice-grid { grid-template-columns: 1fr; }
  .layout { flex-direction: column; }
  .summary-col { position: static; width: 100%; }
  .field-row, .plan-grid { grid-template-columns: 1fr; }
  /* Docs sidebar stacks above the article instead of sitting beside
     it — a side-by-side two-pane layout doesn't work once there's not
     enough width for both, and independent-scroll/sticky only makes
     sense in the wide layout to begin with. */
  .docs-body { flex-direction: column; }
  .docs-sidebar { width: 100%; position: static; max-height: none; border-right: none; border-bottom: 1px solid var(--border); }
  .docs-main { max-width: 100%; }
}
@media (max-width: 640px) {
  .nav { padding: 14px 20px; flex-wrap: wrap; }
  .nav-links { order: 3; width: 100%; justify-content: center; gap: 20px; padding-top: 14px; flex-wrap: wrap; display: none; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-right { gap: 12px; }
  .nav-cta { padding: 9px 14px; font-size: 13px; }
  .hero { padding: 40px 20px 48px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15.5px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .locality-strip { padding: 16px 20px 40px; font-size: 12px; }
  .section { padding: 40px 20px; }
  .section-head h2 { font-size: 24px; }
  .features-grid, .pricing-grid, .trust-grid, .steps { grid-template-columns: 1fr; }
  .cta-band { margin: 0 16px; padding: 28px 20px; border-radius: 16px; }
  .cta-copy h2 { font-size: 22px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-cols { gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gate { padding: 48px 16px 40px; }
  .gate h1 { font-size: 26px; }
  .choice-card { padding: 26px 22px; }
  .wrap { padding: 28px 16px 56px; }
  .wrap-head h1 { font-size: 24px; }
  .panel { padding: 22px; }
  .docs-sidebar { padding: 20px 16px; }
  .docs-main { padding: 28px 16px; }
  .step-card { gap: 12px; }
}
