﻿:root {
  color-scheme: dark;
  --bg: #070706;
  --panel: #151311;
  --panel-strong: #211d19;
  --ink: #fff7ed;
  --muted: #c9baaa;
  --line: rgba(255, 247, 237, 0.2);
  --hard-line: #fff7ed;
  --red: #e32119;
  --red-dark: #8c100c;
  --gold: #f1c85b;
  --green: #36d47d;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(227, 33, 25, 0.2), transparent 24rem),
    radial-gradient(circle at 88% 10%, rgba(129, 216, 224, 0.13), transparent 24rem),
    linear-gradient(135deg, #050504 0%, #17120f 52%, #080807 100%);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 247, 237, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 237, 0.028) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
}

a {
  color: inherit;
}

.alert-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 42px;
  padding: 9px 14px;
  background: var(--red);
  color: white;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.alert-bar span {
  color: #ffe0dd;
}

.topbar,
main,
.footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  background: rgba(7, 7, 6, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: 142px;
  min-height: 44px;
  align-items: center;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a {
  min-width: 82px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  text-align: center;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  border-color: var(--red);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 100px);
  padding: 32px 0 44px;
}

.hero-copy {
  position: relative;
  min-width: 0;
}

.hero-copy::before {
  content: "FREE";
  position: absolute;
  right: -4%;
  top: -8%;
  z-index: -1;
  color: rgba(255, 247, 237, 0.055);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(9rem, 22vw, 19rem);
  font-weight: 900;
  line-height: 0.8;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Barlow Condensed", "Inter", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(4.8rem, 10vw, 9.5rem);
  line-height: 0.82;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.88;
  font-weight: 900;
}

h3 {
  margin: 0 0 9px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 0.95;
  font-weight: 900;
}

.hero-text,
.proof-copy p,
.final-cta p,
.steps-grid p,
.microcopy,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.value-row article,
.claim-card,
.steps-grid article,
.proof-list article,
.final-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 19, 17, 0.9);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.24);
}

.value-row article {
  padding: 16px;
}

.value-row span,
.timer-box span,
.proof-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-row strong,
.timer-box strong,
.proof-list strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.value-row article:first-child {
  border-color: rgba(54, 212, 125, 0.55);
  background: rgba(54, 212, 125, 0.1);
}

.value-row article:first-child strong {
  color: var(--green);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 22px;
  border: 2px solid var(--hard-line);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-3px, -3px);
  outline: none;
}

.button-primary {
  background: var(--red);
  color: white;
  box-shadow: 7px 7px 0 var(--red-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff3027;
  box-shadow: 10px 10px 0 var(--red-dark);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border-color: var(--line);
}

.wide {
  width: 100%;
}

.claim-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.claim-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}

.claim-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.claim-card-head p {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(54, 212, 125, 0.15);
}

.timer-box {
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(241, 200, 91, 0.44);
  border-radius: var(--radius);
  background: rgba(241, 200, 91, 0.09);
}

.timer-box strong {
  color: var(--gold);
}

.benefit-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding: 11px 12px 11px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  line-height: 1.35;
  font-weight: 700;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.microcopy {
  margin: 14px 0 0;
  font-size: 0.82rem;
  text-align: center;
}

.steps-section,
.proof-section,
.final-cta {
  margin-bottom: 34px;
}

.section-heading {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

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

.steps-grid article {
  position: relative;
  min-height: 220px;
  padding: 22px;
}

.steps-grid article > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border: 2px solid var(--hard-line);
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-weight: 900;
}

.steps-grid p {
  margin-bottom: 0;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 24px;
  align-items: start;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.proof-copy p {
  max-width: 690px;
  margin-bottom: 0;
}

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

.proof-list article {
  padding: 18px;
}

.proof-list strong {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(227, 33, 25, 0.2), transparent 50%),
    var(--panel-strong);
}

.final-cta h2 {
  margin-bottom: 10px;
}

.final-cta p {
  max-width: 720px;
  margin-bottom: 0;
}

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--hard-line);
  border-radius: var(--radius);
  background: var(--red);
  color: white;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.48);
}

.footer {
  padding: 12px 0 34px;
  border-top: 1px solid var(--line);
}

.footer p {
  max-width: 860px;
  margin: 0;
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .hero,
  .proof-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid article {
    min-height: auto;
  }

  .final-cta .button {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .alert-bar {
    display: grid;
    gap: 4px;
    padding-bottom: 10px;
  }

  .topbar,
  main,
  .footer {
    width: min(100% - 20px, 1160px);
  }

  .topbar {
    position: static;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .brand {
    width: 120px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-links a {
    min-width: 0;
    padding: 10px 6px;
  }

  .hero {
    padding: 24px 0 30px;
  }

  h1 {
    font-size: clamp(3.45rem, 19vw, 5.8rem);
  }

  h2 {
    font-size: clamp(2.2rem, 13vw, 3.8rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .value-row,
  .proof-list {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .claim-card,
  .steps-grid article,
  .final-cta {
    padding: 18px;
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.24);
  }

  .sticky-cta {
    display: flex;
  }

  .footer {
    padding-bottom: 86px;
  }
}

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

/* Mobile conversion repair */
@media (max-width: 680px) {
  body {
    background:
      radial-gradient(circle at 50% -10%, rgba(227, 33, 25, 0.22), transparent 18rem),
      linear-gradient(180deg, #080706 0%, #15110f 52%, #080807 100%);
  }

  body::before {
    background-size: 24px 24px;
    opacity: 0.55;
  }

  .alert-bar {
    min-height: 0;
    padding: 8px 10px;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .alert-bar strong {
    font-size: 0.72rem;
  }

  .topbar {
    padding: 10px 0 8px;
  }

  .brand {
    width: 104px;
    min-height: 30px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    gap: 14px;
    padding: 14px 0 20px;
  }

  .hero-copy::before {
    display: none;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.64rem;
    letter-spacing: 0.11em;
  }

  h1 {
    max-width: 360px;
    margin-bottom: 10px;
    font-size: clamp(2.75rem, 14vw, 3.7rem);
    line-height: 0.9;
  }

  h2 {
    margin-bottom: 12px;
    font-size: clamp(1.85rem, 9vw, 2.55rem);
    line-height: 0.94;
  }

  h3 {
    font-size: 1.45rem;
    line-height: 1;
  }

  .hero-text {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .value-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin: 16px 0;
  }

  .value-row article {
    min-height: 72px;
    padding: 10px 8px;
    box-shadow: none;
  }

  .value-row span,
  .timer-box span,
  .proof-list span {
    margin-bottom: 5px;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .value-row strong {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .button {
    min-height: 50px;
    padding: 12px 14px;
    font-size: 0.82rem;
    box-shadow: none;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }

  .button-primary,
  .button-primary:hover,
  .button-primary:focus-visible {
    box-shadow: 0 8px 20px rgba(227, 33, 25, 0.28);
  }

  .button-ghost {
    display: none;
  }

  .claim-card {
    padding: 15px;
    box-shadow: none;
    border-color: rgba(255, 247, 237, 0.28);
  }

  .claim-card::before {
    height: 5px;
  }

  .claim-card-head {
    margin-bottom: 10px;
  }

  .claim-card-head p {
    font-size: 0.64rem;
  }

  .live-dot {
    width: 9px;
    height: 9px;
    box-shadow: 0 0 0 5px rgba(54, 212, 125, 0.15);
  }

  .timer-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    margin: 12px 0;
    padding: 12px;
  }

  .timer-box span {
    margin: 0;
  }

  .timer-box strong {
    font-size: 1.75rem;
    text-align: right;
  }

  .benefit-list {
    gap: 7px;
    margin-bottom: 12px;
  }

  .benefit-list li {
    padding: 9px 10px 9px 28px;
    font-size: 0.82rem;
    line-height: 1.28;
  }

  .benefit-list li::before {
    left: 10px;
    width: 7px;
    height: 7px;
  }

  .microcopy {
    margin-top: 10px;
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .steps-section,
  .proof-section,
  .final-cta {
    margin-bottom: 22px;
  }

  .section-heading {
    padding-top: 18px;
  }

  .steps-grid {
    gap: 9px;
  }

  .steps-grid article {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 12px;
    align-items: start;
    padding: 13px;
    box-shadow: none;
  }

  .steps-grid article > span {
    width: 32px;
    height: 32px;
    margin: 0;
    font-size: 0.82rem;
  }

  .steps-grid h3,
  .steps-grid p {
    grid-column: 2;
  }

  .steps-grid p {
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .proof-section {
    gap: 14px;
    padding-top: 22px;
  }

  .proof-copy p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .proof-list article {
    padding: 12px;
    box-shadow: none;
  }

  .proof-list strong {
    font-size: 1.45rem;
    line-height: 0.95;
    overflow-wrap: anywhere;
  }

  .final-cta {
    gap: 14px;
    padding: 16px;
    box-shadow: none;
  }

  .final-cta p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .sticky-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 52px;
    font-size: 0.84rem;
  }
}

@media (max-width: 380px) {
  .topbar,
  main,
  .footer {
    width: min(100% - 16px, 1160px);
  }

  h1 {
    font-size: 2.55rem;
  }

  .value-row {
    grid-template-columns: 1fr;
  }

  .value-row article {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 50px;
  }

  .value-row span {
    margin: 0;
  }

  .proof-list {
    grid-template-columns: 1fr;
  }
}
