/* ==========================================================================
   DocketWatch marketing site — design system
   Rebuilt pixel-for-pixel from the Claude.Design handoff
   ("DocketWatch Site.dc.html"). Self-contained: no external network deps.

   Font: 'Public Sans' (the handoff's typeface) is SELF-HOSTED below from
   assets/fonts/*.woff2 — no external/Google requests, matching the design's
   weight and proportion exactly. Every color, size, spacing, radius and shadow
   is taken verbatim from the .dc.html inline styles.
   ========================================================================== */

@font-face { font-family:'Public Sans'; font-style:normal; font-weight:400; font-display:swap; src:url('assets/fonts/public-sans-400.woff2') format('woff2'); }
@font-face { font-family:'Public Sans'; font-style:normal; font-weight:600; font-display:swap; src:url('assets/fonts/public-sans-600.woff2') format('woff2'); }
@font-face { font-family:'Public Sans'; font-style:normal; font-weight:700; font-display:swap; src:url('assets/fonts/public-sans-700.woff2') format('woff2'); }
@font-face { font-family:'Public Sans'; font-style:normal; font-weight:800; font-display:swap; src:url('assets/fonts/public-sans-800.woff2') format('woff2'); }

:root {
  /* Brand / structure */
  --ink-navy: #16314A;
  --footer-navy: #101F33;
  --navy-mid: #16293F;
  --navy-end: #1D3A59;
  --hero-outer: #122A40;
  --blue: #1F4E79;
  --blue-hover-dark: #255A8C;
  --blue-hover-light: #173D61;
  --sky: #8FB6E8;
  --gold: #C9A14A;

  /* Status */
  --green: #1A7F44;
  --green-text: #14693A;
  --green-bg: #E7F3EC;
  --green-border: #C7E3D2;
  --amber-text: #8A5A00;
  --amber-bg: #FBF1DC;
  --amber-border: #ECD9AE;
  --amber-dot: #B7791F;
  --red: #B42318;
  --red-bg: #FBEAE8;
  --red-border: #ECC4BE;

  /* Neutrals & text */
  --page-bg: #FBFCFD;
  --white: #FFFFFF;
  --canvas: #F6F7F9;
  --ink: #1C2330;
  --slate: #5B6470;
  --muted: #66708A;
  --faint: #8A8F99;
  --border: #E4E8EF;
  --divider: #EEF1F5;
  --blue-surface: #EAF1F8;

  /* On-dark */
  --on-dark-body: #C2D2E6;
  --on-dark-meta: #9FB4D0;
  --on-dark-dim: #8FA7C5;

  --container: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--page-bg);
  color: var(--ink);
  font-family: 'Public Sans', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
::selection { background: var(--sky); color: var(--ink-navy); }
:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.tnum { font-variant-numeric: tabular-nums; }
.center { text-align: center; }
.mw-680 { max-width: 680px; }
.mw-700 { max-width: 700px; }
.mw-720 { max-width: 720px; }
.mw-760 { max-width: 760px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================ HEADER ============================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink-navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px; height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 11px;
  background: none; border: none; cursor: pointer; padding: 6px 0;
  text-decoration: none;
}
.brand-tile {
  width: 34px; height: 34px; border-radius: 9px; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); flex: none;
}
.brand-word { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }
.brand-word .w-d { color: #fff; }
.brand-word .w-w { color: var(--sky); }

.nav-desktop { display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-link {
  position: relative; background: none; border: none; cursor: pointer;
  font-size: 14.5px; font-weight: 600; color: #C3D2E6; padding: 9px 13px;
  border-radius: 8px; text-decoration: none; display: inline-block;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-link.active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 1px;
  height: 2px; border-radius: 2px; background: var(--gold);
}

.btn-login-header {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff; border: 1px solid rgba(143,182,232,0.5);
  text-decoration: none; font-size: 14px; font-weight: 700; padding: 9px 16px;
  border-radius: 9px; margin-left: 6px; box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.btn-login-header:hover { background: var(--blue-hover-dark); }

.nav-compact { display: none; align-items: center; gap: 10px; }
.btn-login-compact {
  display: inline-flex; align-items: center; background: var(--blue); color: #fff;
  border: 1px solid rgba(143,182,232,0.5); text-decoration: none;
  font-size: 13.5px; font-weight: 700; padding: 8px 13px; border-radius: 9px;
}
.nav-toggle {
  display: flex; flex-direction: column; gap: 4px; background: none;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 9px; padding: 10px 11px; cursor: pointer;
}
.nav-toggle span { width: 18px; height: 2px; background: #fff; border-radius: 2px; }

.drawer {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 49;
  background: var(--ink-navy); border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 44px rgba(0,0,0,0.4); padding: 12px 24px 22px;
}
.drawer.open { display: block; }
.drawer-link {
  display: block; width: 100%; text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.07); color: #DCE7F5;
  font-size: 17px; font-weight: 600; padding: 15px 4px; text-decoration: none;
}
.btn-login-drawer {
  display: block; text-align: center; margin-top: 16px; background: var(--blue);
  color: #fff; text-decoration: none; font-weight: 700; padding: 14px;
  border-radius: 10px; border: 1px solid rgba(143,182,232,0.5);
}

/* ============================ SECTIONS ============================ */
.hero {
  background: radial-gradient(125% 85% at 50% -12%, #1D3A59 0%, #16314A 52%, #122A40 100%);
  color: #fff; overflow: hidden;
}
.subhero {
  background: radial-gradient(125% 90% at 50% -12%, #1D3A59 0%, #16314A 52%, #122A40 100%);
  color: #fff; padding: clamp(56px, 7vw, 92px) 0;
}
.band-gradient {
  background: linear-gradient(165deg, #101F33 0%, #16293F 45%, #1D3A59 100%);
  color: #fff; overflow: hidden;
}
.band-flat {
  background: linear-gradient(180deg, #101F33 0%, #16293F 100%);
  color: #fff; overflow: hidden;
}
.cta-band {
  background: radial-gradient(120% 120% at 50% 0%, #1D3A59 0%, #16314A 60%, #122A40 100%);
  color: #fff;
}

/* Canvas alternating section: #F6F7F9 with 1px #EEF1F5 hairline top/bottom */
.sec-canvas { background: var(--canvas); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.sec-canvas-tb { background: var(--canvas); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.sec-white { background: #fff; }

/* ============================ TYPOGRAPHY ============================ */
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.eyebrow-hero { letter-spacing: 0.16em; margin-bottom: 18px; }

h1 {
  font-size: clamp(38px, 6vw, 68px); line-height: 1.02; font-weight: 800; letter-spacing: -0.03em;
}
.h1-sub { font-size: clamp(34px, 5vw, 58px); line-height: 1.04; }
.sky { color: var(--sky); }

.h2 {
  font-size: clamp(27px, 3.6vw, 42px); font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.1; color: var(--ink-navy);
}
.h2-sm {
  font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.12; color: var(--ink-navy);
}
.h2-on-dark { color: #fff; }
.lede {
  font-size: clamp(16px, 1.8vw, 18px); color: var(--slate); line-height: 1.6; text-wrap: pretty;
}
.lede-dark { color: var(--on-dark-body); }
.body-copy { font-size: clamp(15.5px, 1.7vw, 17px); color: var(--slate); line-height: 1.6; text-wrap: pretty; }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  font-weight: 700; border-radius: 11px; cursor: pointer; border: none;
}
.btn svg { flex: none; }
.btn-primary-dark {
  background: var(--blue); color: #fff; border: 1px solid rgba(143,182,232,0.55);
  font-size: 16px; padding: 14px 26px; box-shadow: 0 10px 28px rgba(0,0,0,0.34);
}
.btn-primary-dark:hover { background: var(--blue-hover-dark); }
.btn-ghost-dark {
  background: rgba(255,255,255,0.06); color: #fff; border: 1px solid rgba(255,255,255,0.28);
  font-size: 16px; padding: 14px 24px;
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.12); }
.btn-primary-light {
  background: var(--blue); color: #fff; font-size: 15.5px; padding: 13px 24px;
  box-shadow: 0 8px 20px rgba(31,78,121,0.24);
}
.btn-primary-light:hover { background: var(--blue-hover-light); }

/* ============================ BROWSER FRAME ============================ */
.frame {
  border-radius: 12px; overflow: hidden; border: 1px solid var(--border);
  background: #fff;
}
.frame-bar {
  height: 32px; background: #222A35; display: flex; align-items: center; gap: 7px; padding: 0 13px;
}
.frame-bar .dot { width: 9px; height: 9px; border-radius: 50%; }
.dot-r { background: #ED6A5E; }
.dot-y { background: #F4BF4F; }
.dot-g { background: #61C554; }
.frame-url { margin-left: 11px; font-size: 11px; color: #9AA6B5; display: inline-flex; align-items: center; gap: 7px; }
.frame img { width: 100%; height: auto; }

.frame-shadow-light { box-shadow: 0 30px 60px -26px rgba(8,20,35,0.45); }
.frame-shadow-dark { box-shadow: 0 40px 80px -28px rgba(2,10,22,0.8); border-color: rgba(255,255,255,0.1); }

/* ============================ STATUS PILLS ============================ */
.pill {
  display: inline-flex; align-items: center; gap: 6px; height: 25px; padding: 0 11px;
  border-radius: 999px; font-size: 11px; font-weight: 700; white-space: nowrap;
}
.pill-proposed { background: var(--amber-bg); color: var(--amber-text); border: 1px solid var(--amber-border); }
.pill-proposed .pdot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber-dot); }
.pill-confirmed { background: var(--green-bg); color: var(--green-text); border: 1px solid var(--green-border); gap: 5px; }
.pill-review { background: var(--red-bg); color: var(--red); border: 1px solid var(--red-border); gap: 5px; }
.pill-awaiting { background: #fff; color: var(--amber-text); border: 1.5px dashed #C99B3E; gap: 5px; }
.pill-cover-ok { background: var(--green-bg); color: var(--green-text); border: 1px solid var(--green-border); }
.pill-cover-need { background: var(--red-bg); color: var(--red); border: 1px solid var(--red-border); }
.pill-cover-you { background: var(--blue-surface); color: var(--blue); border: 1px solid #CFE0F2; }
.pill-cover-you .pdot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.pill-arrow { color: #AAB2BD; }

/* ============================ CARDS ============================ */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px 24px;
}
.card-rest { box-shadow: 0 2px 4px rgba(22,49,74,0.03); }
.card-sm { border-radius: 15px; padding: 24px 22px; }
.card h3 { font-size: 18px; font-weight: 700; color: var(--ink-navy); letter-spacing: -0.01em; }
.card p { font-size: 15px; color: var(--slate); line-height: 1.55; }
.card-title-3 { margin-bottom: 7px; }

.icon-chip {
  display: inline-flex; width: 44px; height: 44px; border-radius: 12px;
  align-items: center; justify-content: center; background: var(--blue-surface);
  color: var(--blue); margin-bottom: 16px;
}
.icon-chip-sm { width: 42px; height: 42px; border-radius: 11px; margin-bottom: 15px; }
.icon-chip-red { background: #FBEEEC; color: var(--red); }
.icon-chip-green { background: var(--green-bg); color: var(--green); }
.icon-chip-faint { background: #F1F4F8; }

.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); }
.grid-3b { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-cards { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-5 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.grid-2-wide {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 5vw, 64px); align-items: center;
}
.grid-steps { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

/* ============================ CONFIDENCE RING ============================ */
.ring { flex: none; }

/* ============================ JURISDICTION CHIPS / DOTS ============================ */
.juris-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.juris-chip {
  display: inline-flex; align-items: center; gap: 8px; background: #fff;
  border: 1px solid var(--border); border-radius: 10px; padding: 9px 13px; font-size: 13.5px;
}
.juris-chip .cdot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.juris-chip b { color: var(--ink-navy); }
.juris-chip .name { color: var(--muted); }

.juris-dots {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--on-dark-meta);
}
.juris-dots .lead { color: var(--on-dark-dim); }
.juris-dots .jd { display: inline-flex; align-items: center; gap: 6px; }
.juris-dots .jd .sdot { width: 6px; height: 6px; border-radius: 50%; background: var(--sky); }

/* ============================ ADVISORY CALLOUT ============================ */
.advisory {
  display: flex; align-items: flex-start; gap: 11px; padding: 14px 16px;
  border: 1px solid #D5E1EE; border-radius: 13px; background: #EEF3F9;
}
.advisory .i {
  flex: none; display: inline-flex; width: 21px; height: 21px; border-radius: 50%;
  border: 1.5px solid var(--blue); color: var(--blue); font-size: 12px; font-weight: 700;
  align-items: center; justify-content: center; margin-top: 1px;
}
.advisory .txt { font-size: 14px; color: #23405E; line-height: 1.45; }
.advisory .txt b { color: var(--ink-navy); }

/* ============================ TAG / SOFT CHIPS ============================ */
.tag-chip {
  display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  background: #EAEEF3; border: 1px solid #DCE2EA; border-radius: 7px; padding: 4px 10px;
}
.chip-soft {
  font-size: 12.5px; font-weight: 600; color: #CFE0F2; background: rgba(255,255,255,0.08);
  border-radius: 8px; padding: 6px 12px;
}
.chip-pill {
  font-size: 13px; font-weight: 600; color: #CFE0F2; background: rgba(255,255,255,0.08);
  border-radius: 9px; padding: 8px 14px;
}

/* ============================ FOOTER + CTA ============================ */
.cta-inner { max-width: 880px; margin: 0 auto; padding: 0 24px; text-align: center; }
.cta-band h2 {
  font-size: clamp(28px, 4.2vw, 46px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.08;
}

.footer { background: var(--footer-navy); color: #9DB1C9; padding: clamp(48px, 6vw, 72px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 34px 24px; }
.footer-brand { grid-column: span 1; min-width: 230px; }
.footer-tile {
  width: 30px; height: 30px; border-radius: 8px; background: var(--blue);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.footer-word { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.footer-word .w-d { color: #fff; }
.footer-word .w-w { color: var(--sky); }
.footer-tagline { font-size: 14px; color: #8499B4; line-height: 1.5; max-width: 260px; margin: 14px 0; }
.footer-juris { font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; color: #7C92AE; }
.footer-head { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #6E84A0; margin-bottom: 14px; }
.footer-col-links { display: flex; flex-direction: column; gap: 11px; align-items: flex-start; }
.footer-link {
  background: none; border: none; cursor: pointer; font-size: 14.5px; color: #B7C6DA; padding: 0;
  text-decoration: none; text-align: left;
}
.footer-link:hover { color: #fff; }
.footer-rule { height: 1px; background: rgba(255,255,255,0.08); margin: 34px 0 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px 20px; }
.footer-legal { font-size: 12.5px; color: #6E84A0; }
.footer-meta-links { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.footer-meta-links a { font-size: 12.5px; color: #7C92AE; text-decoration: none; }
.footer-meta-links a:hover { color: #fff; }
.footer-admin { color: #5C7088 !important; }
.footer-admin:hover { color: #9DB1C9 !important; }

/* ============================ RESPONSIVE (compact < 900px) ============================ */
@media (max-width: 899px) {
  .nav-desktop { display: none; }
  .nav-compact { display: flex; }
}
@media (min-width: 900px) {
  .drawer { display: none !important; }
}
