/* Responder HQ — marketing site. Self-contained (no external fonts/CDNs). */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #20242A;
  --muted: #67635A;
  --paper: #F4F3EE;
  --card: #FFFFFF;
  --line: #E3E1D8;
  --navy: #274060;
  --navy-deep: #1B2C42;
  --trim: #E8C63D;      /* turnout-gold accent */
  --red: #B7202A;       /* badge red — accents only */
  --ok: #2F7D51;
  --maxw: 1120px;
  --disp: Bahnschrift, "Franklin Gothic Medium", "Arial Narrow", sans-serif;
  --body: "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---- Display type ---- */
h1, h2, h3, .disp { font-family: var(--disp); letter-spacing: .03em; line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(30px, 5vw, 52px); font-weight: 600; }
h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 600; }
h3 { font-size: 20px; font-weight: 600; }
.eyebrow { font-family: var(--disp); text-transform: uppercase; letter-spacing: .16em; font-size: 13px; color: var(--red); font-weight: 600; }
.lede { color: var(--muted); font-size: clamp(16px, 2vw, 19px); max-width: 60ch; }

/* turnout stripe motif */
.stripe { height: 8px; width: 64px; border-radius: 2px;
  background: linear-gradient(to bottom, var(--trim) 0 30%, var(--paper) 30% 70%, var(--trim) 70% 100%); }
.band .stripe { background: linear-gradient(to bottom, var(--trim) 0 30%, #fff 30% 70%, var(--trim) 70% 100%); }

/* ---- Buttons ---- */
.btn { display: inline-block; font-family: var(--disp); letter-spacing: .06em; text-transform: uppercase;
  font-size: 14px; font-weight: 600; padding: 13px 24px; border-radius: 8px; border: 2px solid transparent;
  cursor: pointer; transition: transform .06s ease, box-shadow .15s ease, background .15s ease; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); box-shadow: 0 6px 18px rgba(27,44,66,.28); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: rgba(39,64,96,.06); }
.btn-gold { background: var(--trim); color: var(--navy-deep); }
.btn-gold:hover { box-shadow: 0 6px 18px rgba(232,198,61,.4); }
.on-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.on-dark .btn-ghost:hover { background: rgba(255,255,255,.1); }

/* ---- Header ---- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(244,243,238,.92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: 20px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 40px; width: auto; }
.brand:hover { text-decoration: none; }
nav.main { margin-left: auto; display: flex; align-items: center; gap: 26px; }
nav.main a.navlink { font-family: var(--disp); text-transform: uppercase; letter-spacing: .08em;
  font-size: 14px; font-weight: 600; color: var(--ink); }
nav.main a.navlink:hover { color: var(--navy); text-decoration: none; }
nav.main a.navlink[aria-current="page"] { color: var(--navy); border-bottom: 2px solid var(--trim); padding-bottom: 3px; }
.menu-toggle, .menu-btn { display: none; }

@media (max-width: 780px) {
  nav.main { position: fixed; inset: 68px 0 auto 0; background: var(--paper); flex-direction: column;
    align-items: stretch; gap: 0; margin: 0; border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .25s ease; }
  .menu-toggle:checked ~ nav.main { max-height: 400px; }
  nav.main a.navlink { padding: 16px 24px; border-top: 1px solid var(--line); }
  nav.main .btn { margin: 14px 24px 20px; text-align: center; }
  .menu-btn { display: inline-flex; margin-left: auto; align-items: center; justify-content: center;
    width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 8px; background: var(--card);
    cursor: pointer; font-size: 20px; color: var(--navy); }
}

/* ---- Sections ---- */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 62ch; margin: 0 auto 44px; display: grid; gap: 12px; justify-items: center; }
.section-head .lede { text-align: center; }

/* Hero */
.hero { background: radial-gradient(1200px 500px at 70% -10%, #24405f 0%, var(--navy-deep) 55%);
  color: #fff; padding: 84px 0 92px; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: linear-gradient(to right, var(--trim) 0 33%, var(--paper) 33% 40%, var(--trim) 40% 100%); opacity: .9; }
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; }
.hero .lede { color: #C6D0DC; max-width: 46ch; }
.hero-logo { justify-self: center; }
.hero-logo img { width: min(360px, 78vw); filter: drop-shadow(0 10px 30px rgba(0,0,0,.35)); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero .kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-family: var(--disp); text-transform: uppercase; letter-spacing: .14em; font-size: 12.5px; color: var(--trim); }
.hero .kicker .stripe { width: 40px; height: 6px; }
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero .lede { margin: 0 auto; } .hero .kicker { justify-content: center; }
  .hero-cta { justify-content: center; } .hero-logo { order: -1; }
}

/* Bands */
.band { background: var(--navy-deep); color: #fff; text-align: center; padding: 56px 0; }
.band h2 { color: #fff; }
.band .sub { color: #AEB6C2; margin-top: 10px; }
.band .stripe { margin: 0 auto 18px; }

/* Feature grid */
.grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid { grid-template-columns: 1fr; } }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 26px;
  border-top: 4px solid var(--navy); transition: box-shadow .15s ease, transform .1s ease; }
.card:hover { box-shadow: 0 10px 30px rgba(32,36,42,.09); transform: translateY(-2px); }
.card .ic { width: 44px; height: 44px; border-radius: 10px; background: rgba(39,64,96,.08);
  display: grid; place-items: center; margin-bottom: 14px; }
.card .ic svg { width: 24px; height: 24px; stroke: var(--navy); fill: none; stroke-width: 1.8; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* Detailed feature rows */
.feature-row { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.feature-row:last-child { border-bottom: 0; }
.feature-row .badge-ic { width: 56px; height: 56px; }
.feature-row h3 { margin-bottom: 6px; }
.feature-row p { color: var(--muted); }

/* Why-now points */
.points { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 780px){ .points { grid-template-columns: 1fr; } }
.point { padding: 22px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; border-left: 4px solid var(--red); }
.point h3 { font-size: 17px; }
.point p { color: var(--muted); font-size: 14.5px; margin-top: 6px; }

/* Split / prose */
.prose { max-width: 72ch; margin: 0 auto; }
.prose p { margin: 0 0 18px; color: #33373d; }
.prose h2 { margin: 34px 0 12px; }
.prose ul { margin: 0 0 18px 22px; color: #33373d; }

/* Contact cards */
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 780px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 28px; text-align: center; }
.contact-card .ic { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 12px; background: rgba(39,64,96,.08); display: grid; place-items: center; }
.contact-card .ic svg { width: 26px; height: 26px; stroke: var(--navy); fill: none; stroke-width: 1.7; }
.contact-card h3 { margin-bottom: 4px; }
.contact-card .role { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.contact-card a.email { font-family: var(--disp); font-weight: 600; letter-spacing: .02em; color: var(--navy); font-size: 15.5px; word-break: break-word; }

/* CTA strip */
.cta { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; text-align: center; padding: 60px 0; }
.cta h2 { color: #fff; margin-bottom: 10px; }
.cta p { color: #C6D0DC; margin-bottom: 26px; }

/* Footer */
.site-footer { background: var(--navy-deep); color: #AEB6C2; padding: 48px 0 30px; font-size: 14.5px; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
@media (max-width: 780px){ .site-footer .cols { grid-template-columns: 1fr; gap: 26px; } }
.site-footer img { height: 46px; margin-bottom: 12px; }
.site-footer h4 { font-family: var(--disp); text-transform: uppercase; letter-spacing: .1em; font-size: 13px; color: #fff; margin-bottom: 12px; }
.site-footer a { color: #D5DBE3; display: block; padding: 3px 0; }
.site-footer a:hover { color: #fff; }
.site-footer .legal { border-top: 1px solid rgba(255,255,255,.12); margin-top: 32px; padding-top: 20px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #8894a3; font-size: 13px; }
.site-footer .tag { color: var(--trim); font-family: var(--disp); letter-spacing: .04em; }
