/* Blow The Bolts — blowthebolts.com */

:root {
  --bg: hsl(228 52% 5%);
  --bg-2: hsl(228 46% 8%);
  --panel: hsl(227 42% 10%);
  --panel-2: hsl(226 38% 13%);
  --line: hsl(226 30% 18%);
  --text: hsl(220 40% 94%);
  --muted: hsl(222 16% 70%);
  --flame: hsl(27 96% 55%);
  --flame-2: hsl(45 100% 62%);
  --blue: hsl(214 85% 66%);
  --grad-flame: linear-gradient(115deg in oklch, hsl(20 95% 52%), hsl(45 100% 60%));
  --font-display: "Space Grotesk", "Avenir Next", system-ui, sans-serif;
  --font-serif: "Lora", Georgia, serif;
  --r-outer: 20px;
  --r-inner: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.serif { font-family: var(--font-serif); font-weight: 400; font-size: 1.125rem; }
.serif p + p { margin-top: 1.1em; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 24px; }

.eyebrow {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--flame); margin-bottom: 16px;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Buttons */
.btn {
  display: inline-block; padding: 14px 30px;
  border-radius: 999px; font-weight: 700; font-size: 1.05rem;
  font-family: var(--font-display); letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: var(--grad-flame); color: hsl(24 80% 10%);
  box-shadow: 0 6px 28px hsl(27 96% 55% / 0.35);
}
.btn-primary:hover { box-shadow: 0 10px 36px hsl(27 96% 55% / 0.5); }
.btn-ghost { border: 1px solid var(--line); color: var(--text); background: hsl(228 40% 10% / 0.5); }
.btn-big { padding: 18px 46px; font-size: 1.2rem; }

/* ============ Starfield ============ */
.stars {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 22%, hsl(0 0% 100% / 0.9) 50%, transparent 51%),
    radial-gradient(1px 1px at 34% 68%, hsl(0 0% 100% / 0.55) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 56% 14%, hsl(0 0% 100% / 0.8) 50%, transparent 51%),
    radial-gradient(1px 1px at 72% 42%, hsl(0 0% 100% / 0.5) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 88% 76%, hsl(0 0% 100% / 0.7) 50%, transparent 51%),
    radial-gradient(1px 1px at 22% 88%, hsl(0 0% 100% / 0.6) 50%, transparent 51%),
    radial-gradient(1px 1px at 44% 38%, hsl(0 0% 100% / 0.45) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 66% 92%, hsl(0 0% 100% / 0.6) 50%, transparent 51%),
    radial-gradient(1px 1px at 8% 54%, hsl(0 0% 100% / 0.5) 50%, transparent 51%),
    radial-gradient(1px 1px at 94% 18%, hsl(0 0% 100% / 0.65) 50%, transparent 51%);
  background-size: 640px 640px;
}

/* ============ Hero ============ */
.hero {
  position: relative; min-height: 92svh;
  display: flex; align-items: center;
  overflow: hidden;
  background:
    linear-gradient(97deg, hsl(228 45% 6% / 0.96) 0%, hsl(228 45% 6% / 0.86) 30%, hsl(228 45% 6% / 0.3) 58%, hsl(228 45% 6% / 0.08) 80%, hsl(228 45% 6% / 0.35) 100%),
    url('/assets/hero-liftoff.jpg') 74% center / cover no-repeat,
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero-copy { max-width: 640px; text-align: left; }
.hero-copy .hero-lede { margin: 0 0 36px; }
.hero-copy .cta-row { justify-content: flex-start; }
@media (max-width: 820px) {
  .hero {
    background:
      linear-gradient(hsl(228 45% 6% / 0.78), hsl(228 45% 6% / 0.9)),
      url('/assets/hero-liftoff.jpg') 70% center / cover no-repeat,
      var(--bg);
  }
  .hero-copy { text-align: center; margin: 0 auto; }
  .hero-copy .cta-row { justify-content: center; }
}
.hero-glow {
  position: absolute; left: 50%; bottom: -140px; transform: translateX(-50%);
  width: 900px; height: 320px; pointer-events: none;
  background: radial-gradient(50% 100% at 50% 100%, hsl(27 96% 55% / 0.28), hsl(20 95% 45% / 0.1) 55%, transparent 75%);
}
.hero-inner { position: relative; padding: 96px 24px; }
.hero h1 {
  font-size: clamp(3.2rem, 9vw, 6.2rem);
  font-weight: 700; letter-spacing: 0.01em; line-height: 0.98;
  margin: 8px 0 16px;
}
.flame-text {
  background: var(--grad-flame);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.byline { font-size: clamp(1.05rem, 2.4vw, 1.35rem); color: var(--muted); font-weight: 600; margin-bottom: 32px; }
.hero-lede {
  font-family: var(--font-serif); font-size: clamp(1.1rem, 2.6vw, 1.4rem);
  max-width: 640px; margin: 0 auto 36px; color: var(--text);
}
.hero-lede strong { color: var(--flame-2); }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.hero-meta { font-size: 0.92rem; color: var(--muted); letter-spacing: 0.04em; }

/* ============ Questions ============ */
.questions { padding: 96px 0 64px; }
.q {
  font-family: var(--font-serif); font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  line-height: 1.5; margin-bottom: 2em; color: var(--text);
}
.q em { color: var(--flame-2); font-style: italic; }
.q-final {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.3rem); color: var(--flame);
}

/* ============ Featured quote ============ */
.featured-quote {
  background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 72px 0; position: relative;
}
.qmark { width: 40px; color: var(--flame); margin-bottom: 20px; }
.featured-quote p {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.45rem); line-height: 1.6;
}
.featured-quote footer { margin-top: 20px; color: var(--muted); font-weight: 600; }

/* ============ Held back ============ */
.held-back { padding: 88px 0; }
.held-back h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.chips li {
  border: 1px solid var(--line); background: var(--panel);
  border-radius: 999px; padding: 10px 20px;
  font-size: 1rem; color: var(--text);
}

/* ============ Analogy ============ */
.analogy { padding: 88px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.analogy-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
  align-items: center; margin: 48px 0;
}
.analogy-photo img {
  width: 100%; height: auto; border-radius: var(--r-outer);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px hsl(228 60% 3% / 0.6);
}
.beat {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem); color: var(--flame);
  margin: 0.8em 0 !important; letter-spacing: -0.01em;
}
.analogy-you { margin-top: 24px; }
.truth {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.6rem); color: var(--flame-2);
  margin-top: 1.4em !important;
}

/* ============ Bolts grid ============ */
.bolts { padding: 96px 0; }
.bolt-grid {
  list-style: none; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px;
}
.bolt-grid li {
  position: relative; background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--r-outer);
  padding: 28px 22px 24px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.bolt-grid li:hover {
  transform: translateY(-5px); border-color: hsl(27 80% 45% / 0.6);
  box-shadow: 0 16px 40px hsl(27 96% 50% / 0.12);
}
.bolt-num {
  position: absolute; top: 18px; right: 20px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; color: var(--muted);
}
.bolt-icon { width: 34px; color: var(--flame); margin-bottom: 14px; }
.bolt-grid h3 { font-size: 1.12rem; font-weight: 600; line-height: 1.3; }
.familiar { margin-top: 40px; font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; color: var(--muted); }

/* ============ T-zero ============ */
.tzero { padding: 88px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ============ Testimonials ============ */
.testimonials { padding: 96px 0; }
.testimonials .sub {
  font-family: var(--font-serif); font-style: italic;
  color: var(--flame-2); font-size: 1.25rem; margin: -12px 0 48px;
}
.t-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.t-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r-outer); overflow: hidden;
  display: flex; flex-direction: column;
}
.t-photo { width: 100%; height: 320px; object-fit: cover; object-position: center 25%; display: block; }
.t-body { padding: 28px; }
.stars-row span { color: var(--flame-2); letter-spacing: 0.2em; font-size: 1.05rem; }
.t-body h3, .t-letter h3 { font-size: 1.3rem; margin: 10px 0 14px; }
.t-body p { font-size: 0.98rem; color: var(--text); }
.t-body footer, .t-letter-name { margin-top: 16px; color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.t-letter {
  margin-top: 24px; background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--r-outer);
  padding: 36px;
}
.t-letter-head { display: flex; gap: 24px; align-items: center; margin-bottom: 24px; }
.t-photo-round {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  border: 2px solid hsl(27 80% 45% / 0.5); flex-shrink: 0;
}
.t-letter-name span { font-weight: 500; font-size: 0.88rem; }
.t-letter-body { columns: 2; column-gap: 40px; font-size: 1.02rem; }
.t-letter-body p { break-inside: avoid; margin-bottom: 1em; }
.t-letter-close { font-style: italic; color: var(--muted); }

/* ============ Offer ============ */
.offer { position: relative; padding: 110px 0; background: var(--bg-2); border-top: 1px solid var(--line); overflow: hidden; }
.offer::after {
  content: ""; position: absolute; left: 50%; bottom: -160px; transform: translateX(-50%);
  width: 1000px; height: 360px; pointer-events: none;
  background: radial-gradient(50% 100% at 50% 100%, hsl(27 96% 55% / 0.22), transparent 72%);
}
.offer-card {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid hsl(27 60% 40% / 0.35);
  border-radius: calc(var(--r-outer) + 8px);
  padding: 56px 48px; text-align: center;
  box-shadow: 0 30px 80px hsl(228 60% 3% / 0.6);
}
.offer-card h2 { font-size: clamp(1.35rem, 3vw, 1.8rem); max-width: 30ch; margin-left: auto; margin-right: auto; }
.offer-list { list-style: none; text-align: left; max-width: 520px; margin: 32px auto; }
.offer-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0; font-size: 1.05rem;
}
.offer-list svg { width: 20px; flex-shrink: 0; margin-top: 5px; color: var(--flame); }
.price { margin: 12px 0 28px; }
.price-amount {
  display: block; font-size: clamp(2.6rem, 6vw, 3.6rem); font-weight: 700;
  background: var(--grad-flame);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1.1;
}
.price-note { display: block; color: var(--muted); font-size: 0.95rem; margin-top: 6px; }
.soar {
  margin-top: 28px; font-family: var(--font-display); font-weight: 700;
  font-size: 1.25rem; letter-spacing: 0.02em; color: var(--flame-2);
}

/* ============ About ============ */
.about { padding: 96px 0; }
.about-grid {
  display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: center;
}
.about-photo {
  width: 100%; height: auto; border-radius: var(--r-outer);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px hsl(228 60% 3% / 0.55);
}
.cred-list { list-style: none; margin: 20px 0; }
.cred-list li {
  padding: 10px 0 10px 30px; position: relative; font-size: 1.08rem;
  border-bottom: 1px solid var(--line);
}
.cred-list li:last-child { border-bottom: none; }
.cred-list li::before {
  content: ""; position: absolute; left: 4px; top: 20px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad-flame);
}
.about-more { color: var(--muted); margin-top: 12px; }

/* ============ Footer ============ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 24px; text-align: center;
  color: var(--muted); font-size: 0.92rem;
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .bolt-grid { grid-template-columns: repeat(2, 1fr); }
  .analogy-grid { grid-template-columns: 1fr; gap: 32px; }
  .t-grid { grid-template-columns: 1fr; }
  .t-letter-body { columns: 1; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { max-width: 340px; }
}
@media (max-width: 520px) {
  .bolt-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .bolt-grid li { padding: 20px 14px 16px; }
  .bolt-grid h3 { font-size: 0.98rem; }
  .offer-card { padding: 40px 22px; }
  .t-letter { padding: 26px 20px; }
  .t-letter-head { flex-direction: column; text-align: center; }
}

/* ============ Listen free (Introduction) ============ */
.listen { padding: 72px 24px 8px; }
.listen-card {
  max-width: 720px; margin: 0 auto; position: relative;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r-outer); padding: 44px 36px; text-align: center;
}
.listen-card audio { width: 100%; margin-top: 26px; height: 44px; }
.listen-sub { color: var(--muted); margin-top: 16px; font-size: 0.97rem; }
.listen-sub a { color: var(--flame-2); font-weight: 600; }
@media (max-width: 520px) { .listen-card { padding: 32px 20px; } }

/* ============ Track list ============ */
.tracklist { padding: 40px 24px 72px; }
.tracklist-inner { max-width: 620px; margin: 0 auto; }
.tracklist ol { list-style: none; margin-top: 28px; border-top: 1px solid var(--line); padding: 0; }
.tracklist li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; padding: 13px 4px; border-bottom: 1px solid var(--line);
}
.tracklist .t-name { font-weight: 600; }
.tracklist .t-free { color: var(--flame-2); font-size: 0.8rem; font-weight: 700; margin-left: 10px; letter-spacing: 0.04em; }
.tracklist .t-time { color: var(--muted); font-variant-numeric: tabular-nums; }
.tracklist-total { text-align: center; color: var(--muted); margin-top: 18px; font-size: 0.95rem; }

/* ============ "Sound familiar?" moment ============ */
.familiar-row {
  display: grid; grid-template-columns: 260px 1fr; gap: 40px;
  align-items: center; max-width: 760px; margin: 56px auto 0;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r-outer); padding: 36px 40px;
}
.familiar-photo {
  width: 100%; border-radius: 14px; display: block;
  border: 1px solid var(--line);
}
.familiar-q { font-size: clamp(1.5rem, 3.6vw, 2.1rem); font-weight: 700; line-height: 1.2; }
.familiar-a { font-family: var(--font-serif); color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.familiar-a strong { color: var(--flame-2); }
@media (max-width: 680px) {
  .familiar-row { grid-template-columns: 1fr; text-align: center; padding: 28px 22px; }
  .familiar-photo { max-width: 240px; margin: 0 auto; }
}

/* ============ Wide photo figure ============ */
.photo-wide { margin: 40px auto 0; max-width: 860px; }
.photo-wide img {
  width: 100%; display: block; border-radius: var(--r-outer);
  border: 1px solid var(--line);
}
.photo-wide figcaption {
  text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 12px;
}

/* ============ Trust row + chips upgrade (2026-08-10) ============ */
.trust-row { color: var(--muted); font-size: 0.88rem; margin-top: 14px; letter-spacing: 0.02em; }
.chips li {
  display: flex; align-items: center; gap: 10px;
  border-color: hsl(226 30% 24%);
}
.chips li::before {
  content: ""; flex: 0 0 auto; width: 10px; height: 10px; border-radius: 50%;
  background: var(--grad-flame);
  box-shadow: 0 0 10px hsl(27 96% 55% / 0.5);
}

/* ============ Held-back photo grid ============ */
.held-grid {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 52px; align-items: center; max-width: 900px;
}
.held-photo {
  width: 100%; border-radius: var(--r-outer); display: block;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px hsl(228 60% 3% / 0.6);
}
@media (max-width: 720px) {
  .held-grid { grid-template-columns: 1fr; gap: 32px; }
  .held-photo { max-width: 320px; margin: 0 auto; }
}

/* ============ Offer cover art + guarantee + samples (2026-08-10) ============ */
.offer-grid {
  display: grid; grid-template-columns: 280px 1fr; gap: 40px;
  align-items: center; text-align: left; margin-top: 8px;
}
.cover-art {
  width: 100%; border-radius: 10px; display: block;
  transform: rotate(-2.5deg);
  box-shadow: 14px 22px 48px hsl(228 60% 3% / 0.75), 0 0 0 1px hsl(226 30% 25%);
}
.offer-grid .price, .offer-grid .trust-row { text-align: left; }
@media (max-width: 720px) {
  .offer-grid { grid-template-columns: 1fr; text-align: center; }
  .cover-art { max-width: 240px; margin: 0 auto; }
  .offer-grid .price, .offer-grid .trust-row { text-align: center; }
}
.guarantee {
  display: flex; gap: 14px; align-items: flex-start; text-align: left;
  border: 1px solid hsl(45 60% 40% / 0.45); border-radius: var(--r-inner);
  background: hsl(45 80% 55% / 0.06);
  padding: 16px 18px; margin-top: 28px;
}
.guarantee svg { flex: 0 0 auto; width: 30px; height: 30px; color: var(--flame-2); margin-top: 2px; }
.guarantee p { font-size: 0.98rem; color: var(--text); }
.guarantee strong { color: var(--flame-2); }
.fq-footer { display: flex; align-items: center; gap: 14px; margin-top: 20px; color: var(--muted); font-weight: 600; }
.fq-photo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid hsl(226 30% 26%); }
.t-right { display: flex; align-items: center; gap: 12px; }
.sample-btn {
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  border: 1px solid hsl(27 90% 45% / 0.6); background: hsl(27 96% 55% / 0.12);
  color: var(--flame-2); font-size: 0.72rem; line-height: 1;
  transition: background 0.15s ease, transform 0.15s ease;
}
.sample-btn:hover { background: hsl(27 96% 55% / 0.28); transform: scale(1.08); }

/* ============ Questions dream-photo grid ============ */
.q-grid {
  display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 56px;
  align-items: center; max-width: 1000px;
}
.q-photo {
  border-radius: var(--r-outer); border: 1px solid var(--line);
  box-shadow: 0 24px 60px hsl(228 60% 3% / 0.6);
}
@media (max-width: 760px) {
  .q-grid { grid-template-columns: 1fr; gap: 36px; }
  .q-photo { max-width: 420px; margin: 0 auto; }
}

/* ============ Credibility strip ============ */
.cred-strip { background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 18px 0; }
.cred-strip-inner {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 36px; text-align: center;
}
.cred-strip span {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); position: relative;
}
.cred-strip span em { font-style: normal; color: var(--text); }
.cred-strip span + span::before {
  content: "·"; color: var(--flame); position: absolute; left: -22px;
}
@media (max-width: 720px) { .cred-strip span + span::before { content: none; } }

/* ============ Promise grid (Terry beside the promise) ============ */
.promise-grid {
  display: grid; grid-template-columns: 280px 1fr; gap: 44px;
  align-items: center; margin-top: 48px;
}
.promise-photo {
  border-radius: var(--r-outer); border: 1px solid var(--line);
  box-shadow: 0 24px 60px hsl(228 60% 3% / 0.6);
}
.promise-grid .truth { margin-top: 0 !important; }
.promise-grid p + p { margin-top: 1.1em; }
@media (max-width: 720px) {
  .promise-grid { grid-template-columns: 1fr; gap: 30px; }
  .promise-photo { max-width: 280px; margin: 0 auto; }
}

/* ============ As-seen-on logo strip ============ */
.cred-label {
  text-align: center; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px;
}
.cred-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 18px 40px; opacity: 0.85;
}
.cred-logos img { width: auto; filter: brightness(0) invert(1); }
.lg-wsj { height: 17px; } .lg-usat { height: 22px; } .lg-fox { height: 24px; }
.lg-abc { height: 38px; } .lg-nbc { height: 38px; } .lg-cbs { height: 30px; }
.lg-hulu { height: 20px; } .lg-prime { height: 26px; }
.cred-line {
  text-align: center; margin-top: 16px; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
}
.cred-line em { font-style: normal; color: var(--text); }
@media (max-width: 640px) { .cred-logos { gap: 14px 24px; } }

/* ============ Bolt photo cards ============ */
.bolt-grid li {
  position: relative; overflow: hidden; padding: 0;
  aspect-ratio: 3 / 4; background: var(--panel);
}
.bolt-photo {
  position: absolute; inset: 0; width: 100%; height: 100% !important;
  object-fit: cover; filter: saturate(0.72) brightness(0.82) contrast(1.05);
}
.bolt-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, hsl(228 45% 6% / 0.45) 0%, hsl(228 45% 6% / 0.05) 40%, hsl(228 45% 6% / 0.85) 100%);
}
.bolt-grid li .bolt-num {
  position: absolute; top: 14px; left: 16px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.08em;
  color: var(--flame-2);
  text-shadow: 0 1px 8px hsl(228 45% 6% / 0.9);
}
.bolt-grid li h3 {
  position: absolute; left: 16px; right: 16px; bottom: 14px; margin: 0;
  font-size: 1.02rem; line-height: 1.25; color: var(--text);
  text-shadow: 0 1px 10px hsl(228 45% 6% / 0.95);
}
