/* ============================================================
   Diligence Ready — marketing site
   Brand: "Midnight Executive × Coral Edge" (Mood Board v1)
   Midnight #0F1E3D dominant · Coral #FF6B5C accent (~10%) ·
   Cream #F8F7F2 surface · Ice #C5D6F2 support · Stone #D8DCE3 line.
   Fraunces (serif display) · Inter (sans body) · JetBrains Mono.
   Wordmark: Fraunces SemiBold (site display face).
   Trust like a vault. Energy like an agent.
   ============================================================ */

:root {
  /* brand core */
  --midnight:    #0F1E3D;
  --midnight-2:  #1b2e52;     /* lifted navy for dark-surface panels */
  --midnight-3:  #24365c;
  --coral:       #FF6B5C;
  --coral-press: #ef5546;
  --ice:         #C5D6F2;
  --cream:       #F8F7F2;
  --coral-wash:  #FFEDEA;
  --stone:       #D8DCE3;

  /* roles — light surface */
  --bg:        #F8F7F2;       /* cream paper */
  --bg-2:      #fbfaf6;
  --bg-3:      #efeee7;
  --card:      #ffffff;
  --ink:       #0F1E3D;       /* midnight body text */
  --ink-2:     #3a4763;       /* secondary */
  --muted:     #647089;       /* muted slate */
  --faint:     #98a1b3;
  --line:      #D8DCE3;       /* stone */
  --line-2:    #e8eaef;

  /* coral — readable variants */
  --coral-ink-s: #d44a3b;     /* coral for small text/links on light */
  --coral-soft:  #FFEDEA;     /* wash */
  --coral-line:  #ffc9c1;

  /* support tints (kept minimal, derived) */
  --tint-ice:   #eaf0fb;
  --tint-cream: #f3f1e9;
  --ic-ice:     #3a4763;

  --shadow-sm: 0 1px 2px rgba(15,30,61,0.06), 0 1px 1px rgba(15,30,61,0.04);
  --shadow-md: 0 4px 16px rgba(15,30,61,0.08), 0 1px 3px rgba(15,30,61,0.05);
  --shadow-lg: 0 26px 60px rgba(15,30,61,0.14), 0 6px 18px rgba(15,30,61,0.08);
  --shadow-xl: 0 44px 96px rgba(15,30,61,0.18), 0 12px 30px rgba(15,30,61,0.10);

  --maxw: 1200px;
  --r: 12px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", Calibri, -apple-system, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* accent driver (tweakable) — defaults to coral */
  --accent:      var(--coral);
  --accent-press:var(--coral-press);
  --accent-soft: var(--coral-soft);
  --accent-line: var(--coral-line);
  --accent-ink:  var(--coral-ink-s);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.006em;
  overflow-x: hidden;
}
::selection { background: var(--coral-wash); color: var(--coral-ink-s); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 32px; }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-ink-s);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 20px; height: 2px;
  background: var(--coral);
}
.eyebrow.center::before { display: none; }
.eyebrow.on-dark { color: var(--coral); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
}
.display {
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.97;
  letter-spacing: -0.035em;
  font-weight: 500;
}
.display em { font-style: italic; font-weight: 500; color: var(--coral); }
h1.section-title, h2.section-title { font-size: clamp(32px, 4.2vw, 52px); letter-spacing: -0.028em; }
h3 { font-size: 21px; letter-spacing: -0.015em; font-weight: 600; }
.lead { font-size: clamp(18px, 2vw, 21px); line-height: 1.55; color: var(--ink-2); letter-spacing: -0.008em; font-weight: 400; }
.muted { color: var(--muted); }
.accent-line { font-family: var(--serif); font-style: italic; color: var(--coral); font-weight: 500; }
.num-coral { color: var(--coral-ink-s); font-variant-numeric: tabular-nums; }

p { text-wrap: pretty; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 500; font-size: 15px;
  padding: 12px 22px; border-radius: 8px; border: 1px solid transparent;
  cursor: pointer; transition: all .18s ease; letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn-accent { background: var(--coral); color: #fff; }
.btn-accent:hover { background: var(--coral-press); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(255,107,92,0.34); }
.btn-dark { background: var(--midnight); color: var(--cream); }
.btn-dark:hover { background: var(--midnight-2); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: #fff; border-color: var(--muted); }
.btn-soon { background: var(--bg-2); color: var(--faint); border-color: var(--line); cursor: default; pointer-events: none; font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn .arr { transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- brand lockup — nine-cell grid mark (2026 logo) ----------
   The mark is drawn from two masked layers so it takes its colour from the
   palette tokens: eight ink cells + the one coral cell (bottom-right, always).
   The "dr" text inside .mono-circle is left in the HTML and hidden here, so
   no page markup had to change. */
.brand { display: flex; align-items: center; gap: 10px; }
.brand .mono-circle {
  position: relative; display: block;
  width: 30px; height: 30px; flex: 0 0 auto;
  border-radius: 0; background: none;
  font-size: 0; line-height: 0; color: transparent;
}
.brand .mono-circle::before,
.brand .mono-circle::after {
  content: ""; position: absolute; inset: 0;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center;  mask-position: center;
  -webkit-mask-size: contain;     mask-size: contain;
}
.brand .mono-circle::before {
  background: var(--ink);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2064%2064'%3E%3Cpath%20d='M0%200h16v16H0zM24%200h16v16H24zM48%200h16v16H48zM0%2024h16v16H0zM24%2024h16v16H24zM48%2024h16v16H48zM0%2048h16v16H0zM24%2048h16v16H24z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2064%2064'%3E%3Cpath%20d='M0%200h16v16H0zM24%200h16v16H24zM48%200h16v16H48zM0%2024h16v16H0zM24%2024h16v16H24zM48%2024h16v16H48zM0%2048h16v16H0zM24%2048h16v16H24z'/%3E%3C/svg%3E");
}
.brand .mono-circle::after {
  background: var(--coral);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2064%2064'%3E%3Cpath%20d='M48%2048h16v16H48z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2064%2064'%3E%3Cpath%20d='M48%2048h16v16H48z'/%3E%3C/svg%3E");
}
.brand.on-dark .mono-circle::before { background: var(--cream); }
.brand .wordmark { font-family: var(--serif); font-weight: 600; font-size: 18px; letter-spacing: -0.022em; color: var(--ink); white-space: nowrap; }
.brand .wordmark .dot { color: var(--coral); }
.brand.on-dark .wordmark { color: var(--cream); }
/* the footer sits on the light ground, so a footer lockup marked .on-dark
   must stay ink — otherwise the wordmark renders cream on cream */
.foot-brand .brand.on-dark .wordmark { color: var(--ink); }
.foot-brand .brand.on-dark .mono-circle::before { background: var(--ink); }

/* ---------- nav ---------- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,247,242,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
header.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 14.5px; color: var(--ink-2); font-weight: 450; transition: color .15s; white-space: nowrap; }
@media (max-width: 1040px) { .nav-links { gap: 22px; } }
@media (max-width: 940px) { .nav-links { display: none; } }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* product dropdown */
.nav-dd { position: relative; display: flex; align-items: center; }
.nav-dd-btn { font-family: var(--sans); font-size: 14.5px; line-height: 1.5; color: var(--ink-2); font-weight: 450; background: none; border: 0; cursor: pointer; padding: 0; transition: color .15s; }
.nav-dd-btn:hover, .nav-dd.open .nav-dd-btn, .nav-dd:hover .nav-dd-btn { color: var(--ink); }
.nav-dd .caret { display: inline-block; font-size: 9px; margin-left: 5px; vertical-align: 1.5px; transition: transform .18s; }
.nav-dd.open .caret, .nav-dd:hover .caret { transform: rotate(180deg); }
.nav-dd-menu { position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(-6px); min-width: 264px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transition: opacity .16s ease, transform .16s ease; z-index: 60; }
.nav-dd-menu::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav-dd:hover .nav-dd-menu, .nav-dd.open .nav-dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dd-menu a { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border-radius: 9px; transition: background .14s; }
.nav-dd-menu a:hover { background: var(--bg-2); }
.nav-dd-menu a .t { font-size: 14px; font-weight: 500; color: var(--ink); }
.nav-dd-menu a .d { font-size: 12px; color: var(--muted); line-height: 1.35; }
.nav-dd-menu a.on { background: var(--bg-2); }
.nav-dd-menu a.on .t { color: var(--coral-ink-s); }

/* mobile hamburger + menu */
.nav-burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: var(--card); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 4px; flex: 0 0 auto; }
.nav-burger span { display: block; width: 17px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; left: 0; right: 0; top: 72px; bottom: 0; background: var(--bg); z-index: 49; padding: 20px 22px 44px; overflow-y: auto; flex-direction: column; }
.mobile-menu.open { display: flex; }
.mobile-menu .mm-group { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); margin: 18px 0 4px; }
.mobile-menu a { font-family: var(--serif); font-size: 22px; color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.mobile-menu a.sub { font-family: var(--sans); font-size: 16px; font-weight: 500; color: var(--ink-2); padding: 11px 0 11px 4px; }
.mobile-menu .mm-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu .mm-cta .btn { width: 100%; justify-content: center; }
.mobile-menu .mm-cta a { border-bottom: none; padding: 0; }
@media (max-width: 940px) { .nav-burger { display: flex; } .nav-cta { display: none; } }
@media (min-width: 941px) { .mobile-menu { display: none !important; } }

/* compact Sign up that rides next to the hamburger on phones/tablets */
.nav-cta-m { display: none; }
@media (max-width: 940px) {
  .nav-cta-m { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
    height: 38px; padding: 0 15px; margin-left: auto; margin-right: 10px;
    font-size: 14px; line-height: 1; white-space: nowrap; border-radius: 999px; }
}
@media (max-width: 400px) { .nav-cta-m { height: 36px; padding: 0 13px; font-size: 13.5px; margin-right: 8px; } }
@media (max-width: 340px) { .brand .wordmark { display: none; } }
.nav-cta .link { font-size: 14.5px; color: var(--ink-2); font-weight: 500; padding: 8px 4px; }
.nav-cta .link:hover { color: var(--ink); }
@media (max-width: 900px) { .nav-links { display: none; } .nav-cta .sales-link { display: none; } }

/* ---------- section rhythm ---------- */
section { position: relative; }
.sec-pad { padding: 112px 0; }
.sec-pad-sm { padding: 76px 0; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.sec-head { max-width: 740px; }
.sec-head.center { margin: 0 auto; }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-head h1, .sec-head h2 { margin: 0; }
.sec-head .lead { margin-top: 22px; }

/* ---------- hero ---------- */
.hero { padding: 70px 0 36px; position: relative; }
.hero-grid::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(15,30,61,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 78% 56% at 50% 28%, #000 30%, transparent 74%);
  mask-image: radial-gradient(ellipse 78% 56% at 50% 28%, #000 30%, transparent 74%);
}
.hero-inner { text-align: center; max-width: 940px; margin: 0 auto; }
.hero .display { margin: 24px 0 0; }
.hero .lead { margin: 26px auto 0; max-width: 600px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.hero-note { margin-top: 20px; font-size: 13.5px; color: var(--muted); display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--coral); }

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 15px 6px 7px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--line);
  font-size: 13px; color: var(--ink-2); box-shadow: var(--shadow-sm);
  font-weight: 450; white-space: nowrap; max-width: 100%;
}
.pill .tag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em;
  text-transform: uppercase; background: var(--coral-wash); color: var(--coral-ink-s);
  padding: 3px 9px; border-radius: 999px; font-weight: 500; white-space: nowrap; flex: 0 0 auto;
}

/* ---------- product frame ---------- */
.browser {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-xl); overflow: hidden;
}
.hero-shot { margin-top: 58px; position: relative; }
.hero-app-shot { display: block; width: 100%; height: auto; }
.browser-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--line-2); background: var(--bg-2); }
.browser-bar .dots { display: flex; gap: 7px; }
.browser-bar .dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line); display: block; }
.browser-bar .url {
  margin-left: 10px; font-family: var(--mono); font-size: 12px; color: var(--faint);
  background: var(--card); border: 1px solid var(--line-2); border-radius: 7px;
  padding: 5px 12px; flex: 1; max-width: 340px;
}
.browser-bar .url b { color: var(--ink-2); font-weight: 500; }

/* ============ product mockup primitives ============ */
.app { font-family: var(--sans); color: var(--ink); background: var(--card); }
.app-top { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--line-2); }
.app-co { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 14px; }
.app-co .av { width: 26px; height: 26px; border-radius: 7px; background: var(--midnight); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.app-search { font-size: 12.5px; color: var(--faint); border: 1px solid var(--line); border-radius: 8px; padding: 6px 12px; min-width: 210px; display: flex; align-items: center; gap: 8px; }
.app-tabs { display: flex; gap: 22px; padding: 0 18px; border-bottom: 1px solid var(--line-2); overflow: hidden; }
.app-tabs .t { padding: 12px 0; font-size: 13px; color: var(--muted); border-bottom: 2px solid transparent; display: flex; align-items: center; gap: 7px; font-weight: 450; white-space: nowrap; }
.app-tabs .t.on { color: var(--ink); border-bottom-color: var(--coral); font-weight: 600; }
.app-tabs .t .gi { color: var(--faint); }
.app-tabs .t.on .gi { color: var(--coral); }

/* AI mark — coral, never purple (brand anti-pattern) */
.ai-mark { width: 34px; height: 34px; border-radius: 9px; background: var(--coral); display: grid; place-items: center; color: #fff; box-shadow: 0 6px 16px rgba(255,107,92,0.3); }

/* chat empty state */
.chat-empty { text-align: center; padding: 30px 0 22px; }
.chat-empty .ai-mark { margin: 0 auto 16px; }
.chat-empty h4 { font-family: var(--serif); font-size: 24px; font-weight: 500; letter-spacing: -0.02em; }
.chat-empty p { font-size: 13px; color: var(--muted); margin-top: 6px; }
.chip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; max-width: 560px; margin: 22px auto 0; }
.chip {
  display: flex; align-items: center; gap: 11px; text-align: left;
  border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px;
  font-size: 13px; color: var(--ink-2); background: var(--card); transition: all .15s;
}
.chip:hover { border-color: var(--coral-line); box-shadow: var(--shadow-sm); }
.chip .ci { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; flex: 0 0 auto; background: var(--tint-ice); color: var(--ink); }
.chip .ci.coral { background: var(--coral-wash); color: var(--coral-ink-s); }

.ask-bar {
  margin: 22px auto 0; max-width: 560px; border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 14px; display: flex; align-items: center; justify-content: space-between;
  color: var(--faint); font-size: 13px; box-shadow: var(--shadow-sm);
}
.ask-bar .send { width: 30px; height: 30px; border-radius: 7px; background: var(--coral); display: grid; place-items: center; color: #fff; }

/* context panel */
.ctx { border-left: 1px solid var(--line-2); padding: 16px; background: var(--bg); }
.ctx-card { border: 1px solid var(--line); border-radius: 11px; padding: 14px; background: var(--card); }
.ctx-co { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ctx-co .av { width: 34px; height: 34px; border-radius: 9px; background: var(--midnight); color: #fff; display: grid; place-items: center; }
.ctx-co b { font-size: 14px; font-weight: 600; }
.ctx-co span { font-size: 11px; color: var(--faint); display: block; }
.ctx-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.ctx-stat .k { font-size: 10.5px; color: var(--faint); display: flex; align-items: center; gap: 5px; }
.ctx-stat .v { font-size: 15px; font-weight: 600; margin-top: 2px; }
.ctx-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); margin: 16px 0 8px; }

.badge-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: #1f7a4d; background: #e6f4ec; padding: 3px 9px; border-radius: 999px; font-weight: 500; }
.badge-live .d { width: 6px; height: 6px; border-radius: 50%; background: #1f9d57; box-shadow: 0 0 0 3px rgba(31,157,87,0.18); }

/* ---------- feature pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 58px; }
.pillar {
  border: 1px solid var(--line); border-radius: var(--r); padding: 32px; background: var(--card);
  transition: all .2s ease; position: relative; overflow: hidden;
}
.pillar::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--coral); opacity: 0; transition: opacity .2s; }
.pillar:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pillar:hover::before { opacity: 1; }
.pillar .pic { width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 20px; background: var(--midnight); color: var(--cream); }
.pillar .pic.coral { background: var(--coral-wash); color: var(--coral-ink-s); }
.pillar h3 { margin-bottom: 10px; }
.pillar p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.pillar .more { margin-top: 18px; font-size: 12px; color: var(--coral-ink-s); font-weight: 600; font-family: var(--mono); letter-spacing: 0.02em; display: inline-flex; gap: 6px; align-items: center; text-transform: uppercase; }
@media (max-width: 760px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- showcase rows ---------- */
.showcase-row { display: grid; grid-template-columns: 1fr 1.12fr; gap: 64px; align-items: center; }
.showcase-row + .showcase-row { margin-top: 128px; }
.showcase-row.flip .showcase-copy { order: 2; }
.showcase-row.flip .showcase-art { order: 1; }
.showcase-copy h2 { font-size: clamp(29px, 3.6vw, 42px); margin: 20px 0 0; }
.showcase-copy .lead { margin-top: 20px; font-size: 18px; }
.feat-list { margin-top: 28px; display: flex; flex-direction: column; gap: 15px; }
.feat-list li { list-style: none; display: flex; gap: 13px; font-size: 15px; color: var(--ink-2); }
.feat-list .ck { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 6px; background: var(--coral-wash); color: var(--coral-ink-s); display: grid; place-items: center; margin-top: 1px; }
.showcase-art { position: relative; }
.art-frame { background: var(--card); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; }
@media (max-width: 900px) {
  .showcase-row { grid-template-columns: 1fr; gap: 38px; }
  .showcase-row.flip .showcase-copy { order: 1; }
  .showcase-row.flip .showcase-art { order: 2; }
}

/* ---------- cap table mock ---------- */
.cap { padding: 18px; font-size: 12.5px; }
.cap-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cap-head h5 { font-family: var(--serif); font-size: 18px; font-weight: 600; }
.tbl { width: 100%; border-collapse: collapse; }
.tbl th { text-align: left; font-size: 10px; font-family: var(--mono); letter-spacing: 0.04em; text-transform: uppercase; color: var(--faint); font-weight: 500; padding: 0 0 10px; border-bottom: 1px solid var(--line-2); }
.tbl th.r, .tbl td.r { text-align: right; }
.tbl td { padding: 11px 0; border-bottom: 1px solid var(--line-2); color: var(--ink-2); }
.tbl tr:last-child td { border-bottom: none; }
.tbl .who { display: flex; align-items: center; gap: 9px; font-weight: 500; color: var(--ink); }
.tbl .who .sw { width: 9px; height: 9px; border-radius: 3px; }
.tbl .num { font-variant-numeric: tabular-nums; }
.bar { height: 6px; border-radius: 3px; background: var(--bg-3); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 3px; }

/* ---------- what-if mock ---------- */
.whatif { padding: 18px; }
.scn-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.scn-tab { font-size: 11.5px; padding: 6px 12px; border-radius: 7px; border: 1px solid var(--line); color: var(--muted); }
.scn-tab.on { background: var(--midnight); color: #fff; border-color: var(--midnight); }
.scn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.scn-card { border: 1px solid var(--line); border-radius: 11px; padding: 14px; }
.scn-card.hl { border-color: var(--coral-line); background: var(--coral-wash); }
.scn-card .lbl { font-size: 10px; font-family: var(--mono); letter-spacing: 0.04em; text-transform: uppercase; color: var(--faint); }
.scn-card .big { font-family: var(--serif); font-size: 27px; font-weight: 600; margin-top: 6px; letter-spacing: -0.02em; }
.scn-card.hl .big { color: var(--coral-ink-s); }
.scn-card .delta { font-size: 12px; margin-top: 4px; font-weight: 500; }
.delta.up { color: #1f9d57; }
.delta.down { color: var(--coral-ink-s); }
.scn-row { display: flex; justify-content: space-between; font-size: 12.5px; padding: 9px 0; border-bottom: 1px solid var(--line-2); }
.scn-row:last-child { border-bottom: none; }
.scn-row .nm { color: var(--ink-2); }
.scn-row .vl { font-variant-numeric: tabular-nums; font-weight: 500; }

/* ---------- benchmarks mock ---------- */
.bench { padding: 20px; }
.bench-rows { display: flex; flex-direction: column; gap: 17px; margin-top: 6px; }
.bench-row .top { display: flex; justify-content: space-between; font-size: 12.5px; margin-bottom: 7px; }
.bench-row .top .nm { color: var(--ink); font-weight: 500; }
.bench-row .top .vl { color: var(--muted); font-family: var(--mono); font-size: 11.5px; }
.bench-track { height: 9px; background: var(--bg-3); border-radius: 5px; position: relative; }
.bench-track .fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 5px; background: var(--ice); }
.bench-track .you { position: absolute; top: -4px; width: 3px; height: 17px; border-radius: 2px; background: var(--coral); }
.bench-track .you::after { content: "YOU"; position: absolute; top: -16px; left: 50%; transform: translateX(-50%); font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.06em; color: var(--coral-ink-s); }

/* ---------- dark value strip (left coral edge motif) ---------- */
.strip { background: var(--midnight); color: var(--cream); position: relative; }
.strip::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--coral); }
.strip .eyebrow { color: var(--coral); }
.strip .eyebrow::before { background: var(--coral); }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 14px; }
.metric { padding: 14px 30px; border-left: 1px solid rgba(197,214,242,0.18); }
.metric:first-child { border-left: none; padding-left: 0; }
.metric .big { font-family: var(--serif); font-size: clamp(42px, 5vw, 62px); font-weight: 500; letter-spacing: -0.025em; color: var(--cream); }
.metric .big em { font-style: italic; color: var(--coral); }
.metric .cap-t { font-size: 14px; color: var(--ice); margin-top: 8px; line-height: 1.45; }
@media (max-width: 760px) { .metrics { grid-template-columns: 1fr; } .metric { border-left: none; border-top: 1px solid rgba(197,214,242,0.18); padding: 22px 0; } .metric:first-child { border-top: none; padding-top: 0; } }

/* ---------- advisors ---------- */
.adv-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .adv-grid { grid-template-columns: 1fr; gap: 38px; } }
.portfolio { background: var(--card); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; }
.pf-top { padding: 16px 18px; border-bottom: 1px solid var(--line-2); display: flex; align-items: center; justify-content: space-between; }
.pf-top .ttl { font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 9px; }
.pf-top .ct { font-family: var(--mono); font-size: 11px; color: var(--faint); }
.pf-row { display: flex; align-items: center; gap: 14px; padding: 15px 18px; border-bottom: 1px solid var(--line-2); }
.pf-row:last-child { border-bottom: none; }
.pf-row .av { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; font-weight: 700; font-size: 13px; flex: 0 0 auto; background: var(--midnight); color: #fff; }
.pf-row .nm { font-weight: 500; font-size: 14px; }
.pf-row .sub { font-size: 11.5px; color: var(--faint); }
.pf-row .status { margin-left: auto; font-size: 10.5px; font-family: var(--mono); letter-spacing: 0.02em; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; }
.st-ready { background: #e6f4ec; color: #1f7a4d; }
.st-review { background: var(--coral-wash); color: var(--coral-ink-s); }
.st-draft { background: var(--bg-3); color: var(--muted); }

/* ---------- security ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.trust-card { border: 1px solid var(--line); border-radius: var(--r); padding: 28px; background: var(--card); }
.trust-card .ti { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-3); display: grid; place-items: center; color: var(--midnight); margin-bottom: 18px; }
.trust-card h3 { font-size: 17px; margin-bottom: 9px; font-family: var(--sans); font-weight: 600; letter-spacing: -0.01em; }
.trust-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
@media (max-width: 820px) { .trust-grid { grid-template-columns: 1fr; } }

/* ---------- comparison ---------- */
.cmp { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-top: 50px; background: var(--card); }
.cmp table { width: 100%; border-collapse: collapse; }
.cmp th, .cmp td { padding: 18px 22px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--line-2); }
.cmp thead th { font-weight: 500; font-size: 13px; color: var(--muted); background: var(--bg-2); }
.cmp .col-us { background: var(--coral-wash); }
.cmp thead th.us { color: var(--ink); background: var(--coral-wash); border-bottom: 1px solid var(--coral-line); }
.cmp td.feat { font-weight: 500; color: var(--ink); width: 40%; }
.cmp td .yes { color: var(--coral-ink-s); font-weight: 700; }
.cmp td .no { color: var(--faint); }
.cmp tr:last-child td { border-bottom: none; }
.cmp .us-tag { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); font-family: var(--serif); }
.cmp .us-tag .dotm { width: 18px; height: 18px; border-radius: 50%; background: var(--coral); }
@media (max-width: 760px) { .cmp { overflow-x: auto; } .cmp table { min-width: 620px; } }

/* ---------- pricing ---------- */
.bill-toggle { display: inline-flex; gap: 4px; margin-top: 26px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: var(--card); }
.bill-toggle .bt { font: inherit; font-size: 13px; font-weight: 500; cursor: pointer; border: 0; background: transparent; color: var(--muted); padding: 8px 18px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px; transition: background .15s ease, color .15s ease; }
.bill-toggle .bt.on { background: var(--midnight); color: var(--cream); }
.bill-toggle .bt-save { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--coral-ink-s); background: var(--coral-wash); padding: 2px 7px; border-radius: 999px; }
.bill-toggle .bt.on .bt-save { background: rgba(255,255,255,0.16); color: var(--cream); }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 54px; align-items: stretch; }
.price-card { border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px; background: var(--card); display: flex; flex-direction: column; }
.price-card.feature { border-color: var(--midnight); box-shadow: var(--shadow-lg); position: relative; }
.price-card.feature .ribbon { position: absolute; top: -11px; left: 24px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; background: var(--coral); color: #fff; padding: 4px 11px; border-radius: 999px; }
.price-card .tier { font-size: 14px; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; font-family: var(--mono); color: var(--muted); }
.price-card .price { font-family: var(--serif); font-size: 44px; font-weight: 500; margin: 14px 0 2px; letter-spacing: -0.03em; }
.price-card .price .per { font-family: var(--sans); font-size: 14px; color: var(--faint); font-weight: 400; letter-spacing: 0; }
.price-card .price-bill { font-family: var(--mono); font-size: 11.5px; color: var(--faint); letter-spacing: 0.02em; margin-bottom: 12px; min-height: 16px; }
.price-card .blurb { font-size: 13px; color: var(--muted); min-height: 40px; }
.price-card .btn { width: 100%; justify-content: center; margin: 18px 0 22px; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 13.5px; color: var(--ink-2); }
.price-feats li { display: flex; gap: 10px; align-items: flex-start; }
.price-feats .ck { color: var(--coral-ink-s); flex: 0 0 auto; margin-top: 2px; }
.price-feats b { font-weight: 600; color: var(--ink); }
.price-note { text-align: center; margin-top: 28px; font-size: 13.5px; color: var(--muted); }
.price-feats .soon, .scale-table .soon, .ss-val .soon { font-style: normal; font-family: var(--mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--coral-ink-s); background: var(--coral-wash); padding: 2px 6px; border-radius: 999px; white-space: nowrap; }
.inc-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .inc-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .inc-4 { grid-template-columns: 1fr; } }
.scale-wrap { margin-top: 48px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--card); }
.scale-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.scale-table thead th { background: var(--bg-2); font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); font-weight: 500; padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--line); }
.scale-table thead th:first-child { text-align: left; }
.scale-table thead th.free { color: var(--coral-ink-s); }
.scale-table tbody th { text-align: left; font-weight: 600; color: var(--ink); padding: 14px 16px; border-bottom: 1px solid var(--line-2); font-size: 13.5px; }
.scale-table td { padding: 14px 16px; border-bottom: 1px solid var(--line-2); color: var(--ink-2); text-align: center; line-height: 1.5; }
.scale-table td.free { background: var(--coral-wash); color: var(--ink); }
.scale-table tbody tr:last-child th, .scale-table tbody tr:last-child td { border-bottom: none; }
.scale-table .dash { color: #c9d1de; }
.scale-table .yes, .ss-val .yes { color: #1f9d57; font-weight: 600; }
.scale-foot { text-align: center; margin-top: 20px; font-size: 13px; color: var(--faint); max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.scale-stack { display: none; }
.ss-card { border: 1px solid var(--line); border-radius: 12px; background: var(--card); overflow: hidden; }
.ss-card.free { border-color: var(--coral); }
.ss-head { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); background: var(--bg-2); padding: 12px 16px; border-bottom: 1px solid var(--line); }
.ss-card.free .ss-head { color: var(--coral-ink-s); background: var(--coral-wash); }
.ss-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 11px 16px; border-bottom: 1px solid var(--line-2); }
.ss-row:last-child { border-bottom: none; }
.ss-lbl { font-size: 13px; color: var(--muted); }
.ss-val { font-size: 13.5px; color: var(--ink); font-weight: 500; text-align: right; }
.ss-val .dash { color: #c9d1de; font-weight: 400; }
@media (max-width: 820px) {
  .scale-wrap { display: none; }
  .scale-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 40px; }
}
@media (max-width: 560px) { .scale-stack { grid-template-columns: 1fr; } }
.cred-head { text-align: center; margin-top: 46px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--faint); }
.cred-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 22px; align-items: end; }
.cred-card { border: 1px solid var(--line); border-radius: var(--r); background: var(--card); padding: 22px 20px 20px; position: relative; overflow: hidden; transition: all .2s ease; }
.cred-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cred-card.best { border-color: var(--midnight); box-shadow: var(--shadow-sm); }
.cred-amt { font-family: var(--serif); font-size: 32px; font-weight: 500; letter-spacing: -0.02em; color: var(--ink); line-height: 1; }
.cred-cr { margin-top: 8px; font-size: 14px; font-weight: 600; color: var(--ink); }
.cred-rate { margin-top: 4px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.03em; color: var(--coral-ink-s); }
.cred-bar { position: absolute; right: 0; bottom: 0; width: 4px; height: var(--h, 40%); background: var(--coral); opacity: .5; }
.cred-card.best .cred-bar { opacity: 1; }
@media (max-width: 820px) { .cred-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 359px) { .cred-grid { grid-template-columns: 1fr; } }
@media (max-width: 1000px) { .price-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .price-grid { grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-intro { max-width: 460px; }
.contact-email { display: inline-block; margin-top: 26px; font-family: var(--mono); font-size: 14px; color: var(--coral-ink-s); text-decoration: none; border-bottom: 1px solid var(--coral-line); padding-bottom: 2px; transition: border-color .15s ease; }
.contact-email:hover { border-bottom-color: var(--coral); }
.contact-form { border: 1px solid var(--line); border-radius: var(--r); background: var(--card); padding: 32px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 18px; }
.contact-form .field { display: flex; flex-direction: column; gap: 7px; }
.contact-form label { font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--mono); color: var(--muted); }
.contact-form input, .contact-form textarea { font: inherit; font-size: 15px; color: var(--ink); background: var(--bg-2); border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px; transition: border-color .15s ease, box-shadow .15s ease; }
.contact-form textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--faint); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px var(--coral-wash); }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.contact-note { font-size: 12.5px; color: var(--faint); text-align: center; margin: 0; line-height: 1.5; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 34px; } .contact-intro { max-width: none; } }

/* ---------- final CTA (dark, left coral edge) ---------- */
.final-card {
  background: var(--midnight); color: var(--cream); border-radius: 24px; padding: 84px 40px;
  position: relative; overflow: hidden; text-align: center;
}
.final-card::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--coral); }
.final-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(197,214,242,0.10) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000, transparent 70%);
}
.final-card > * { position: relative; }
.final-card .display { color: var(--cream); font-size: clamp(38px, 5.4vw, 68px); }
.final-card .display em { color: var(--coral); }
.final-card .lead { color: var(--ice); margin: 24px auto 0; max-width: 520px; }
.final-card .hero-cta { margin-top: 36px; }
.final-card .btn-ghost { color: var(--cream); border-color: rgba(197,214,242,0.28); }
.final-card .btn-ghost:hover { background: rgba(197,214,242,0.10); border-color: rgba(197,214,242,0.5); }

/* ---------- feature pages ---------- */
.breadcrumb { display: flex; align-items: center; gap: 9px; flex-wrap: nowrap; white-space: nowrap; font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em; color: var(--muted); margin-bottom: 30px; }
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--coral-ink-s); }
.breadcrumb .sep { color: var(--faint); }
.breadcrumb .cur { color: var(--ink); }

.feat-hero { padding: 56px 0 28px; }
.feat-hero-grid { display: grid; grid-template-columns: 1.05fr 1.1fr; gap: 60px; align-items: center; }
.feat-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 5.1vw, 64px); line-height: 1.04; letter-spacing: -0.028em; }
.feat-hero h1 em { font-style: italic; color: var(--coral); }
.feat-hero .lead { margin-top: 22px; max-width: 36ch; }
.feat-hero .hero-cta { display: flex; gap: 12px; margin-top: 32px; }
.feat-hero .hero-note { margin-top: 26px; }
@media (max-width: 940px) { .feat-hero-grid { grid-template-columns: 1fr; gap: 40px; } .feat-hero .lead { max-width: none; } }

.feat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
@media (max-width: 880px) { .feat-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feat-cards { grid-template-columns: 1fr; } }

.faq-wrap { max-width: 840px; margin: 48px auto 0; }
.faq-item { border-top: 1px solid var(--line); padding: 28px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; letter-spacing: -0.012em; color: var(--ink); }
.faq-item p { margin-top: 11px; color: var(--ink-2); line-height: 1.62; max-width: 70ch; }
.faq-item p + p { margin-top: 12px; }
.faq-item p a { color: var(--coral-ink-s); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.faq-item p a:hover { color: var(--ink); text-decoration-thickness: 2px; }

.xlinks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.xlink { display: flex; flex-direction: column; gap: 7px; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--r); background: var(--card); transition: border-color .18s, transform .18s; }
.xlink:hover { border-color: var(--coral-line); transform: translateY(-2px); }
.xlink .xt { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--ink); }
.xlink .xd { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.xlink .xm { margin-top: 4px; font-family: var(--mono); font-size: 11px; color: var(--coral-ink-s); letter-spacing: 0.02em; }
@media (max-width: 820px) { .xlinks { grid-template-columns: 1fr; } }

/* ---------- product dropdown: "see all" footer link ---------- */
.nav-dd-menu .dd-sep { height: 1px; background: var(--line-2); margin: 7px 6px; }
.nav-dd-menu a.dd-all { flex-direction: row; align-items: center; justify-content: space-between; }
.nav-dd-menu a.dd-all .t { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--coral-ink-s); font-weight: 500; }
.nav-dd-menu a.dd-all .arr { color: var(--coral-ink-s); transition: transform .15s ease; }
.nav-dd-menu a.dd-all:hover .arr { transform: translateX(3px); }

/* ---------- full features page ---------- */
.fx-nav { position: sticky; top: 72px; z-index: 20; background: rgba(248,247,242,0.9); backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); }
.fx-nav-inner { display: flex; gap: 8px; overflow-x: auto; padding: 12px 0; scrollbar-width: none; }
.fx-nav-inner::-webkit-scrollbar { display: none; }
.fx-nav a { flex: 0 0 auto; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.02em; color: var(--muted); padding: 7px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--card); transition: all .14s ease; white-space: nowrap; }
.fx-nav a:hover { color: var(--ink); border-color: var(--muted); }
.fx-nav a.active { color: var(--coral-ink-s); border-color: var(--coral-line); background: var(--coral-wash); }

.fx-cat { padding-top: 66px; scroll-margin-top: 140px; }
.fx-cat:first-of-type { padding-top: 60px; }
.cat-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 30px; }
.cat-head h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3.2vw, 36px); letter-spacing: -0.02em; margin: 0; }
.cat-head .cat-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; align-self: center; }
.cat-tag.core { background: var(--bg-3); color: var(--muted); }
.cat-tag.new { background: var(--coral-wash); color: var(--coral-ink-s); }
.cat-tag.admin { background: var(--tint-ice); color: var(--ic-ice); }
.cat-head .cat-count { margin-left: auto; font-family: var(--mono); font-size: 11.5px; color: var(--faint); align-self: center; }
.cat-intro { max-width: 68ch; color: var(--ink-2); font-size: 16.5px; line-height: 1.6; margin: -14px 0 30px; }

.fx-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.fx-card { border: 1px solid var(--line); border-radius: var(--r); background: var(--card); padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 14px; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.fx-card:hover { border-color: var(--coral-line); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.fx-card h3 { font-family: var(--sans); font-size: 16px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.fx-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fx-card li { font-size: 14px; line-height: 1.5; color: var(--muted); padding-left: 17px; position: relative; }
.fx-card li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 1.5px; background: var(--coral); }
.fx-card li b { color: var(--ink); font-weight: 600; }

.fx-note { display: flex; gap: 14px; align-items: flex-start; background: var(--coral-wash); border: 1px solid var(--coral-line); border-radius: 12px; padding: 16px 18px; margin-top: 22px; max-width: 74ch; }
.fx-note .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral-ink-s); white-space: nowrap; padding-top: 3px; }
.fx-note p { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.fx-note p b { color: var(--ink); font-weight: 600; }

.fx-trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px 40px; }
.fx-trust .ti { display: flex; flex-direction: column; gap: 5px; padding-left: 16px; position: relative; }
.fx-trust .ti::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 2px; background: var(--coral-line); }
.fx-trust dt { font-size: 15px; font-weight: 600; color: var(--ink); }
.fx-trust dd { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--muted); }

/* home pricing teaser */
.price-teaser-row { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 12px 30px; font-size: 16px; color: var(--ink-2); }
.price-teaser-row span { white-space: nowrap; display: inline-flex; align-items: baseline; gap: 7px; }
.price-teaser-row b { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--ink); }
.price-teaser-row .soon { font-style: normal; font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); border: 1px solid var(--line); border-radius: 5px; padding: 1px 5px; align-self: center; }

/* ---------- learn hub ---------- */
.learn-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.learn-card { display: flex; flex-direction: column; gap: 11px; padding: 30px; border: 1px solid var(--line); border-radius: var(--r); background: var(--card); transition: border-color .18s, transform .18s; }
.learn-card:hover { border-color: var(--coral-line); transform: translateY(-2px); }
.learn-card .kicker { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--coral-ink-s); }
.learn-card h3 { font-family: var(--serif); font-weight: 500; font-size: 23px; letter-spacing: -0.015em; color: var(--ink); }
.learn-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.learn-card .rm { margin-top: auto; font-family: var(--mono); font-size: 11px; color: var(--coral-ink-s); letter-spacing: 0.02em; }
@media (max-width: 720px) { .learn-grid { grid-template-columns: 1fr; } }

/* ---------- article ---------- */
.article-wrap { max-width: 720px; margin: 0 auto; }
.article-title { font-family: var(--serif); font-weight: 500; font-size: clamp(34px, 4.6vw, 52px); line-height: 1.07; letter-spacing: -0.022em; margin-top: 16px; }
.article-lead { font-size: 20px; line-height: 1.5; color: var(--ink-2); margin-top: 20px; }
.article-meta { font-family: var(--mono); font-size: 12px; color: var(--faint); margin-top: 18px; }
.article-body > * + * { margin-top: 20px; }
.article-body h2 { font-family: var(--serif); font-weight: 500; font-size: 28px; letter-spacing: -0.015em; margin-top: 46px; color: var(--ink); }
.article-body h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; margin-top: 32px; color: var(--ink); }
.article-body p { font-size: 17px; line-height: 1.7; color: var(--ink-2); }
.article-body ul, .article-body ol { padding-left: 22px; display: flex; flex-direction: column; gap: 10px; }
.article-body li { font-size: 17px; line-height: 1.6; color: var(--ink-2); }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body a { color: var(--coral-ink-s); text-decoration: underline; text-underline-offset: 2px; }
.callout { border: 1px solid var(--coral-line); background: var(--coral-wash); border-radius: 14px; padding: 24px 26px; margin-top: 38px; }
.callout h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--coral-ink-s); margin-bottom: 13px; }
.callout ul { padding-left: 18px; display: flex; flex-direction: column; gap: 9px; margin: 0; }
.callout li { font-size: 15px; line-height: 1.5; color: var(--ink-2); }
.article-cta { margin-top: 50px; padding: 36px 32px; border-radius: 18px; background: var(--midnight); color: var(--cream); text-align: center; position: relative; overflow: hidden; }
.article-cta::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--coral); }
.article-cta h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; color: var(--cream); }
.article-cta p { color: var(--ice); margin-top: 10px; font-size: 15px; }
.article-cta .btn { margin-top: 20px; }
.related { margin-top: 56px; border-top: 1px solid var(--line); padding-top: 30px; }
.related h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); margin-bottom: 18px; }
.related-links { display: flex; flex-direction: column; gap: 13px; }
.related-links a { font-family: var(--serif); font-size: 18px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color .15s; }
.related-links a:hover { color: var(--coral-ink-s); }
.related-links a .ra { font-family: var(--mono); font-size: 13px; color: var(--coral-ink-s); }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); padding: 66px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand .brand { margin-bottom: 18px; }
.foot-brand p { font-size: 14px; color: var(--muted); max-width: 290px; }
.foot-brand .promise { font-family: var(--serif); font-style: italic; color: var(--coral-ink-s); font-size: 15px; margin-top: 14px; }
.foot-col h6 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; font-weight: 500; }
.foot-col a { display: block; font-size: 14px; color: var(--ink-2); margin-bottom: 12px; transition: color .15s; }
.foot-col a:hover { color: var(--ink); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line-2); font-size: 13px; color: var(--faint); }
.foot-bottom .legal { display: flex; gap: 22px; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .foot-bottom { flex-direction: column; gap: 14px; text-align: center; } }

/* reveal on scroll — content is VISIBLE BY DEFAULT (never stuck hidden if
   JS/animation is throttled or the tab is backgrounded). The entrance is a
   pure decorative keyframe with no fill-mode, so the resting style always wins. */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal.in { animation: revealUp .7s cubic-bezier(.2,.7,.2,1); }
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 760px) {
  .sec-pad { padding: 78px 0; }
  .wrap, .wrap-narrow { padding: 0 22px; }
  .ctx { display: none; }
}

/* ---------- legal pages (privacy / terms) ---------- */
.legal-hero { padding: 134px 0 44px; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.legal-hero h1 { font-family: var(--serif); font-size: clamp(36px, 5.4vw, 60px); line-height: 1.0; letter-spacing: -0.02em; margin-top: 18px; }
.legal-meta { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 9px 14px; align-items: center; font-family: var(--mono); font-size: 12.5px; color: var(--muted); }
.legal-meta .updated { display: inline-flex; align-items: center; gap: 7px; color: var(--coral-ink-s); background: var(--coral-wash); border: 1px solid var(--coral-line); padding: 4px 11px; border-radius: 999px; }
.legal-meta .sep { color: var(--line); }
.legal-wrap { display: grid; grid-template-columns: 236px 1fr; gap: 60px; padding: 56px 0 100px; align-items: start; }
.legal-toc { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 1px; }
.legal-toc .toc-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 12px; padding-left: 14px; }
.legal-toc a { font-size: 13px; color: var(--muted); padding: 7px 14px; border-radius: 8px; border-left: 2px solid transparent; transition: color .14s, background .14s, border-color .14s; line-height: 1.4; }
.legal-toc a:hover { color: var(--ink); background: var(--bg-2); }
.legal-toc a.active { color: var(--coral-ink-s); border-left-color: var(--coral); background: var(--bg-2); font-weight: 500; }
.legal-body { max-width: 730px; }
.legal-lead p { font-size: 18px; color: var(--ink-2); line-height: 1.62; margin-bottom: 16px; }
.legal-body h2 { font-family: var(--serif); font-size: 25px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; margin: 54px 0 16px; scroll-margin-top: 92px; }
.legal-body h2:first-of-type { margin-top: 36px; }
.legal-body h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin: 30px 0 10px; }
.legal-body p { font-size: 15.5px; color: var(--ink-2); line-height: 1.74; margin-bottom: 16px; }
.legal-body a { color: var(--coral-ink-s); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.legal-list { margin: 6px 0 20px; display: flex; flex-direction: column; gap: 13px; }
.legal-list li { list-style: none; position: relative; padding-left: 26px; font-size: 15.5px; color: var(--ink-2); line-height: 1.66; }
.legal-list li::before { content: ""; position: absolute; left: 4px; top: 8px; width: 7px; height: 7px; border-radius: 2px; background: var(--coral-line); }
.legal-list li b { color: var(--ink); font-weight: 600; }
.legal-callout { border-left: 3px solid var(--coral); background: var(--coral-wash); padding: 16px 20px; border-radius: 0 11px 11px 0; font-size: 15.5px !important; color: var(--ink) !important; font-weight: 500; line-height: 1.6 !important; margin: 6px 0 18px; }
.legal-flag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral-ink-s); font-weight: 600; margin: 32px 0 6px; }
.legal-table-wrap { margin: 10px 0 22px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.legal-table th { text-align: left; background: var(--bg-2); font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--faint); font-weight: 500; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.legal-table td { padding: 14px 16px; border-bottom: 1px solid var(--line-2); color: var(--ink-2); vertical-align: top; line-height: 1.55; }
.legal-table td:first-child { font-weight: 600; color: var(--ink); }
.legal-table tr:last-child td { border-bottom: none; }
@media (max-width: 900px) {
  .legal-wrap { grid-template-columns: 1fr; gap: 0; padding-top: 44px; }
  .legal-toc { display: none; }
}

/* ---------- hero split slider ---------- */
.hero-split { padding: 60px 0 44px; text-align: left; }
.hero-split-inner { display: grid; grid-template-columns: 0.94fr 1.06fr; gap: 56px; align-items: center; }
.hero-left .pill { margin-bottom: 28px; }
.hero-lede { margin-bottom: 30px; }
.hero-lede .lead { margin: 20px 0 0; max-width: 520px; }
.hero-rotator { display: grid; min-height: 240px; }
.hslide { grid-area: 1 / 1; opacity: 0; transform: translateY(12px); transition: opacity .55s ease, transform .55s ease; pointer-events: none; }
.hslide.active { opacity: 1; transform: none; pointer-events: auto; }
.hslide .eyebrow { margin-bottom: 18px; }
.hero-h { font-family: var(--serif); font-weight: 500; letter-spacing: -0.03em; line-height: 1.0; font-size: clamp(38px, 4.6vw, 60px); color: var(--ink); }
.hero-h em { font-style: italic; font-weight: 500; color: var(--coral); }
.hslide .hero-sub { font-family: var(--serif); font-weight: 500; letter-spacing: -0.022em; line-height: 1.14; font-size: clamp(21px, 2.05vw, 29px); color: var(--ink); }
.hslide .hero-sub em { font-style: italic; font-weight: 500; color: var(--coral); }
.hero-split .hslide .lead { margin: 22px 0 0; max-width: 520px; }
.hero-split .hero-cta { justify-content: flex-start; margin-top: 32px; }

.hero-track { display: flex; flex-direction: column; gap: 0; margin-top: 30px; border-top: 1px solid var(--line); }
.htick { display: flex; flex-direction: row; align-items: center; gap: 14px; width: 100%; background: none; border: 0; border-bottom: 1px solid var(--line); padding: 13px 2px; cursor: pointer; text-align: left; font: inherit; position: relative; }
.htick .lbl { flex: 1; font-family: var(--sans); font-size: 15px; font-weight: 500; letter-spacing: -0.01em; color: var(--faint); transition: color .2s; }
.htick:hover .lbl { color: var(--muted); }
.htick.active .lbl { color: var(--ink); }
.htick .idx { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--faint); width: 22px; transition: color .2s; }
.htick.active .idx { color: var(--coral-ink-s); }
.htick .bar { position: absolute; left: 0; bottom: -1px; width: 100%; height: 2px; background: transparent; overflow: hidden; }
.htick.active .bar { background: var(--coral-line); }
.htick .fill { display: block; height: 100%; width: 0; background: var(--coral); }
.htick .chev { width: 16px; opacity: 0; transform: translateX(-4px); color: var(--coral); transition: opacity .2s, transform .2s; font-size: 14px; }
.htick.active .chev { opacity: 1; transform: none; }

.hero-right { position: relative; }
.hero-browser .shot-stack { display: grid; aspect-ratio: 16 / 10; background: var(--bg-2); padding: 16px; }
.shot { grid-area: 1 / 1; position: relative; opacity: 0; transition: opacity .55s ease; }
.shot.active { opacity: 1; }
.shot img { width: 100%; height: 100%; object-fit: contain; object-position: top center; display: block; border-radius: 8px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--card); }
.board-mock { width: 100%; height: 100%; border-radius: 8px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: #fff; overflow: hidden; display: flex; flex-direction: column; text-align: left; }
.bm-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.bm-title { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.bm-h { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.1; }
.bm-sub { font-family: var(--mono); font-size: 10px; color: var(--faint); letter-spacing: 0.01em; }
.bm-status { font-family: var(--mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--coral-ink-s); background: var(--coral-wash); padding: 4px 9px; border-radius: 999px; white-space: nowrap; flex: none; }
.bm-body { flex: 1; display: grid; grid-template-columns: 1fr 1fr; min-height: 0; }
.bm-col { padding: 13px 16px; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.bm-col + .bm-col { border-left: 1px solid var(--line); }
.bm-label { font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--faint); margin-bottom: 2px; }
.bm-doc { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--ink); }
.bm-ic { color: var(--coral); font-size: 12px; flex: none; }
.bm-dn { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bm-wm { font-family: var(--mono); font-size: 8.5px; color: #1f9d57; background: rgba(31,157,87,0.09); padding: 2px 6px; border-radius: 5px; white-space: nowrap; flex: none; }
.bm-note { margin-top: auto; font-size: 10px; color: var(--faint); line-height: 1.4; }
.bm-mem { display: flex; align-items: center; gap: 8px; font-size: 11.5px; }
.bm-av { width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; font-family: var(--mono); font-size: 8.5px; color: #fff; flex: none; }
.bm-mn { flex: 1; color: var(--ink); display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.bm-mn em { font-style: normal; font-size: 9px; color: var(--faint); font-family: var(--mono); }
.bm-open { font-size: 9px; color: #d3d9e4; flex: none; }
.bm-open.on { color: #1f9d57; }
.bm-rsvp { font-family: var(--mono); font-size: 8.5px; padding: 2px 7px; border-radius: 999px; white-space: nowrap; flex: none; }
.bm-rsvp.yes { color: #1f9d57; background: rgba(31,157,87,0.1); }
.bm-rsvp.pend { color: var(--faint); background: var(--bg-2); }
.bm-foot { display: flex; align-items: center; gap: 10px; padding: 11px 16px; border-top: 1px solid var(--line); background: var(--bg-2); }
.bm-bar { flex: none; width: 90px; height: 6px; border-radius: 4px; background: #e6eaf1; overflow: hidden; }
.bm-bar span { display: block; height: 100%; background: var(--coral); }
.bm-foot-t { font-family: var(--mono); font-size: 9.5px; color: var(--muted); }
.ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: repeating-linear-gradient(135deg, rgba(15,30,61,0.045) 0 1px, transparent 1px 12px), var(--bg-2); }
.ph-tag { font-family: var(--mono); font-size: 12.5px; color: var(--ink-2); background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; box-shadow: var(--shadow-sm); }
.ph-sub { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }

@media (max-width: 940px) {
  .hero-split-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-rotator { min-height: 0; }
  .hero-right { order: -1; }
}
@media (max-width: 520px) {
  .htick .lbl { font-size: 14px; }
}


/* ============================================================
   MOBILE PASS — phones & small tablets
   Ordered widest → narrowest so later rules win.
   ============================================================ */

/* swipe affordance for the horizontally scrolling comparison table */
.swipe-hint { display: none; margin-top: 12px; text-align: center; font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }

/* ---- 900px and below: rhythm, density, tap targets ---- */
@media (max-width: 900px) {
  .sec-pad { padding: 66px 0; }
  .sec-pad-sm { padding: 48px 0; }
  .wrap, .wrap-narrow { padding: 0 20px; }
  h1.section-title, h2.section-title { font-size: clamp(29px, 7.2vw, 40px); }
  .showcase-copy h2 { font-size: clamp(27px, 6.8vw, 36px); }
  .showcase-row + .showcase-row { margin-top: 76px; }
  .sec-head .lead, .lead { font-size: 17.5px; }
  .pillars { gap: 16px; margin-top: 38px; }
  .pillar { padding: 24px; }
  .pillar .pic { width: 40px; height: 40px; margin-bottom: 16px; }
  .trust-grid { gap: 14px; margin-top: 34px; }
  .trust-card { padding: 22px; }
  .feat-list { margin-top: 22px; gap: 13px; }
  .showcase-row > *, .adv-grid > *, .contact-grid > *, .hero-split-inner > *, .feat-hero-grid > * { min-width: 0; }
  h1, h2, h3, .hero-h, .hero-sub, .display { overflow-wrap: break-word; }
  .final-card { padding: 54px 26px; border-radius: 20px; }
  .final-card .display { font-size: clamp(34px, 9vw, 48px); }
  .final-card .lead { margin-top: 18px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .contact-form { padding: 22px; }
  .cmp { margin-top: 34px; }
  .price-grid { margin-top: 40px; }
  .breadcrumb { margin-bottom: 22px; }
  .feat-hero { padding: 34px 0 20px; }
  .feat-hero h1 { font-size: clamp(34px, 8.6vw, 46px); }
  .feat-hero-grid { grid-template-columns: 1fr !important; }
  .fx-cat { padding-top: 48px; }
  .fx-cat:first-of-type { padding-top: 42px; }
  .article-cta { padding: 30px 24px; }
  .learn-card { padding: 24px; }
  .learn-grid { gap: 14px; margin-top: 34px; }
  .legal-hero { padding: 96px 0 34px; }
  .legal-wrap > * { min-width: 0; }
  .legal-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .legal-wrap .legal-table { min-width: 460px; }
  footer { padding: 48px 0 34px; }
}

/* ---- hero: copy first, then tabs, then a full-width shot ---- */
@media (max-width: 900px) {
  .hero-split { padding: 26px 0 30px; }
  .hero-split-inner { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .hero-left { display: contents; }
  .hero-left .pill { order: 1; margin-bottom: 20px; align-self: flex-start; }
  .hero-lede { order: 2; margin-bottom: 22px; }
  .hero-rotator { order: 3; }
  .hero-track { order: 4; }
  .hero-right { order: 5; margin-top: 22px; }
  .hero-cta { order: 6; margin-top: 26px !important; }
  .hslide .eyebrow { margin-bottom: 14px; }
  .hero-h { font-size: clamp(31px, 8.4vw, 44px); }
  .hero-split .hslide .lead { margin-top: 16px; max-width: none; }

  /* rotator tabs become a horizontal pill rail */
  .hero-track { display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; margin-top: 22px;
    border-top: 0; overflow-x: auto; scroll-snap-type: x proximity;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
    padding-bottom: 2px; margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }
  .hero-track::-webkit-scrollbar { display: none; }
  /* fade whichever edge still has pills behind it, so the rail reads as swipeable
     instead of clipping "Diligence room" mid-word. Set by JS on scroll. */
  .hero-track { --fade-l: 0px; --fade-r: 0px;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 var(--fade-l), #000 calc(100% - var(--fade-r)), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 var(--fade-l), #000 calc(100% - var(--fade-r)), transparent 100%); }
  .hero-track.fade-l { --fade-l: 32px; }
  .hero-track.fade-r { --fade-r: 40px; }
  .htick { width: auto; flex: 0 0 auto; scroll-snap-align: start; gap: 8px;
    border: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 999px;
    background: var(--card); padding: 12px 16px; }
  .htick .idx { width: auto; }
  .htick .chev, .htick .bar { display: none; }
  .htick .lbl { flex: 0 0 auto; font-size: 14.5px; white-space: nowrap; }
  .htick.active { background: var(--midnight); border-color: var(--midnight); }
  .htick.active .lbl { color: var(--cream); }
  .htick.active .idx { color: var(--coral); }
}

/* ---- 760px and below: full-bleed product shot, denser mocks ---- */
@media (max-width: 760px) {
  .sec-pad { padding: 58px 0; }

  /* the app screenshot earns the full width, cropped so the UI stays legible */
  .hero-right { margin-left: -20px; margin-right: -20px; }
  .hero-browser { border-radius: 0; border-left: 0; border-right: 0; box-shadow: var(--shadow-md); }
  .hero-browser .browser-bar { padding: 10px 14px; }
  .hero-browser .browser-bar .url { font-size: 11px; padding: 4px 10px; }
  .hero-browser .shot-stack { padding: 10px; aspect-ratio: 4 / 3; }
  .hero-browser .shot { min-height: 0; overflow: hidden; }
  .hero-browser .shot img { object-fit: cover; object-position: left top; }

  /* board mock: tighter, so it fits the shorter mobile frame */
  .bm-top { padding: 11px 13px; }
  .bm-col { padding: 11px 13px; gap: 7px; }
  .bm-foot { padding: 9px 13px; }
  .bm-note { display: none; }

  /* comparison table scrolls with a snap and an explicit affordance */
  .cmp { overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
  .cmp table { min-width: 600px; }
  .cmp th, .cmp td { padding: 14px 16px; font-size: 13.5px; }
  .cmp thead th { font-size: 12px; }
  .swipe-hint { display: block; }

  /* mock chrome */
  .cap, .whatif { padding: 14px; }
  .bench { padding: 16px; }
  .cap-head h5, .whatif h5, .bench h5 { font-size: 16px !important; }
  .scn-tabs { overflow-x: auto; scrollbar-width: none; }
  .scn-tabs::-webkit-scrollbar { display: none; }
  .scn-tab { white-space: nowrap; }
  .scn-card { padding: 12px; }
  .scn-card .big { font-size: 24px; }
  .pf-row { padding: 12px 14px; gap: 11px; }
  .pf-row .av { width: 30px; height: 30px; }

  /* footer: brand gets its own row, links get real tap targets */
  .foot-brand { grid-column: 1 / -1; }
  .foot-brand p { max-width: none; }
  .foot-col a { padding: 8px 0; margin-bottom: 4px; }
  .foot-col h6 { margin-bottom: 10px; }

  /* menus and modals shouldn't rubber-band the page behind them */
  .mobile-menu { overscroll-behavior: contain; }
}

/* ---- 520px and below: the phone case ---- */
@media (max-width: 520px) {
  .wrap, .wrap-narrow { padding: 0 18px; }
  .hero-right { margin-left: -18px; margin-right: -18px; }
  .hero-track { margin-left: -18px; margin-right: -18px; padding-left: 18px; padding-right: 18px; }
  .htick .lbl { font-size: 14px; }
  .nav-inner { height: 64px; }
  .mobile-menu { top: 64px; }
  .brand .wordmark { font-size: 17.5px; }
  .brand .mono-circle { width: 27px; height: 27px; }
  /* logo hit area to 44px without changing the mark's size — nav is 64px tall here */
  .nav-inner .brand { min-height: 44px; }

  h1.section-title, h2.section-title { font-size: clamp(27px, 7.6vw, 34px); }
  .display { font-size: clamp(38px, 11vw, 52px); }
  .btn-lg { padding: 14px 20px; font-size: 15.5px; }
  .final-card { padding: 44px 20px; }

  /* cap-table mock: drop the class column so the numbers stay readable */
  .tbl th:nth-child(2), .tbl td:nth-child(2) { display: none; }
  .tbl td { padding: 9px 0; font-size: 12px; }

  .metric .big { font-size: clamp(36px, 11vw, 46px); }
  .price-teaser-row { gap: 10px 20px; font-size: 15px; }
  .faq-item { padding: 22px 0; }
  .faq-item h3 { font-size: 20px; }
  .article-body p, .article-body li { font-size: 16.5px; }
  .article-lead { font-size: 18.5px; }
  .fx-card { padding: 20px; }
  .fx-note { flex-direction: column; gap: 8px; padding: 14px 16px; }
  .legal-body h2 { font-size: 22px; margin-top: 40px; }
}

/* ---- 400px and below: small phones ---- */
@media (max-width: 400px) {
  .wrap, .wrap-narrow { padding: 0 16px; }
  .hero-right, .hero-track { margin-left: -16px; margin-right: -16px; }
  .hero-track { padding-left: 16px; padding-right: 16px; }
  .pill { white-space: normal; line-height: 1.35; padding: 7px 13px 7px 7px; }
  .hero-browser .browser-bar .dots { display: none; }
  .hero-browser .browser-bar .url { margin-left: 0; }
  .bm-mn em { display: none; }
  .bm-mn { line-height: 1.2; }
  /* board mock has to fit the shorter 4:3 frame on small phones */
  .bm-top { padding: 7px 10px; }
  .bm-col { padding: 7px 10px; gap: 4px; }
  .bm-foot { padding: 6px 10px; }
  .bm-label { margin-bottom: 0; }
  .bm-doc, .bm-mem { font-size: 10.5px; }
  .bm-av { width: 16px; height: 16px; font-size: 7px; border-radius: 5px; }
  .bm-wm, .bm-status { display: none; }
  .bm-h { font-size: 13px; }
  .bm-sub, .bm-foot-t { font-size: 9px; }
  .bm-label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .bm-rsvp { padding: 1px 5px; }
  .hero-browser .shot-stack { aspect-ratio: 5 / 4; }
  .btn, .btn-lg { padding: 13px 16px; font-size: 15px; }
  .price-teaser-row { gap: 9px 16px; }
}



/* ============================================================
   MOBILE PASS V2 — tighter rhythm, short-copy swaps, sticky CTA
   Applies site-wide at <=900px. Desktop untouched.
   ============================================================ */
/* dual-copy spans retired (SEO pass): single string, shown at every width */
p.dk-only,div.dk-only,li.dk-only{display:block}
@media (max-width:900px){
 .dk-only{display:none !important}
 /* rhythm */
 .sec-pad{padding:52px 0}.sec-pad-sm{padding:40px 0}
 .showcase-row+.showcase-row{margin-top:56px}
 .showcase-row{gap:26px}
 .sec-head .lead,.lead{font-size:16.5px;line-height:1.5}
 .sec-head{margin-bottom:0}
 h1.section-title, h2.section-title{font-size:clamp(28px,7.4vw,38px);line-height:1.1;letter-spacing:-.02em}
 .showcase-copy h2{font-size:clamp(26px,7vw,34px);line-height:1.1;letter-spacing:-.02em}
 .showcase-copy .lead{margin-top:12px}
 /* homepage hero */
 .hero-split{padding:18px 0 26px}
 .hero-left .pill{margin-bottom:14px;font-size:12px}
 .hero-h{font-size:clamp(33px,9.2vw,46px);line-height:1.04;letter-spacing:-.028em}
 .hero-split .hslide .lead{margin-top:12px;font-size:16.5px}
 .hslide .eyebrow{margin-bottom:10px}
 .hero-lede{margin-bottom:18px}
 .hslide .hero-sub{font-size:clamp(20px,5.6vw,26px)}
 .hero-right{margin-top:18px}
 .hero-cta{margin-top:20px !important}
 .hero-track{margin-top:18px}
 .htick{padding:10px 14px}
 .htick .lbl{font-size:13.5px}
 /* scannable lists */
 .home-page .showcase-copy .feat-list li:nth-child(n+4){display:none}
 .feat-list{margin-top:16px;gap:10px}
 .feat-list li{font-size:14.5px;line-height:1.4}
 /* pillars */
 .pillars{gap:12px;margin-top:26px}
 .pillar{padding:20px}
 .pillar .pic{width:34px;height:34px;margin-bottom:12px;font-size:15px}
 .pillar h3{font-size:18px}
 .pillar p{font-size:14.5px;line-height:1.45}
 .pillar .more{margin-top:12px}
 /* trust */
 .trust-grid{gap:10px;margin-top:26px}
 .trust-card{padding:18px}
 .trust-card h3{font-size:16.5px}
 .trust-card p{font-size:14px;line-height:1.45}
 /* comparison: 3 columns, no sideways scroll */
 .cmp{overflow-x:visible;margin-top:24px}
 .cmp table{min-width:0;width:100%;table-layout:fixed}
 .cmp th:nth-child(4),.cmp td:nth-child(4){display:none}
 .cmp th,.cmp td{padding:11px 10px;font-size:12.5px;line-height:1.3}
 .cmp thead th{font-size:11px}
 .cmp .feat{width:38%}
 .cmp .us-tag{font-size:13px;gap:5px}
 .cmp .us-tag .dotm{width:12px;height:12px}
 .swipe-hint{display:none !important}
 /* metrics */
 .metric{padding:18px 0}
 .metric .big{font-size:clamp(32px,9.6vw,42px)}
 .metric .cap-t{font-size:13.5px}
 /* mock chrome: keep footer meta on one line */
 /* product & feature page heroes */
 .feat-hero{padding:26px 0 14px}
 .feat-hero h1{font-size:clamp(32px,8.8vw,44px);line-height:1.05;letter-spacing:-.028em}
 .feat-hero .lead{margin-top:14px;font-size:16.5px}
 .feat-hero .hero-cta{margin-top:22px}
 .feat-hero .hero-note{margin-top:20px}
 .breadcrumb{margin-bottom:16px}
 .feat-cards{gap:12px}
 /* features index */
 .fx-cat{padding-top:38px}
 .fx-cat:first-of-type{padding-top:32px}
 .fx-card{padding:18px}
 .fx-nav-inner{padding:9px 0}
 /* pricing */
 .price-grid{margin-top:28px;gap:12px}
 .price-card{padding:22px 20px}
 .price-card .price{font-size:36px;margin:10px 0 2px}
 .price-card .blurb{min-height:0}
 .price-card .btn{margin:14px 0 18px}
 .price-feats{gap:9px;font-size:13px}
 .faq-wrap{margin-top:30px}
 .faq-item{padding:20px 0}
 .faq-item h3{font-size:19px}
 .faq-item p{margin-top:8px;font-size:15.5px;line-height:1.55}
 .scale-foot{margin-top:16px}
 /* learn */
 .learn-grid{gap:12px;margin-top:26px}
 .learn-card{padding:20px}
 .article-lead{font-size:18px}
 .article-body p,.article-body li{font-size:16.5px;line-height:1.6}
 .article-cta{padding:26px 20px}
 .xlinks{gap:12px;margin-top:32px}
 /* legal */
 .legal-hero{padding:84px 0 26px}
 .legal-body h2{font-size:21px;margin-top:34px}
 /* closing */
 .final-card{padding:42px 22px}
 .final-card .display{font-size:clamp(33px,9.4vw,44px)}
 footer{padding:40px 0 96px}
 .foot-grid{gap:22px}
 .mcta{display:flex}
}
@media (min-width:901px){.mcta{display:none}}

/* sticky mobile CTA bar */
.mcta{position:fixed;left:0;right:0;bottom:0;z-index:60;gap:10px;padding:10px 16px calc(10px + env(safe-area-inset-bottom));
 background:rgba(255,255,255,.92);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border-top:1px solid var(--line);
 transform:translateY(110%);transition:transform .28s cubic-bezier(.22,1,.36,1)}
.mcta.up{transform:none}
.mcta a{flex:1;display:flex;align-items:center;justify-content:center;gap:6px;height:48px;border-radius:999px;
 font-family:var(--sans);font-size:15px;font-weight:600;text-decoration:none;letter-spacing:-.01em}
.mcta .p{background:var(--coral);color:#fff;flex:1.45}
.mcta .s{background:var(--bg-2);color:var(--ink);border:1px solid var(--line)}
body.menu-open .mcta{transform:translateY(110%)}

/* ============================================================
   COOKIE NOTICE — phone layout
   The banner itself is a Netlify snippet injection ("Cookie notice") added
   before </body>, so its <style> lands after this file. Each rule below is
   written with a leading `html` to outrank that later stylesheet.
   Under 640px the centred modal becomes a bottom sheet so the page headline
   stays readable above it, and every button label holds one line.
   ============================================================ */
@media (max-width:639.98px){
 html #dr-cookie-root{align-items:flex-end;justify-content:flex-start;padding:0;background:rgba(0,0,0,.18)}
 html #dr-cookie-card{width:100%;max-width:none;border-radius:18px 18px 0 0;
  padding:15px 16px calc(13px + env(safe-area-inset-bottom));
  box-shadow:0 -12px 34px rgba(0,0,0,.22);max-height:78vh;overflow-y:auto}
 html #dr-cookie-card h2{margin:0 0 5px;font-size:16.5px;line-height:1.25}
 html #dr-cookie-card p{margin:0 0 12px;font-size:13.5px;line-height:1.35}
 html #dr-cookie-card button{padding:11px 12px;margin:0 0 7px;font-size:14.5px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
 html #dr-cookie-prefs-panel label{margin:0 0 9px;font-size:13.5px}
}


/* ============================================================
   MOBILE PASS V3 — first-paint budget under the cookie sheet
   375-430px. Reserves ~220px at the bottom of screen one, so the
   header, full H1, two lines of lead, the pill rail and the top of
   the mock all land above it. Desktop is untouched.
   ============================================================ */
@media (max-width:900px){
 body{overflow-x:clip}

 /* --- home hero: buy vertical room without shortening a sentence --- */
 .hero-split{padding:10px 0 22px}
 .hero-left .pill{margin-bottom:10px}
 .hslide .eyebrow{margin-bottom:8px}
 .hero-lede{margin-bottom:14px}
 .hslide .hero-sub{font-size:clamp(19px,5.2vw,24px)}
 .hero-h{font-size:clamp(30px,8.2vw,44px);line-height:1.05}
 .hero-split .hslide .lead{margin-top:11px;font-size:15.5px;line-height:1.48}
 .hero-track{margin-top:14px}
 .hero-right{margin-top:12px}

 /* --- pill rail: snap so the leading pill is never cut through a letter --- */
 .hero-track{scroll-snap-type:x mandatory;scroll-padding-left:20px;overscroll-behavior-x:contain}
 .htick{scroll-snap-align:start;scroll-snap-stop:always;min-height:44px}

 /* --- CTAs: full-width, never under 44px --- */
 .hero-cta{flex-direction:column;align-items:stretch;gap:10px}
 .hero-cta .btn{width:100%;justify-content:center;min-height:48px}
 .feat-hero .hero-cta{flex-direction:column;align-items:stretch;gap:10px}
 .feat-hero .hero-cta .btn{width:100%;justify-content:center;min-height:48px}

 /* --- pricing: billing toggle stays on one row; Founders lands early --- */
 .bill-toggle{margin-top:18px;flex-wrap:nowrap;max-width:100%}
 .bill-toggle .bt{white-space:nowrap;padding:9px 14px;font-size:12.5px;min-height:44px}
 .bill-toggle .bt-save{white-space:nowrap}
 .price-grid{margin-top:22px}

 /* --- any slash-joined label stays one token --- */
 .feat-list li span[style*="mono"]{white-space:nowrap}
}
@media (max-width:430px){
 .hero-h{font-size:clamp(29px,8vw,40px)}
 .htick{padding:10px 13px}
 .htick .lbl{font-size:13.5px}
}

/* ============================================================
   MOBILE PASS V4 — tap targets, rail cut, readable hero mock
   ============================================================ */

/* 1 — header Sign up holds a 44px target at every phone width */
@media (max-width:940px){
 .nav-cta-m{height:44px;min-height:44px;padding:0 16px;font-size:14px}
}
@media (max-width:400px){
 .nav-cta-m{height:44px;min-height:44px;padding:0 12px;font-size:13.5px;margin-right:8px}
}
@media (max-width:340px){
 .nav-cta-m{padding:0 11px;font-size:13px}
}

/* 2 — pill rail: JS writes the mask inline (hard cut at the last whole pill).
       These stay as the no-JS floor: fade the trailing edge, no page overflow. */
@media (max-width:900px){
 .hero-track{--fade-l:0px;--fade-r:26px;overflow-y:hidden}
 .hero-track .htick:last-child{margin-right:2px}
}

/* 3 — hero mock on phones: a cropped, readable slice instead of a shrunk
       desktop screenshot. Same browser chrome + URL bar; type never under 12px. */
.m-stack{display:none}
@media (max-width:760px){
 .hero-browser .shot-stack{display:none}
 .hero-browser .m-stack{display:grid;background:var(--card);padding:13px 14px 14px;
  border-top:1px solid var(--line-2)}
 .mshot{grid-area:1/1;display:flex;flex-direction:column;gap:9px;
  opacity:0;pointer-events:none;transition:opacity .32s ease}
 .mshot.active{opacity:1;pointer-events:auto}

 .ms-head{display:flex;align-items:baseline;justify-content:space-between;gap:10px}
 .ms-h{font-family:var(--serif);font-size:15.5px;font-weight:600;color:var(--ink);
  letter-spacing:-.01em;line-height:1.2}
 .ms-tag{font-family:var(--mono);font-size:11.5px;color:var(--faint);white-space:nowrap;flex:0 0 auto}
 .ms-tag.up{color:#1f9d57}
 .ms-sub{font-family:var(--mono);font-size:11.5px;color:var(--faint);margin-top:-4px}

 .ms-rows{display:flex;flex-direction:column}
 .ms-rows.box{border:1px solid var(--line);border-radius:10px;padding:2px 11px}
 .ms-row{display:flex;align-items:center;gap:9px;padding:8px 0;
  border-bottom:1px solid var(--line-2);font-size:12.5px}
 .ms-row:last-child{border-bottom:0}
 .ms-row .sw{width:8px;height:8px;border-radius:3px;flex:0 0 auto}
 .ms-row .nm{flex:1;min-width:0;color:var(--ink-2);white-space:nowrap;overflow:hidden;
  text-overflow:ellipsis}
 .ms-row .vl{font-family:var(--mono);font-size:12px;color:var(--ink);flex:0 0 auto}
 .ms-row .vl.coral{color:var(--coral-ink-s)}
 .ms-row .vl.ok{color:#1f9d57}

 .ms-bar{display:flex;gap:2px;height:7px;border-radius:4px;overflow:hidden}
 .ms-foot{display:flex;justify-content:space-between;gap:10px;
  font-family:var(--mono);font-size:11.5px;color:var(--faint)}

 .ms-cards{display:grid;grid-template-columns:1fr 1fr;gap:8px}
 .ms-card{display:flex;flex-direction:column;gap:3px;border:1px solid var(--line);
  border-radius:10px;padding:9px 10px}
 .ms-card.hl{border-color:var(--coral-line);background:var(--coral-wash)}
 .ms-card .lbl{font-family:var(--mono);font-size:10.5px;letter-spacing:.03em;
  text-transform:uppercase;color:var(--faint)}
 .ms-card .big{font-family:var(--serif);font-size:20px;font-weight:600;color:var(--ink);line-height:1.1}
 .ms-card .dl{font-family:var(--mono);font-size:11px;color:var(--faint)}
 .ms-card .dl.up{color:#1f9d57}
 .ms-card .dl.down{color:var(--coral-ink-s)}

 .ms-bub{background:var(--bg-3);border-radius:12px;padding:10px 12px;
  font-size:12.5px;line-height:1.45;color:var(--ink-2)}
 .ms-prop{border:1px solid var(--coral-line);border-radius:10px;overflow:hidden}
 .ms-prop-h{display:flex;justify-content:space-between;gap:8px;background:var(--coral-wash);
  padding:7px 11px;font-family:var(--mono);font-size:10.5px;letter-spacing:.03em;
  text-transform:uppercase;color:var(--coral-ink-s)}
 .ms-prop .ms-rows{padding:0 11px}
 .ms-act{display:flex;gap:7px;padding:9px 11px;border-top:1px solid var(--line-2)}
 .ms-btn{background:var(--coral);color:#fff;border-radius:8px;padding:8px 12px;
  font-family:var(--sans);font-size:12.5px;font-weight:600;line-height:1}
 .ms-btn.g{background:var(--bg-2);color:var(--ink);border:1px solid var(--line)}
}


/* ---------- who this is for (role strip) ---------- */
.roles { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 34px; border-top: 1px solid var(--line); }
.role { padding: 22px 22px 26px; border-left: 1px solid var(--line); }
.role:first-child { padding-left: 0; border-left: none; }
.role .rn { font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; color: var(--muted); }
.role h3 { font-size: 16px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; margin-top: 12px; }
.role p { font-size: 13.5px; line-height: 1.55; color: var(--ink-2); margin-top: 8px; text-wrap: pretty; }
@media (max-width: 1040px) {
  .roles { grid-template-columns: repeat(3, 1fr); }
  .role { border-bottom: 1px solid var(--line); }
  .role:nth-child(3n+1) { padding-left: 0; border-left: none; }
}
@media (max-width: 700px) {
  .roles { grid-template-columns: 1fr 1fr; }
  .role { padding: 18px 16px 22px; }
  .role:nth-child(3n+1) { padding-left: 16px; border-left: 1px solid var(--line); }
  .role:nth-child(2n+1) { padding-left: 0; border-left: none; }
}
@media (max-width: 480px) {
  .roles { grid-template-columns: 1fr; }
  .role, .role:nth-child(3n+1) { padding-left: 0; border-left: none; }
}


/* ============================================================
   COOKIE NOTICE — base layout
   Shipped in-page (static zip: no Netlify snippet injection).
   The phone overrides further up use `html #dr-cookie-*` and still
   outrank these, so the bottom-sheet behaviour under 640px is unchanged.
   ============================================================ */
#dr-cookie-root[hidden]{display:none}
#dr-cookie-root{position:fixed;inset:0;z-index:9000;display:flex;align-items:center;justify-content:center;
 padding:24px;background:rgba(15,30,61,.34);font-family:var(--sans)}
#dr-cookie-card{width:100%;max-width:420px;background:#fff;border:1px solid var(--line);border-radius:14px;
 padding:22px 22px 18px;box-shadow:0 18px 50px rgba(15,30,61,.22)}
#dr-cookie-card h2{margin:0 0 7px;font-family:var(--sans);font-size:15px;font-weight:600;letter-spacing:-.01em;color:var(--ink)}
#dr-cookie-card p{margin:0 0 16px;font-size:14px;line-height:1.5;color:var(--ink-2)}
#dr-cookie-card button{display:block;width:100%;padding:11px 14px;margin:0 0 8px;border-radius:9px;
 font-family:var(--sans);font-size:14.5px;font-weight:600;letter-spacing:-.01em;cursor:pointer;
 border:1px solid var(--line);background:var(--bg-2);color:var(--ink);transition:background .15s,border-color .15s}
#dr-cookie-card button:hover{background:var(--bg-3);border-color:var(--muted)}
#dr-cookie-card button#dr-cookie-accept,#dr-cookie-card button#dr-cookie-save{background:var(--coral);border-color:var(--coral);color:#fff}
#dr-cookie-card button#dr-cookie-accept:hover,#dr-cookie-card button#dr-cookie-save:hover{filter:brightness(.94)}
#dr-cookie-card button:focus-visible{outline:2px solid var(--coral);outline-offset:2px}
#dr-cookie-card .dr-cookie-legal{display:block;margin-top:10px;font-size:12.5px;color:var(--muted);text-decoration:underline;text-underline-offset:2px}
#dr-cookie-card .dr-cookie-legal:hover{color:var(--ink)}
#dr-cookie-prefs-panel[hidden]{display:none}
#dr-cookie-prefs-panel{margin-top:4px;padding-top:16px;border-top:1px solid var(--line)}
#dr-cookie-prefs-panel label{display:flex;align-items:center;gap:9px;margin:0 0 10px;font-size:14px;color:var(--ink)}
#dr-cookie-prefs-panel input[type=checkbox]{width:16px;height:16px;accent-color:var(--coral);flex:none}
#dr-cookie-prefs-panel input[type=checkbox]:disabled{opacity:.55}
