/* ============================================================
   MaconCarAccidentReports.com — independent Macon consumer guide
   "Clean charcoal + amber, light": airy, mostly-white, charcoal
   used sparingly, a single amber accent. Green call buttons only.
   (Same content flow as the network; a genuinely different look.)
   ============================================================ */
:root {
  --paper: #ffffff;
  --paper-2: #f1f3f5;      /* light section bg */
  --paper-3: #e8ecf0;      /* slightly deeper light bg (exhibits) */
  --ink: #23262e;          /* charcoal — text + the few dark blocks */
  --ink-soft: #2c313b;
  --slate: #5b626e;        /* muted body / sub-text */
  --accent: #ffd60a;       /* true yellow — fills, underlines, ticks, on-dark accents */
  --accent-2: #ffd60a;     /* yellow on charcoal */
  --accent-dark: #cba300;  /* deep yellow (fill hovers only) */
  --alert: #c8402e;        /* warm red — translations / alerts (used sparingly) */
  --alert-bg: #fbeae7;
  --safe: #0ea55e;         /* green — kept ONLY for ✓ checkmarks + official-route accents */
  --safe-dark: #0b7f49;
  --safe-bg: #e7f6ee;
  --call: #00e1ff;         /* callhim.ai signature blue — call buttons */
  --call-dark: #05c8e6;
  --pop: #ffd60a;          /* yellow button outline */
  --line: #e3e7ec;
  --line-2: #d2d8df;
  --shadow: 0 1px 2px rgba(35,38,46,.04), 0 8px 24px rgba(35,38,46,.06);
  --shadow-lg: 0 2px 6px rgba(35,38,46,.06), 0 24px 50px rgba(35,38,46,.10);
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.025em; color: var(--ink); }

/* ---------- scrolling ticker ---------- */
.ticker {
  display: block; overflow: hidden; white-space: nowrap;
  background: var(--ink); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ticker-track {
  display: inline-flex; width: max-content;
  animation: ticker-scroll 58s linear infinite;
  transform: translate3d(0,0,0);
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-group { display: inline-flex; align-items: center; }
.ticker-item { color: rgba(255,255,255,.88); font-size: 0.82rem; font-weight: 500; padding: 8px 20px; letter-spacing: 0.01em; }
.ticker-item b { color: var(--accent-2); font-weight: 700; }
.ticker-sep { color: var(--accent); font-size: 0.5rem; align-self: center; }
@keyframes ticker-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 15px; padding-bottom: 15px; }
.brand { display: inline-flex; align-items: baseline; text-decoration: none; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--ink); letter-spacing: -0.03em; }
.brand-text { white-space: nowrap; }
.brand-text b { color: var(--ink); font-weight: 800; }
.brand-text .tld { color: var(--slate); font-weight: 700; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-display); font-weight: 800; border-radius: 10px; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn:active { transform: scale(.98); }
.btn-call { background: var(--call); color: var(--ink); box-shadow: 0 6px 16px rgba(0,225,255,.32); }
.btn-call:hover { background: var(--call-dark); color: var(--ink); transform: translateY(-2px); }
.btn-header { padding: 9px 18px; font-size: 0.95rem; border: 2.5px solid var(--pop); }
.btn-header .num-sub { font-size: 0.62em; }
.i-phone { width: 1.15em; height: 1.15em; flex-shrink: 0; }
.btn-giant { padding: 18px 30px; font-size: 1.3rem; width: 100%; justify-content: center; border: 3px solid var(--pop); }
.btn-giant .i-phone { width: 1.5em; height: 1.5em; }
.num-stack { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.num-main { font-size: 1.15em; letter-spacing: 0.01em; }
.num-sub { font-size: 0.62em; font-weight: 700; opacity: 0.92; }
@keyframes pulse-ring {
  0% { box-shadow: 0 6px 16px rgba(0,225,255,.32), 0 0 0 0 rgba(0,225,255,.5); }
  70% { box-shadow: 0 6px 16px rgba(0,225,255,.32), 0 0 0 16px rgba(0,225,255,0); }
  100% { box-shadow: 0 6px 16px rgba(0,225,255,.32), 0 0 0 0 rgba(0,225,255,0); }
}
.pulse { animation: pulse-ring 2.4s infinite; }
@media (prefers-reduced-motion: reduce) { .pulse { animation: none; } html { scroll-behavior: auto; } }

/* ---------- hero ---------- */
.hero { padding: 68px 0 52px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(760px 460px at 92% -10%, rgba(0,225,255,0.09), transparent 62%);
}
.hero-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 44px; align-items: start; position: relative; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display);
  font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.13em;
  color: var(--ink); margin-bottom: 20px;
}
.kicker::before { content: ""; width: 22px; height: 4px; background: var(--accent); border-radius: 2px; }
.hero h1 { font-size: clamp(2.15rem, 4.7vw, 3.55rem); font-weight: 800; margin-bottom: 20px; }
.hero h1 .hl {
  text-decoration: underline; text-decoration-color: var(--accent);
  text-decoration-thickness: 0.14em; text-underline-offset: 0.15em;
}
.hero-sub { font-size: 1.18rem; color: var(--slate); max-width: 34em; margin-bottom: 24px; }
.hero-points { list-style: none; display: flex; flex-direction: column; gap: 13px; font-weight: 500; font-size: 1.03rem; }
.hero-points li { display: flex; align-items: center; gap: 12px; }
.pt-x, .pt-c {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 7px; font-weight: 900; font-size: 0.8rem; flex-shrink: 0;
}
.pt-x { background: var(--alert-bg); color: var(--alert); }
.pt-c { background: var(--safe-bg); color: var(--safe-dark); }

/* the loud CTA — clean white card, amber top rule, pill flag */
.cta-card {
  background: var(--paper); border: 1px solid var(--line);
  border-top: 4px solid var(--accent); border-radius: 16px;
  padding: 28px 28px 24px; box-shadow: var(--shadow-lg); position: relative;
}
.cta-flag {
  display: inline-block; background: var(--accent); color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.09em; padding: 6px 13px; border-radius: 7px; margin-bottom: 14px;
}
.cta-title { font-size: 1.95rem; font-weight: 800; margin: 0 0 10px; }
.cta-lead { color: var(--slate); font-size: 1rem; margin-bottom: 18px; }
.cta-checks { list-style: none; margin: 18px 0 12px; display: flex; flex-direction: column; gap: 9px; font-weight: 500; font-size: 0.96rem; color: var(--ink); }
.cta-bonus { background: var(--paper-2); border-left: 4px solid var(--accent); border-radius: 0 9px 9px 0; padding: 13px 16px; font-size: 0.92rem; color: var(--ink); margin-bottom: 14px; }
.cta-bonus b { font-size: 0.86em; }
.cta-fine { font-size: 0.82rem; color: var(--slate); border-top: 1px solid var(--line); padding-top: 12px; }
.hero-scroll { display: block; width: fit-content; margin: 40px auto 0; font-weight: 700; color: var(--slate); text-decoration: none; font-size: 0.98rem; font-family: var(--font-display); border-bottom: 2px solid var(--line); padding-bottom: 3px; }
.hero-scroll:hover { color: var(--ink); border-bottom-color: var(--accent); }
.hero-points li.hint-box { background: rgba(255,214,10,.16); border: 1px solid rgba(224,145,42,.55); border-radius: 10px; padding: 11px 15px; }

/* ---------- minimal section divider (short amber rule, airy) ---------- */
.roadline { display: flex; justify-content: center; padding: 10px 0; }
.roadline::before { content: ""; width: 56px; height: 4px; border-radius: 3px; background: var(--accent); }

/* ---------- buyer-beware intro (LIGHT — no dark block) ---------- */
.warning-intro { background: var(--ink); color: #fff; padding: 66px 0 44px; }
.warn-eyebrow { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; font-size: 0.8rem; color: var(--accent); margin-bottom: 14px; }
.warning-intro h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); font-weight: 800; max-width: 22em; margin-bottom: 18px; color: #fff; }
.underline-y { color: #fff; text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 0.14em; text-underline-offset: 0.15em; }
.warn-lead { color: rgba(255,255,255,.82); max-width: 48em; font-size: 1.1rem; }
.warn-lead b { color: #fff; }

/* ---------- exhibits (LIGHT gray, white cards) ---------- */
.exhibits { background: var(--ink); padding: 30px 0 78px; }
.ex-head { margin-bottom: 6px; }
.ex-head h3 { color: #fff; font-size: 1.5rem; font-weight: 800; }
.ex-sub { color: rgba(255,255,255,.78); font-size: 1.02rem; margin-bottom: 24px; max-width: 50em; }
.ex-sub b { color: #fff; }
.ex-stage { position: relative; }
.ex-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 50px; height: 50px; border-radius: 12px;
  border: none; background: var(--accent); color: var(--ink); font-size: 1.25rem; font-weight: 900; cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.32);
  transition: background .15s ease, transform .15s ease;
}
.ex-btn:hover { background: var(--call); color: var(--ink); transform: translateY(-50%) scale(1.06); }
.ex-prev { left: -8px; }
.ex-next { right: -8px; }
.ex-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; }
.ex-track::-webkit-scrollbar { display: none; }
.ex-card {
  scroll-snap-align: start; flex: 0 0 min(88%, 720px);
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 14px;
  overflow: hidden; box-shadow: var(--shadow-lg); position: relative;
}
.ex-tag {
  position: absolute; top: 0; left: 0; z-index: 2;
  background: var(--alert); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 7px 15px; border-radius: 0 0 10px 0;
}
.browser-frame { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.browser-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px 8px; }
.browser-bar span { width: 10px; height: 10px; border-radius: 50%; background: #c3c9d0; }
.browser-bar span:nth-child(1) { background: #e5766c; }
.browser-bar span:nth-child(2) { background: #e8c063; }
.browser-bar span:nth-child(3) { background: #7fc283; }
.browser-url { flex: 1; margin-left: 8px; background: #fff; border: 1px solid var(--line); border-radius: 6px; font-size: 0.78rem; font-weight: 600; color: var(--slate); padding: 4px 12px; font-family: ui-monospace, monospace; }
.browser-frame img { width: 100%; max-height: 400px; object-fit: contain; object-position: top; background: #fff; }
.ex-zoom { display: block; }
.ex-body { overflow: hidden; padding: 20px 24px 24px; }
.ex-inset { float: right; width: 190px; margin: 2px 0 14px 20px; border-radius: 10px; overflow: hidden; background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line-2); }
.ex-inset figcaption { background: var(--ink); color: #fff; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; text-align: center; padding: 5px 4px; }
.ex-inset img { width: 100%; display: block; max-height: 250px; object-fit: cover; object-position: bottom; }
.ex-inset-note { display: flex; align-items: center; justify-content: flex-end; gap: 6px; background: #fff; color: var(--alert); font-size: 0.64rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; padding: 6px 16px 6px 8px; border-top: 2px solid var(--alert); }
.ip-arrow { font-size: 1.15rem; line-height: 1; font-weight: 900; }
@media (max-width: 560px) { .ex-inset { float: none; width: 170px; margin: 0 auto 16px; } }
.ex-quote { font-size: 0.98rem; color: var(--ink); margin-bottom: 12px; }
.ex-quote mark { background: rgba(224,145,42,.28); padding: 1px 3px; border-radius: 3px; font-weight: 700; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.ex-trans { font-size: 1.1rem; color: var(--alert); font-weight: 800; border-left: 4px solid var(--alert); padding-left: 14px; line-height: 1.45; }
.ex-trans b { text-transform: uppercase; font-size: 0.72em; letter-spacing: 0.07em; display: block; margin-bottom: 2px; }
.proof-link { color: var(--alert); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.ex-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.ex-dot { width: 8px; height: 8px; border-radius: 999px; border: 0; background: rgba(255,255,255,.3); cursor: pointer; transition: all .2s; padding: 0; }
.ex-dot.active { background: var(--accent); width: 22px; }
.ex-note { text-align: center; color: rgba(255,255,255,.5); font-size: 0.8rem; margin-top: 20px; max-width: 56em; margin-left: auto; margin-right: auto; }

/* ---------- the trick ---------- */
.trick { padding: 82px 0; background: var(--paper); }
.trick h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 40px; max-width: 20em; }
.trick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 36px; }
.trick-step { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 28px 24px; box-shadow: var(--shadow); position: relative; }
.t-num { width: 38px; height: 38px; border-radius: 10px; background: var(--ink); color: var(--accent-2); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; margin-bottom: 16px; }
.trick-step h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 10px; }
.trick-step p { color: var(--slate); font-size: 0.96rem; }
.trick-kicker { background: var(--paper-2); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 0 12px 12px 0; padding: 22px 26px; font-size: 1.06rem; color: var(--ink); max-width: 64em; }

/* ---------- real steps ---------- */
.steps { padding: 78px 0 64px; background: var(--call); }
.steps-eyebrow { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; font-size: 0.8rem; color: var(--ink); margin-bottom: 12px; }
.steps-eyebrow::before { content: ""; display: inline-block; width: 20px; height: 4px; background: var(--accent); border-radius: 2px; vertical-align: middle; margin-right: 9px; margin-bottom: 3px; }
.steps h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 12px; }
.steps-lead { color: var(--ink-soft); max-width: 48em; margin-bottom: 38px; }
.steps-lead b { color: var(--ink); }
.need-line { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--ink); border-radius: 0 10px 10px 0; padding: 13px 18px; margin: 0 0 30px; font-size: 0.98rem; color: var(--ink); }
.need-line b { color: var(--ink); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.compare-wrap { overflow-x: auto; margin: 0 0 34px; border-radius: 14px; border: 1px solid var(--line-2); box-shadow: var(--shadow); }
.compare { width: 100%; border-collapse: collapse; background: var(--paper); min-width: 620px; font-size: 0.95rem; }
.compare thead th { background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 0.96rem; padding: 15px 16px; text-align: left; }
.compare thead th:first-child { background: #14161c; }
.compare tbody th { background: var(--paper-2); text-align: left; font-weight: 800; color: var(--ink); padding: 13px 16px; white-space: nowrap; font-family: var(--font-display); }
.compare td { padding: 13px 16px; border-top: 1px solid var(--line); color: var(--ink); vertical-align: top; }
.compare tbody tr:nth-child(even) td { background: #fafbfc; }
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 34px; }
.route { background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--safe); border-radius: 14px; padding: 24px; box-shadow: var(--shadow); }
.route-badge { display: inline-block; background: var(--safe-bg); color: var(--safe-dark); font-family: var(--font-display); font-weight: 800; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 11px; border-radius: 6px; margin-bottom: 14px; }
.route h3 { font-size: 1.18rem; font-weight: 800; margin-bottom: 14px; }
.route-sub { display: block; font-size: 0.78rem; color: var(--slate); font-weight: 600; margin-top: 3px; }
.route ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.route li { font-size: 0.94rem; color: var(--ink); padding-left: 16px; position: relative; }
.route li::before { content: "›"; position: absolute; left: 0; color: var(--safe); font-weight: 900; }
.reality-box { display: flex; gap: 20px; align-items: flex-start; background: var(--ink); color: #fff; border-radius: 16px; padding: 28px 30px; }
.rb-icon { font-size: 1.9rem; line-height: 1; }
.reality-box h4 { font-size: 1.12rem; font-weight: 800; color: var(--accent-2); margin-bottom: 8px; }
.reality-box p { color: rgba(255,255,255,.82); font-size: 0.98rem; }
.reality-box p + p { margin-top: 12px; }
.reality-box .btn-call { margin-top: 14px; padding: 12px 22px; font-size: 1rem; }
.route-wait { margin-top: 14px; padding: 12px 14px; background: var(--paper-2); border-left: 4px solid var(--accent); border-radius: 0 9px 9px 0; font-size: 0.9rem; font-weight: 600; color: var(--ink); }

/* ---------- between-section CTA strips (light, bordered) ---------- */
.cta-strip { background: var(--paper); padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px 30px; flex-wrap: wrap; }
.cs-text { color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; line-height: 1.2; }
.cs-text b { color: var(--ink); font-weight: 800; box-shadow: inset 0 -0.5em 0 rgba(255,214,10,.55); }
.btn-strip { padding: 15px 26px; font-size: 1.1rem; flex-shrink: 0; border: 3px solid var(--pop); }
.btn-strip .i-phone { width: 1.25em; height: 1.25em; }
.btn-strip .num-sub { font-size: 0.6em; font-weight: 700; opacity: .92; display: block; }

/* ---------- second cta band (CHARCOAL — the one big dark moment) ---------- */
.cta-band { background: var(--ink); color: #fff; padding: 72px 0; }
.cta-band-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 46px; align-items: center; }
.cb-copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 12px; color: #fff; }
.cb-lead { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 20px; }
.cb-list { list-style: none; display: flex; flex-direction: column; gap: 11px; font-weight: 500; margin-bottom: 22px; color: rgba(255,255,255,.9); }
.cb-list li b, .cb-list li { color: rgba(255,255,255,.9); }
.cb-bonus { margin-bottom: 22px; }
.cb-bonus-title { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin-bottom: 6px; color: var(--accent-2); }
.cb-bonus-lead { color: rgba(255,255,255,.85); margin-bottom: 14px; font-size: 1rem; }
.q-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.q-chip { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.16); font-weight: 500; font-size: 0.88rem; padding: 9px 14px; border-radius: 8px; }
.cb-privacy { background: rgba(255,255,255,.06); border-left: 4px solid var(--accent); padding: 14px 18px; border-radius: 0 9px 9px 0; font-size: 0.94rem; color: rgba(255,255,255,.85); }
.cb-privacy b { color: #fff; }
.cb-cta .btn-call { background: var(--call); color: var(--ink); box-shadow: 0 10px 30px rgba(0,225,255,.35); border: 3px solid var(--pop); }
.cb-cta .btn-call:hover { background: var(--call-dark); }
.cb-cta .pulse { animation: pulse-ring 2.4s infinite; }
.cb-under { text-align: center; margin-top: 14px; font-weight: 700; font-size: 0.92rem; color: rgba(255,255,255,.85); }

/* ---------- faq ---------- */
.faq { padding: 82px 0; background: var(--paper); }
.faq h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 32px; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 11px; overflow: hidden; }
.faq details[open] { border-color: var(--line-2); box-shadow: var(--shadow); }
.faq summary { cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 700; font-size: 1.04rem; padding: 18px 52px 18px 22px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; border-radius: 7px; background: var(--paper-2); color: var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 900; transition: all .2s; }
.faq details[open] summary::after { content: "–"; background: var(--accent); color: var(--ink); }
.faq details p { padding: 0 22px 20px; color: var(--slate); }
.faq details a { color: var(--safe-dark); font-weight: 700; }

/* ---------- sources ---------- */
.sources { padding: 54px 0; background: var(--paper); border-top: 1px solid var(--line); }
.sources h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.sources p { color: var(--slate); margin-bottom: 14px; max-width: 50em; }
.sources ul { list-style: none; display: flex; flex-direction: column; gap: 6px; color: var(--slate); font-size: 0.92rem; margin-bottom: 16px; }
.sources li { padding-left: 18px; position: relative; }
.sources li::before { content: "✓"; position: absolute; left: 0; color: var(--safe); font-weight: 900; }
.sources a { color: var(--safe-dark); font-weight: 600; }
.updated { font-size: 0.85rem; font-weight: 700; color: var(--slate); }

/* ---------- footer (charcoal) ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 56px 0 92px; }
.foot-brand { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: #fff; margin-bottom: 22px; letter-spacing: -0.02em; }
.foot-brand b { color: var(--accent-2); }
.foot-disclosure { max-width: 62em; display: flex; flex-direction: column; gap: 12px; font-size: 0.92rem; line-height: 1.65; }
.foot-disclosure b { color: #fff; }
.foot-copy { margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); font-size: 0.85rem; }
.foot-copy a { color: var(--accent-2); font-weight: 700; text-decoration: none; }

/* ---------- sticky mobile call bar ---------- */
.sticky-call {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--call); color: var(--ink); text-decoration: none; text-align: center;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 800;
  padding: 14px 10px calc(14px + env(safe-area-inset-bottom));
  align-items: center; justify-content: center; gap: 8px;
  border-top: 3px solid var(--pop); box-shadow: 0 -6px 20px rgba(0,0,0,.28);
}
.sticky-call .i-phone { width: 1.5em; height: 1.5em; }
.sticky-txt { display: flex; flex-direction: column; line-height: 1.15; align-items: flex-start; }
.sticky-txt b { font-size: 1.25rem; letter-spacing: 0.01em; }
.sticky-txt small { font-size: 0.72rem; font-weight: 700; opacity: 0.95; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .trick-grid, .route-grid { grid-template-columns: 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .ex-card { flex-basis: 92%; }
}
@media (max-width: 640px) {
  .btn-header { display: none; }
  .cta-strip-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .btn-strip { width: 100%; justify-content: center; }
  .ex-btn { width: 42px; height: 42px; font-size: 1.05rem; }
  .ex-prev { left: -4px; }
  .ex-next { right: -4px; }
  .brand-text { font-size: 0.92rem; }
  .hero { padding-top: 46px; }
  .browser-frame img { max-height: 260px; }
  .sticky-call { display: flex; }
  .site-footer { padding-bottom: 110px; }
  .reality-box { flex-direction: column; gap: 10px; }
}
