:root {
  color-scheme: dark;
  --ink: #f4ead8;
  --paper: #efe1c5;
  --muted: #b8aa93;
  --black: #090a08;
  --panel: #171814;
  --panel-2: #222016;
  --line: rgba(244, 234, 216, 0.18);
  --brass: #d8a73e;
  --red: #b63b2f;
  --olive: #48513a;
  --sky: #9fb2b4;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.activity-bar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 6px 16px;
  background: linear-gradient(90deg, rgba(38, 7, 6, 0.96), rgba(70, 14, 12, 0.94), rgba(38, 7, 6, 0.96));
  border-bottom: 1px solid rgba(182, 59, 47, 0.72);
  color: #f7ead7;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.activity-bar strong {
  color: #ffd54c;
}

.activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff4338;
  box-shadow: 0 0 14px rgba(255, 67, 56, 0.82);
  animation: pulse-dot 1.9s ease-in-out infinite;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 34px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(9, 10, 8, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.trust-row,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(216, 167, 62, 0.7);
  background: var(--brass);
  color: #111;
  font-weight: 900;
}

nav {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 9px 14px;
  background: var(--red);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 152px clamp(22px, 6vw, 80px) 70px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(9, 10, 8, 0.88), rgba(9, 10, 8, 0.56) 48%, rgba(9, 10, 8, 0.72)),
    url("https://upload.wikimedia.org/wikipedia/commons/7/7c/Republic_P-47N_Thunderbolt_in_flight.jpg") center 66% / cover;
  filter: sepia(0.28) saturate(0.8) contrast(1.16);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(9, 10, 8, 0), rgba(9, 10, 8, 0.9)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 5px);
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 10vw, 142px);
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 650px;
  color: #f2e9dc;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(9, 10, 8, 0.38);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
}

.trust-row span {
  padding: 7px 10px;
  background: rgba(9, 10, 8, 0.5);
  border: 1px solid var(--line);
}

.hero-card {
  justify-self: center;
  width: min(100%, 440px);
}

.image-card {
  padding: 9px;
  background: rgba(9, 10, 8, 0.54);
  border: 1px solid rgba(216, 167, 62, 0.42);
  box-shadow: var(--shadow);
}

.image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.section-inner {
  width: min(1140px, calc(100% - 44px));
  margin: 0 auto;
}

.band {
  background:
    linear-gradient(90deg, rgba(216, 167, 62, 0.08), transparent 42%),
    var(--panel);
  border-block: 1px solid var(--line);
}

.dark {
  background:
    linear-gradient(135deg, rgba(72, 81, 58, 0.55), transparent),
    #11130f;
}

.problem,
.inside,
.proof,
.offer,
.countdown,
.reader-stories,
.chapters,
.final-cta {
  padding: clamp(64px, 8vw, 112px) 0;
}

.urgent {
  background:
    radial-gradient(circle at 50% 0%, rgba(182, 59, 47, 0.34), transparent 48%),
    linear-gradient(180deg, #220706, #140f0c);
  border-color: rgba(182, 59, 47, 0.72);
}

.countdown-inner {
  text-align: center;
}

.danger {
  color: #ff5148;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.timer div {
  display: grid;
  min-width: 102px;
  gap: 4px;
  padding: 14px 16px 12px;
  background: rgba(9, 10, 8, 0.44);
  border: 1px solid rgba(182, 59, 47, 0.52);
}

.timer strong {
  color: #ffd952;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 217, 82, 0.42);
}

.timer span {
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.two-col p {
  color: var(--paper);
  font-size: 20px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.file-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.file-grid article {
  min-height: 230px;
  padding: 22px;
  background: #151610;
  border: 1px solid var(--line);
}

.file-grid span {
  display: block;
  margin-bottom: 40px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.file-grid p,
.proof-list span,
.price-box li {
  color: var(--muted);
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list div {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.proof-list strong {
  color: var(--ink);
}

.offer-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.offer-copy p {
  max-width: 650px;
  color: var(--paper);
  font-size: 19px;
}

.price-box {
  padding: 26px;
  background: var(--panel-2);
  border: 1px solid rgba(216, 167, 62, 0.38);
  box-shadow: var(--shadow);
}

.price-label {
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 4px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 1;
}

.price-box ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding-left: 20px;
}

.chapter-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-grid article {
  min-height: 280px;
  padding: 30px;
  background: #24150f;
  border: 1px solid rgba(216, 167, 62, 0.25);
  border-left: 4px solid #d19b5d;
}

.stars {
  margin-bottom: 18px;
  color: #ffcc36;
  font-size: 20px;
  letter-spacing: 0.08em;
}

.testimonial-grid p {
  color: #fff5e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
}

.testimonial-grid span {
  display: block;
  margin-top: 22px;
  color: #d7ad7b;
  font-size: 14px;
  font-weight: 900;
}

.chapter-columns ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chapter-columns li {
  padding: 16px 18px;
  background: rgba(9, 10, 8, 0.4);
  border-left: 4px solid var(--brass);
  color: var(--paper);
  font-weight: 800;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(rgba(9, 10, 8, 0.82), rgba(9, 10, 8, 0.86)),
    url("https://upload.wikimedia.org/wikipedia/commons/4/4e/P-38_Lightning_of_15th_Air_Force_in_flight.jpg") center / cover;
}

.final-cta h2 {
  margin-inline: auto;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(22px, 6vw, 80px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.purchase-toast {
  position: fixed;
  z-index: 40;
  left: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  width: min(320px, calc(100vw - 36px));
  padding: 16px 18px;
  background: rgba(36, 21, 15, 0.96);
  border: 1px solid rgba(216, 167, 62, 0.55);
  border-left: 4px solid #5fbc57;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.42);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.purchase-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  align-self: center;
  border-radius: 999px;
  background: #d7ad7b;
  color: #24150f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 900;
}

.purchase-toast strong {
  display: block;
  color: #fff3df;
  font-size: 14px;
}

.purchase-toast p {
  margin: 2px 0 2px;
  color: #f0d1a5;
  font-size: 13px;
  font-weight: 800;
}

.purchase-toast span {
  color: var(--muted);
  font-size: 12px;
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(0.84);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@media (max-width: 880px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero,
  .two-col,
  .offer-wrap,
  .chapter-columns,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 138px;
  }

  .hero-card {
    justify-self: start;
  }

  .file-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 36px;
    line-height: 1.05;
  }

  .hero {
    padding-inline: 18px;
  }

  .activity-bar {
    font-size: 12px;
  }

  .section-inner {
    width: calc(100% - 36px);
  }

  .file-grid,
  .timer {
    grid-template-columns: 1fr;
  }

  .timer {
    display: grid;
  }

  .proof-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  footer {
    flex-direction: column;
  }
}
