/* ============================================
   Accident Claims Department
   Design tokens
   ============================================ */
:root {
  --ink: #101B2D;
  --ink-soft: #3C4A5E;
  --paper: #EDEFE9;
  --panel: #FBFBF8;
  --line: #C9CFC0;
  --flare: #D96C1F;
  --flare-dark: #B4550F;
  --good: #2F6B4F;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --radius: 4px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

a { color: inherit; }
img, svg { display: block; max-width: 100%; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flare-dark);
  margin: 0 0 10px;
}
.eyebrow-center { text-align: center; }

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  max-width: 720px;
}
.support h2.section-title,
.how h2.section-title,
.faq h2.section-title { margin: 0 auto; text-align: center; }

.section-lede {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 14px 0 0;
}
.support .section-lede,
.how .section-lede,
.faq .section-lede { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:focus-visible {
  outline: 3px solid var(--flare);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--flare);
  color: #fff;
}
.btn-primary:hover { background: var(--flare-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-large { padding: 18px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-arrow { transition: transform 0.15s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(237, 239, 233, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark { color: var(--flare); flex: none; }
.pulse-ring {
  transform-origin: center;
  animation: ring-pulse 2.6s ease-out infinite;
}
@keyframes ring-pulse {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}
.brand-word {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.brand-word strong { display: block; font-weight: 700; letter-spacing: 0.01em; }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.main-nav a:hover { color: var(--ink); border-color: var(--flare); }

.tel-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  line-height: 1.25;
  border-left: 2px solid var(--flare);
  padding-left: 14px;
}
.tel-label { font-size: 0.7rem; color: var(--ink-soft); }
.tel-number { font-family: var(--font-mono); font-weight: 700; font-size: 1rem; color: var(--ink); }

/* ============================================
   Hero
   ============================================ */
.hero { padding: 64px 0 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--flare-dark);
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 20px 0 26px;
}

.check-list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.98rem;
}
.check {
  flex: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--good);
  color: #fff;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.fine-print { font-size: 0.78rem; color: var(--ink-soft); max-width: 520px; }

/* Dispatch card — signature element */
.dispatch-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 24px 60px -30px rgba(16, 27, 45, 0.35);
}
.dispatch-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-live { background: var(--flare); animation: dot-blink 1.6s ease-in-out infinite; }
@keyframes dot-blink { 50% { opacity: 0.25; } }

.dispatch-row { display: flex; align-items: center; gap: 20px; padding: 6px 0; }
.dispatch-timer {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--ink);
  min-width: 84px;
}
.timer-unit { font-size: 0.9rem; color: var(--ink-soft); font-weight: 400; }
.dispatch-desc { display: flex; flex-direction: column; }
.dispatch-desc strong { font-size: 0.98rem; }
.dispatch-desc span { font-size: 0.82rem; color: var(--ink-soft); }
.dispatch-divider { height: 1px; background: var(--line); margin: 4px 0; }

.dispatch-map { margin-top: 18px; }
.beacon {
  animation: beacon-pulse 1.8s ease-in-out infinite;
  transform-origin: 140px 55px;
}
@keyframes beacon-pulse {
  0%, 100% { r: 6; opacity: 1; }
  50% { r: 9; opacity: 0.55; }
}

/* ============================================
   Stat strip
   ============================================ */
.stat-strip { background: var(--ink); color: var(--paper); padding: 36px 0; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--flare);
}
.stat strong span { font-size: 0.95rem; color: rgba(237, 239, 233, 0.6); font-weight: 400; }
.stat p { margin: 6px 0 0; font-size: 0.85rem; color: rgba(237, 239, 233, 0.75); }

/* ============================================
   Support
   ============================================ */
.support, .how, .eligible, .claim-section, .faq { padding: 80px 0; }
.support-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.support-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.support-index {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--flare-dark);
  display: block;
  margin-bottom: 14px;
}
.support-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.support-card p { color: var(--ink-soft); font-size: 0.94rem; margin: 0 0 16px; }
.support-card a { font-weight: 600; text-decoration: none; font-size: 0.92rem; color: var(--flare-dark); }
.support-card a:hover { text-decoration: underline; }

/* ============================================
   How / timeline
   ============================================ */
.how { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.timeline {
  list-style: none;
  margin: 48px auto 0;
  padding: 0;
  max-width: 760px;
  display: grid;
  gap: 0;
  border-left: 1px dashed var(--line);
}
.timeline li {
  display: flex;
  gap: 20px;
  padding: 0 0 34px 26px;
  position: relative;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline-num {
  position: absolute;
  left: -14px;
  top: 0;
  width: 27px; height: 27px;
  border-radius: 50%;
  background: var(--flare);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline h3 { font-size: 1.08rem; margin-bottom: 6px; }
.timeline p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }

.how-actions {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.how-actions a:not(.btn) { color: var(--flare-dark); font-weight: 600; text-decoration: none; }
.how-actions a:not(.btn):hover { text-decoration: underline; }

/* ============================================
   Eligible
   ============================================ */
.eligible-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.eligible-callout {
  background: var(--ink);
  color: var(--paper);
  padding: 34px;
  border-radius: var(--radius);
}
.eligible-callout .eyebrow { color: var(--flare); }
.eligible-callout h3 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.eligible-callout p { color: rgba(237, 239, 233, 0.78); margin: 0 0 22px; }

/* ============================================
   Claim form
   ============================================ */
.claim-section { background: var(--panel); border-top: 1px solid var(--line); }
.claim-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.claim-privacy {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.claim-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 18px;
}
.form-row { display: grid; gap: 6px; }
.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.req { color: var(--flare-dark); }
.form-row input,
.form-row select {
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}
.form-row input:focus-visible,
.form-row select:focus-visible {
  outline: none;
  border-color: var(--flare);
  box-shadow: 0 0 0 3px rgba(217, 108, 31, 0.18);
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.consent-row input { margin-top: 3px; }
.consent-row a { color: var(--flare-dark); text-decoration: underline; }
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.form-status {
  margin: 0;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.form-status.success { color: var(--good); }
.form-status.error { color: #B3261E; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 760px; margin: 44px auto 0; display: grid; gap: 12px; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--flare-dark);
  margin-left: 12px;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--ink-soft); margin: 14px 0 0; font-size: 0.94rem; }

/* ============================================
   CTA band
   ============================================ */
.cta-band { background: var(--ink); color: #fff; padding: 80px 0; text-align: center; }
.cta-band-inner { max-width: 560px; margin: 0 auto; }
.cta-band .eyebrow { color: var(--flare); }
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.72); margin: 0 0 30px; }

/* ============================================
   Footer
   ============================================ */
.site-footer { background: var(--ink); color: rgba(237, 239, 233, 0.85); padding: 56px 0 30px; font-size: 0.9rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(237, 239, 233, 0.15);
}
.footer-brand .brand-word { color: #fff; margin-bottom: 12px; display: inline-block; }
.footer-brand p { max-width: 320px; color: rgba(237, 239, 233, 0.6); }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(237,239,233,0.5); margin: 0 0 14px; }
.footer-col a { display: block; text-decoration: none; margin-bottom: 8px; color: rgba(237,239,233,0.85); }
.footer-col a:hover { color: var(--flare); }
.footer-col p { color: rgba(237,239,233,0.6); margin: 0; }
.footer-legal { padding-top: 26px; }
.footer-legal p { color: rgba(237, 239, 233, 0.45); font-size: 0.78rem; margin: 0 0 12px; line-height: 1.6; }
.copyright { color: rgba(237, 239, 233, 0.35) !important; }

/* ============================================
   Mobile call bar
   ============================================ */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--flare);
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}
.mobile-call-bar span { font-size: 0.72rem; opacity: 0.85; display: block; }
.mobile-call-bar strong { font-family: var(--font-mono); font-size: 1.05rem; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .eligible-grid,
  .claim-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .tel-pill { border-left: none; padding-left: 0; align-items: flex-start; }
  .tel-label { display: none; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 62px; }
  .hero { padding-top: 32px; }
}
