/* ————————————————————————————————————————
   Bordrs — "the most trustworthy document in the room"
   Paper + ink + one red. Premium = restraint.
———————————————————————————————————————— */

:root {
  --paper: #fafaf8;
  --white: #ffffff;
  --stone: #f4f3f0;
  --ink: #0a0a0a;
  --muted: #6e6b64;
  --line: #e8e6e1;
  --red: #c8102e;
  --red-deep: #a50d24;
  --red-wash: #fbf1f2;
  --success: #1f6b3a;
  --sans: "Switzer", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --serif: var(--sans); /* one sleek neo-grotesque everywhere — Apple-keynote feel */
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
  --radius: 10px;
  --max: 1120px;
  --pad: max(24px, calc((100vw - var(--max)) / 2));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* signature: a single red rule at the very top */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  z-index: 60;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; -webkit-appearance: none; appearance: none; }
svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.75; fill: none; stroke-linecap: round; stroke-linejoin: round; flex: none; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.03;
  overflow-wrap: anywhere;
}
h1 em, h2 em {
  font-style: normal;
  color: var(--red);
}
.skip-link { position: fixed; left: 12px; top: 12px; z-index: 70; transform: translateY(-200%); background: var(--white); border: 1px solid var(--line); padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { transform: none; }

/* —— labels: the mono kicker ————————————— */
.eyebrow, .kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow b, .kicker b { font-weight: 600; color: var(--red); }

/* —— nav ————————————————————————————————— */
.nav {
  position: sticky; top: 0; z-index: 30;
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center;
  height: 68px; padding: 3px var(--pad) 0;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(14px);
}
.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.logo::after { content: "."; color: var(--red); }
.nav-links, .nav-actions, .actions { display: flex; align-items: center; gap: 26px; }
.nav-links { justify-content: center; }
.nav-links > a, .nav-drop > a, .login { font-size: 14px; font-weight: 500; color: #3c3a35; }
.nav-links > a:hover, .nav-drop > a:hover, .login:hover { color: var(--ink); }
.nav-drop { position: relative; padding: 24px 0; }
.nav-drop > a::after { content: ""; display: inline-block; width: 5px; height: 5px; margin: 0 0 2px 7px; border-right: 1.25px solid #a8a49c; border-bottom: 1.25px solid #a8a49c; transform: rotate(45deg); }
.mega {
  position: absolute; top: 65px; left: 50%; transform: translateX(-50%) translateY(8px);
  width: min(760px, calc(100vw - 36px)); padding: 30px 32px 32px;
  border: 1px solid var(--line); border-top: 0; background: var(--white);
  box-shadow: 0 32px 60px -42px rgba(10, 10, 10, 0.35);
  opacity: 0; pointer-events: none; transition: 170ms ease;
  border-radius: 0 0 var(--radius) var(--radius);
}
.nav-drop:hover .mega { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mega-tile { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: var(--paper); transition: 150ms ease; }
.mega-tile:hover { border-color: #c9c5bd; }
.mega-tile strong { display: block; font-weight: 600; font-size: 19px; letter-spacing: -0.03em; line-height: 1.15; }
.mega-tile span { display: block; margin-top: 6px; color: var(--muted); font-size: 13.5px; }
.green, .blue, .cream { background: var(--paper); }
.mega-list { display: grid; gap: 28px; margin-top: 28px; }
.mega-list.two { grid-template-columns: 1fr 1fr; }
.mega-list p { margin-bottom: 12px; font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.mega-list a { display: block; padding: 6px 0; border-bottom: 1px solid var(--stone); font-size: 14px; color: #3c3a35; }
.mega-list a:hover { color: var(--red-deep); }
.menu-btn { display: none; }

/* —— buttons ————————————————————————————— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 26px;
  border: 1px solid var(--ink); border-radius: 8px;
  background: var(--ink); color: var(--white);
  font-family: var(--sans); font-weight: 500; font-size: 14.5px;
  letter-spacing: 0.01em; cursor: pointer; transition: 150ms ease;
}
.btn:hover { background: #262420; border-color: #262420; transform: translateY(-1px); }
.btn.small { min-height: 38px; padding: 0 16px; font-size: 13.5px; }
.btn.ghost, .btn.light {
  background: transparent; border-color: #d4d1ca; color: var(--ink);
}
.btn.ghost:hover, .btn.light:hover { background: var(--white); border-color: var(--ink); }
.btn.primary, .btn.dark, .btn.yellow { background: var(--ink); border-color: var(--ink); color: var(--white); }
.btn.primary:hover, .btn.dark:hover, .btn.yellow:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn.white { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn.white:hover { background: var(--paper); }
.text-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 500; font-size: 14.5px; color: var(--ink); border-bottom: 1px solid #cfccc5; padding-bottom: 2px; }
.text-link:hover { border-color: var(--red); color: var(--red-deep); }

/* —— hero ———————————————————————————————— */
.hero {
  padding: clamp(84px, 11vw, 150px) var(--pad) clamp(72px, 8vw, 110px);
  text-align: center;
}
.hero .kicker, .hero .eyebrow { display: block; }
.hero h1 {
  margin: 26px auto 0;
  font-size: clamp(42px, 6.4vw, 82px);
}
@media (max-width: 680px) {
  .hero h1 br { display: none; }
}
.lede, .hero > p:not(.kicker):not(.eyebrow) {
  max-width: 560px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 17.5px;
  line-height: 1.65;
}
.hero .actions { justify-content: center; margin-top: 40px; }
.actions { flex-wrap: wrap; gap: 14px; }

/* —— stats band ——————————————————————————— */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: clamp(56px, 7vw, 88px) var(--pad);
  background: var(--ink); color: var(--white);
}
.stats-band div { padding: 4px 32px; border-left: 1px solid rgba(255, 255, 255, 0.14); }
.stats-band div:first-child { border-left: 0; padding-left: 0; }
.stats-band strong { display: block; font-size: clamp(34px, 3.6vw, 52px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.stats-band span { display: block; margin-top: 10px; color: rgba(255, 255, 255, 0.55); font-size: 14px; }
.home-faq { max-width: 760px; }

/* —— live product demo (hero visual) ————— */
.stage { max-width: 920px; margin: clamp(56px, 7vw, 84px) auto 0; text-align: left; }
.device { background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 50px 100px -70px rgba(10, 10, 10, 0.4); overflow: hidden; }
.dev-bar { height: 44px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid var(--line); background: var(--paper); }
.dev-bar .d { width: 9px; height: 9px; border-radius: 100px; background: var(--line); }
.dev-bar .u { flex: 1; text-align: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted); }
.live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.live .ld { width: 6px; height: 6px; border-radius: 100px; background: var(--success); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.dev-prog { height: 2px; background: var(--stone); }
.dev-prog i { display: block; height: 100%; width: 0; background: var(--red); }
.dev-body { display: grid; grid-template-columns: 200px 1fr; min-height: 396px; }
.dev-side { background: var(--paper); border-right: 1px solid var(--line); padding: 16px 12px; }
.dev-side .g { margin: 4px 8px 10px; font-family: var(--mono); font-size: 9.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.dev-nav { display: flex; align-items: center; gap: 9px; margin-bottom: 2px; padding: 8px 10px; border-radius: 8px; font-size: 13px; color: var(--muted); cursor: pointer; transition: 180ms ease; }
.dev-nav.on { background: var(--white); color: var(--ink); font-weight: 500; box-shadow: 0 8px 20px -16px rgba(10, 10, 10, 0.4); }
.dev-nav svg { width: 15px; height: 15px; opacity: 0.55; }
.dev-nav.on svg { opacity: 0.9; }
.dev-main { padding: 24px 26px; transition: opacity 200ms ease; }
.dev-h { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.dev-h .t { font-size: 16.5px; font-weight: 600; letter-spacing: -0.02em; }
.dev-h .m { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.dev-st { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.dev-cell { background: var(--paper); border: 1px solid var(--stone); border-radius: 10px; padding: 14px; }
.dev-cell .l { margin-bottom: 7px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.dev-cell .v { font-size: 23px; font-weight: 600; letter-spacing: -0.03em; }
.dev-ns, .dev-rows { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.ns-h { padding: 11px 15px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.ns-row { display: flex; align-items: center; gap: 11px; padding: 12px 15px; border-bottom: 1px solid var(--line); font-size: 13px; }
.ns-row:last-child { border-bottom: 0; }
.ns-row .nd { flex: none; width: 8px; height: 8px; border: 1.5px solid #c9c5bd; border-radius: 100px; }
.ns-row .nd.ok { display: flex; width: 16px; height: 16px; align-items: center; justify-content: center; border: 0; background: #e9f4ef; color: var(--success); font-size: 10px; }
.di { opacity: 0; transform: translateY(7px); transition: opacity 440ms cubic-bezier(0.2, 0.6, 0.2, 1), transform 440ms cubic-bezier(0.2, 0.6, 0.2, 1); }
.di.show { opacity: 1; transform: none; }
.dev-chat { display: flex; flex-direction: column; gap: 9px; }
.dc { max-width: 82%; padding: 10px 14px; border-radius: 12px; font-size: 13px; line-height: 1.45; }
.dc.a { align-self: flex-start; background: var(--stone); border-bottom-left-radius: 4px; }
.dc.u { align-self: flex-end; background: var(--ink); color: var(--white); border-bottom-right-radius: 4px; }
.dc.typing { align-self: flex-start; display: flex; gap: 4px; padding: 13px 14px; background: var(--stone); }
.dc.typing span { width: 6px; height: 6px; border-radius: 100px; background: #b9b5ad; animation: blink 1.2s infinite; }
.dc.typing span:nth-child(2) { animation-delay: 0.2s; } .dc.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
.doc { display: grid; grid-template-columns: 20px 1fr auto; gap: 12px; align-items: center; padding: 12px 15px; border-bottom: 1px solid var(--line); font-size: 13px; }
.doc:last-child { border-bottom: 0; }
.dico { display: flex; width: 18px; height: 18px; align-items: center; justify-content: center; border-radius: 100px; font-size: 11px; }
.dico.ok { background: #e9f4ef; color: var(--success); }
.dico.load { color: var(--muted); animation: spin 1.3s linear infinite; }
.dico.need { color: #c9c5bd; }
.dnm { font-weight: 500; }
.dst { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
@keyframes spin { to { transform: rotate(360deg); } }
.dev-row { display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: center; padding: 12px 15px; border-bottom: 1px solid var(--line); }
.dev-row:last-child { border-bottom: 0; }
.dev-row .sv { padding: 3px 7px; border-radius: 5px; font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-align: center; }
.sv.hi { background: var(--red-wash); color: var(--red-deep); }
.sv.md { background: #faf4e6; color: #9a6c10; }
.dev-row .x { font-size: 12.5px; }
.dev-row .x b { font-weight: 600; }
.dev-row .x span { color: var(--muted); }

/* —— sections ———————————————————————————— */
.hero, .page-hero, .finder-page, .contact-page, .auth-page { background: var(--paper); }
.page-hero { padding: clamp(72px, 9vw, 120px) var(--pad) clamp(48px, 6vw, 72px); }
.page-hero h1, .finder-intro h1, .contact-copy h1, .auth-card h1 { margin-top: 22px; font-size: clamp(40px, 5.6vw, 68px); max-width: 16ch; }
.page-hero p:not(.eyebrow), .finder-intro p:not(.eyebrow), .contact-copy p:not(.eyebrow) { max-width: 540px; margin-top: 20px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.page-hero .actions { margin-top: 32px; }

.section, .band, .cta-strip { padding: clamp(72px, 9vw, 110px) var(--pad); }
.band { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intro { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.intro .eyebrow { display: block; margin-bottom: 18px; }
.intro h2, .cta-strip h2 { font-size: clamp(32px, 4.2vw, 52px); }
.intro p { margin-top: 14px; color: var(--muted); font-size: 16.5px; }

/* —— situation cards (home) —————————————— */
.situation-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 14px; background: var(--white); overflow: hidden; }
.situation {
  padding: clamp(28px, 3.5vw, 44px);
  border-right: 1px solid var(--line);
  transition: 150ms ease;
}
.situation:last-child { border-right: 0; }
.situation:hover { background: var(--paper); }
.situation .eyebrow { display: block; }
.situation strong { display: block; margin-top: 40px; font-weight: 600; font-size: clamp(20px, 2.2vw, 26px); letter-spacing: -0.03em; line-height: 1.15; }
.situation p { margin-top: 10px; color: var(--muted); font-size: 15px; }
.situation .text-link { margin-top: 22px; font-size: 14px; }

/* —— steps ——————————————————————————————— */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 0; border-top: 1px solid var(--line); }
.steps div { padding: 26px 28px 6px 0; border-top: 2px solid transparent; margin-top: -1px; }
.steps span { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; color: var(--red); }
.steps strong { display: block; margin-top: 12px; font-weight: 600; font-size: 17.5px; letter-spacing: -0.02em; }
.steps p { margin-top: 8px; color: var(--muted); font-size: 14.5px; }

/* —— cta strip ——————————————————————————— */
.cta-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background: var(--ink); color: var(--white);
}
.cta-strip h2 { font-size: clamp(30px, 3.8vw, 46px); }
.cta-strip p { color: rgba(255, 255, 255, 0.6); max-width: 420px; }
.cta-strip .btn, .cta-strip .btn.primary, .cta-strip .btn.yellow { background: var(--white); border-color: var(--white); color: var(--ink); }
.cta-strip .btn:hover { background: var(--paper); }
.cta-strip .btn.light, .cta-strip .btn.ghost { background: transparent; border-color: rgba(255,255,255,.35); color: var(--white); }

/* —— cards / grids ——————————————————————— */
.feature-grid, .cards, .pricing-grid, .result-grid, .detail-grid, .tier-grid, .split-band { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.feature-grid div, .card, .price-card, .result, .detail-grid article, .tier-grid div, .split-band div, details {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 26px; transition: 150ms ease;
}
.card:hover, .price-card:hover { border-color: #c9c5bd; }
.feature-grid strong, .tier-grid h3 { display: block; margin-top: 14px; font-weight: 600; font-size: 17px; letter-spacing: -0.02em; }
.feature-grid svg { color: var(--muted); }

.card > p:first-child, .price-card > p:first-child { font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.card h3, .price-card h3, .result h3 { margin-top: 14px; font-size: 24px; }
.card p:not(:first-child), .price-card p:not(:first-child), .tier-grid p, .tier-grid span, .detail-grid p:not(.eyebrow), .feature-grid p, .split-band p, .result p { margin-top: 10px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.card > span { display: inline-block; margin-top: 14px; border: 1px solid var(--line); border-radius: 6px; padding: 4px 9px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); background: var(--paper); }
.card-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; }
.card-actions a { font-weight: 500; font-size: 14px; border-bottom: 1px solid #d6d3cc; padding-bottom: 2px; }
.card-actions a:hover { color: var(--red-deep); border-color: var(--red); }
.center { text-align: center; margin-top: 36px; }

/* —— pricing ————————————————————————————— */
.price { display: flex; align-items: flex-end; gap: 7px; margin-top: 26px; }
.price strong { font-weight: 600; font-size: 44px; line-height: 0.9; letter-spacing: -0.04em; }
.price span { margin-bottom: 4px; color: var(--muted); font-size: 14px; }
.full { font-size: 13.5px; }
.price-card .btn { width: 100%; margin-top: 24px; }
.price-card ul { display: grid; gap: 12px; margin: 24px 0; padding: 0; list-style: none; font-size: 14.5px; }
.price-card li { display: flex; gap: 10px; line-height: 1.45; color: #3c3a35; }
.price-card li svg { color: var(--success); margin-top: 3px; }
.small-price { min-height: auto; }
.price-card.featured { border-color: var(--ink); position: relative; }
.price-card.featured::after { content: "Most chosen"; position: absolute; top: 22px; right: 22px; padding: 4px 8px; border-radius: 5px; background: var(--red-wash); color: var(--red-deep); font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.note { max-width: 760px; margin-top: 32px; color: var(--muted); font-size: 13.5px; }

/* —— finder ——————————————————————————————— */
.finder-page { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; padding: clamp(64px, 8vw, 100px) var(--pad); }
.finder-page > * { min-width: 0; }
.preselect { display: inline-block; margin-top: 22px; border: 1px solid var(--line); background: var(--white); border-radius: 6px; padding: 8px 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.finder-shell { align-self: start; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: clamp(26px, 3vw, 40px); box-shadow: 0 40px 80px -64px rgba(10,10,10,.4); }
.progress { height: 2px; background: var(--stone); margin-bottom: 30px; }
.progress span { display: block; height: 100%; width: 0; background: var(--red); transition: 220ms ease; }
.step-count { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
#finderMount h2 { margin: 14px 0 26px; font-size: clamp(28px, 3.4vw, 42px); }
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.option-grid button, .back {
  border: 1px solid var(--line); border-radius: 8px; background: var(--white); padding: 16px 18px;
  font: inherit; font-size: 14.5px; font-weight: 500; text-align: left; cursor: pointer; transition: 130ms ease;
}
.option-grid button:hover { border-color: var(--ink); }
.back { margin-top: 16px; color: var(--muted); border-color: transparent; }
.back:hover { color: var(--ink); }

/* —— results ————————————————————————————— */
.result > span { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); }
.result h3 { margin-top: 12px; }
.result dl { display: grid; gap: 14px; margin: 22px 0; }
.result dt { font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.result dd { margin: 4px 0 0; color: #3c3a35; font-size: 14.5px; }
.result .actions { margin-top: 20px; gap: 12px; }

/* —— talk to us ——————————————————————————— */
.talk-hero { padding: clamp(72px, 9vw, 110px) var(--pad) clamp(64px, 8vw, 96px); }
.talk-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.talk-head h1 { margin-top: 22px; font-size: clamp(40px, 5.4vw, 68px); }
.talk-head p:not(.eyebrow) { margin-top: 18px; color: var(--muted); font-size: 17px; }
.talk-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 980px; margin: 0 auto; }
.talk-card { border: 1px solid var(--line); border-radius: 14px; padding: clamp(28px, 3.5vw, 44px); background: var(--white); }
.talk-card h2 { margin-top: 26px; font-size: 26px; }
.talk-card p { margin-top: 12px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.icon-pill { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); font-size: 20px; }
.call-card strong { display: block; margin-top: 30px; font-weight: 600; font-size: clamp(24px, 2.6vw, 30px); letter-spacing: -0.03em; }
.call-card em { display: block; margin-top: 4px; font-family: var(--mono); font-style: normal; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }
.call-card .btn { margin-top: 24px; }
.agent-card { border-color: var(--ink); background: var(--ink); color: var(--white); }
.agent-card h2 { color: var(--white); }
.agent-card p { color: rgba(255,255,255,.55); }
.agent-pill { display: inline-flex; border: 1px solid rgba(255,255,255,.25); border-radius: 6px; padding: 6px 10px; font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.agent-phone { margin-top: 26px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; background: rgba(255,255,255,.05); padding: 18px; }
.agent-top { display: grid; grid-template-columns: auto 1fr; gap: 2px 12px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 13px; }
.agent-top span { grid-row: 1 / 3; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); }
.agent-top strong { font-size: 14px; }
.agent-top em { font-family: var(--mono); font-size: 11px; font-style: normal; color: #7fc99a; }
.agent-phone p { width: fit-content; max-width: 88%; margin-top: 12px; border-radius: 10px; background: rgba(255,255,255,.1); padding: 10px 12px; color: var(--white); font-size: 13px; }
.agent-phone .reply { margin-left: auto; background: rgba(255,255,255,.22); }
.agent-card .btn { margin-top: 24px; }

/* —— contact / auth ——————————————————————— */
.contact-page { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; padding: clamp(64px, 8vw, 100px) var(--pad); border-top: 1px solid var(--line); background: var(--white); }
.contact-page > * { min-width: 0; }
.contact-bullets { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.contact-bullets span, .trust-row span { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); padding: 8px 12px; font-size: 13px; font-weight: 500; color: #3c3a35; }
.contact-bullets svg, .trust-row svg { color: var(--success); }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: clamp(26px, 3vw, 40px); }
label { display: grid; gap: 7px; margin-bottom: 16px; font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 13px 14px; font-family: var(--sans); font-size: 15px; background: var(--paper); color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ink); background: var(--white); }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card .btn { width: 100%; margin-top: 8px; }
.form-card > p:last-child { margin-top: 16px; color: var(--muted); font-size: 13px; }
.form-card.submitted::after { content: "Received. We'll be in touch."; display: block; margin-top: 16px; color: var(--success); font-weight: 500; font-size: 14px; }
.auth-page { min-height: 640px; display: grid; place-items: center; padding: clamp(64px, 8vw, 100px) var(--pad); }
.auth-card { width: min(460px, 100%); box-shadow: 0 40px 80px -64px rgba(10,10,10,.35); }
.auth-card h1 { margin: 14px 0 24px; font-size: clamp(30px, 4vw, 42px); }
.auth-card .text-link { margin-bottom: 16px; }

/* —— faq ———————————————————————————————— */
.faq details { margin-bottom: 10px; }
summary { cursor: pointer; font-weight: 500; font-size: 15.5px; }
details p { margin-top: 12px; color: var(--muted); font-size: 14.5px; }

/* —— footer ——————————————————————————————— */
.footer { padding: clamp(56px, 7vw, 80px) var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: 32px; border-top: 1px solid var(--line); background: var(--white); }
.footer p { margin-top: 14px; color: var(--muted); font-size: 14.5px; max-width: 320px; }
.footer > div:first-child > a:not(.logo) { display: inline-block; margin-top: 10px; font-family: var(--mono); font-size: 12.5px; color: var(--muted); }
.foot-links { display: flex; flex-wrap: wrap; justify-content: flex-end; align-content: start; gap: 12px 22px; }
.foot-links a { font-size: 14px; font-weight: 500; color: #3c3a35; }
.foot-links a:hover { color: var(--ink); }
.disclaimer { grid-column: 1 / -1; max-width: none; padding-top: 24px; border-top: 1px solid var(--stone); font-size: 12.5px; line-height: 1.6; }

/* —— responsive ——————————————————————————— */
@media (max-width: 980px) {
  .menu-btn { display: inline-flex; justify-self: end; border: 1px solid var(--line); border-radius: 8px; background: var(--white); padding: 9px 14px; font: inherit; font-size: 13.5px; font-weight: 500; cursor: pointer; }
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 68px; background: var(--white); border-bottom: 1px solid var(--line); padding: 18px 24px; align-items: stretch; flex-direction: column; gap: 14px; }
  .menu-open .nav-links { display: flex; }
  .nav-drop { padding: 0; }
  .mega { display: none; }
  .finder-page, .contact-page, .talk-options { grid-template-columns: 1fr; }
  .situation-grid { grid-template-columns: 1fr; }
  .situation { border-right: 0; border-bottom: 1px solid var(--line); }
  .situation:last-child { border-bottom: 0; }
  .situation strong { margin-top: 18px; }
  .feature-grid, .cards, .pricing-grid, .result-grid, .detail-grid, .tier-grid, .split-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 36px 0; }
  .stats-band div:nth-child(odd) { border-left: 0; padding-left: 0; }
}

@media (max-width: 680px) {
  .nav { height: 62px; padding-inline: 18px; gap: 12px; }
  .logo { font-size: 20px; }
  .nav-actions { gap: 14px; }
  .nav-actions .login { display: none; }
  .hero, .page-hero, .finder-page, .contact-page, .talk-hero, .auth-page, .section, .band, .cta-strip, .footer { padding-left: 18px; padding-right: 18px; }
  .hero h1 { font-size: clamp(38px, 10.5vw, 52px); }
  .dev-body { grid-template-columns: 1fr; min-height: 0; }
  .dev-side { display: none; }
  .dev-st { grid-template-columns: 1fr 1fr; }
  .dev-main { padding: 18px; }
  .feature-grid, .cards, .pricing-grid, .result-grid, .detail-grid, .tier-grid, .split-band, .option-grid, .two, .footer { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; gap: 28px; }
  .stats-band div { border-left: 0; padding-left: 0; }
  .cta-strip { align-items: flex-start; flex-direction: column; }
  .foot-links { justify-content: flex-start; }
}
