:root {
  --black: #060606;
  --dark: #111;
  --red: #d71920;
  --red2: #ff2a2a;
  --text: #1f2933;
  --muted: #6b7280;
  --line: #e5e7eb;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f6f7f9;
  line-height: 1.6;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 5vw;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand {
  color: #fff;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand::first-letter { color: var(--red2); }
nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 22px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
nav a:hover { color: var(--red2); }

.container { width: min(1120px, 90vw); margin: 0 auto; }
.narrow { width: min(840px, 90vw); }

.opening-warning {
  min-height: 92vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(215,25,32,.16), transparent 34%),
    linear-gradient(180deg, #030303, #090909 50%, #000);
  border-bottom: 10px solid var(--red);
  padding: 86px 0;
}
.opening-warning h1 {
  margin: 0;
  color: var(--red2);
  font-size: clamp(48px, 8.6vw, 128px);
  line-height: .95;
  letter-spacing: -.055em;
  text-transform: uppercase;
  font-weight: 1000;
}
.red-divider {
  width: 92px;
  height: 8px;
  background: var(--red2);
  margin: 34px auto 28px;
}
.opening-warning p {
  max-width: 940px;
  margin: 22px auto;
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 700;
}
.opening-warning strong {
  color: var(--red2);
  text-transform: uppercase;
}
.opening-warning .last-line {
  margin-top: 52px;
  color: var(--red2);
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: .03em;
}

.section, .quote-section { padding: 78px 0; }
.white { background: #fff; }
.grey { background: #f1f3f5; }

h2 {
  margin: 0 0 22px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.03em;
}
h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  margin-top: 14px;
  background: var(--red);
}
.eyebrow-light {
  margin: 0 0 8px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.intro-text {
  max-width: 920px;
  font-size: 22px;
}
.intro-text strong { color: var(--red); }

.quote-section { background: #fff; }
.email-shot {
  display: block;
  width: 100%;
  max-width: 980px;
  margin: 30px auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.quote-explain {
  font-size: 22px;
  font-weight: 800;
  max-width: 900px;
}
.amount-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.amount-box {
  padding: 22px;
  border-radius: 16px;
  background: #111;
  color: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.16);
}
.amount-box span {
  display: block;
  color: #bbb;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
}
.amount-box strong {
  display: block;
  margin-top: 8px;
  color: var(--red2);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1;
}
.amount-box.total {
  border: 2px solid var(--red);
}

.chat-box {
  margin: 26px 0;
  padding: 24px;
  border-left: 6px solid #111;
  background: #f8fafc;
  border-radius: 0 14px 14px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.chat-box p { margin: 8px 0; }
.highlight-chat { border-left-color: var(--red); }

.big-quote {
  margin: 32px 0;
  padding: 32px;
  color: #fff;
  background: #111;
  border-left: 8px solid var(--red);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.2;
  border-radius: 12px;
}

.center-text { text-align: center; color: var(--muted); }
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 30px;
}
figure {
  margin: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}
figure img {
  width: 100%;
  display: block;
  border-radius: 10px;
}
figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.closing-dark {
  color: #fff;
  background: #0a0a0a;
  border-top: 6px solid var(--red);
}
.closing-dark h2 { color: var(--red2); }
.closing-dark p { font-size: 22px; }

footer {
  padding: 26px 5vw;
  background: #000;
  color: #aaa;
  text-align: center;
  font-size: 13px;
}


.opening-warning .vantage-word {
  display: inline-block;
  color: #fff;
  text-shadow: 0 0 28px rgba(255,42,42,.45);
}

.faith-callout {
  margin: 34px 0;
  padding: 28px;
  background: #111;
  color: #fff;
  border-left: 8px solid var(--red);
  border-radius: 14px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
}
.faith-callout strong {
  color: var(--red2);
  text-transform: uppercase;
}

.full-deduction {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 18px;
}
.full-deduction div {
  padding: 22px;
  background: #0b0b0b;
  color: #fff;
  border-radius: 16px;
  border: 1px solid rgba(215,25,32,.35);
  text-align: center;
  box-shadow: 0 14px 40px rgba(0,0,0,.14);
}
.full-deduction .total {
  border: 2px solid var(--red);
}
.full-deduction span {
  display: block;
  font-size: 13px;
  color: #bbb;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
}
.full-deduction strong {
  display: block;
  margin-top: 8px;
  color: var(--red2);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}

@media (max-width: 850px) {
  .topbar { align-items: flex-start; gap: 10px; }
  nav { display: none; }
  .opening-warning { min-height: auto; padding: 64px 0; }
  .amount-row, .image-grid, .full-deduction { grid-template-columns: 1fr; }
  .section, .quote-section { padding: 52px 0; }
  .opening-warning p { font-size: 21px; }
}

.attention-callout {
  margin: 38px 0 8px;
  padding: 34px;
  background: linear-gradient(135deg, #0b0b0b, #1a0505);
  color: #fff;
  border-left: 9px solid var(--red);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}
.attention-callout h3 {
  margin: 0 0 16px;
  color: var(--red2);
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.03em;
}
.attention-callout p {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.28;
  font-weight: 800;
}
.attention-callout strong {
  color: var(--red2);
  text-transform: uppercase;
}
