:root {
  color-scheme: dark;
  --black: #080807;
  --black-soft: #0d0d0c;
  --iron: #141412;
  --iron-raised: #1c1b18;
  --steel: #8e9599;
  --ivory: #f2e9d6;
  --ivory-muted: #bcb3a1;
  --ember: #d2913d;
  --ember-bright: #efae55;
  --crimson: #b13b2e;
  --crimson-dark: #671d18;
  --green: #9aaa62;
  --line: rgba(242, 233, 214, 0.14);
  --line-strong: rgba(242, 233, 214, 0.26);
  --display: Copperplate, "Copperplate Gothic Bold", "Iowan Old Style", Georgia, serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 4%, rgba(177, 59, 46, 0.11), transparent 30rem),
    var(--black);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, summary { font: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ivory);
  color: var(--black);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--ember-bright);
  outline-offset: 4px;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  width: var(--shell);
  min-height: 92px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { border-radius: 12px; }
.brand span {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand i { color: var(--ember); font-style: normal; }

.site-header nav {
  justify-self: center;
  display: flex;
  gap: 28px;
}
.site-header nav a,
.site-footer nav a {
  color: var(--ivory-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}
.site-header nav a:hover,
.site-footer nav a:hover { color: var(--ivory); }

.header-cta {
  border: 1px solid var(--line-strong);
  padding: 10px 16px;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  min-height: 770px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 5vw, 86px);
  padding-block: 72px 92px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--ember);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}
h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(54px, 6.2vw, 92px);
}
h1 em {
  color: var(--crimson);
  font-style: normal;
}
h2 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(38px, 4.7vw, 68px);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--ivory-muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.release-status {
  min-width: 218px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 16px;
  background: var(--ivory);
  color: var(--black);
  border-radius: 10px;
}
.release-status svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: currentColor;
}
.release-status span { display: grid; line-height: 1.2; }
.release-status small { font-size: 10px; font-weight: 600; letter-spacing: 0.06em; }
.release-status strong { font-size: 17px; }

.text-link {
  color: var(--ivory);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span { margin-left: 8px; color: var(--ember); }

.hero-facts {
  max-width: 690px;
  margin: 52px 0 0;
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  list-style: none;
}
.hero-facts li { display: grid; }
.hero-facts strong {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-facts span { color: var(--ivory-muted); font-size: 13px; }

.hero-art {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 6% 0 4% 14%;
  z-index: -3;
  background:
    linear-gradient(140deg, rgba(242, 233, 214, 0.08), transparent 48%),
    #10100f;
  border: 1px solid var(--line);
  clip-path: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
}
.red-standard {
  position: absolute;
  top: 3%;
  right: 4%;
  width: 42%;
  height: 75%;
  z-index: -2;
  opacity: 0.66;
  background:
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.22)),
    linear-gradient(180deg, #7d201b, #3c0f0c);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 50% 87%, 6% 100%);
}
.red-standard::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(242, 233, 214, 0.13);
}
.hero-boss {
  position: absolute;
  top: 9%;
  right: -5%;
  width: min(72%, 420px);
  z-index: -1;
  image-rendering: pixelated;
  filter: drop-shadow(0 24px 22px rgba(0, 0, 0, 0.7));
}

.phone {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #060605;
  border: 2px solid #595b5d;
  border-radius: 38px;
  box-shadow:
    0 0 0 5px #151515,
    0 24px 70px rgba(0, 0, 0, 0.58);
}
.phone img { width: 100%; height: auto; }
.phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 36%;
  height: 22px;
  border-radius: 999px;
  background: #020202;
  transform: translateX(-50%);
}
.phone-hero {
  position: absolute;
  left: 3%;
  bottom: 4%;
  width: min(58%, 280px);
  max-height: 580px;
}
.boss-label {
  position: absolute;
  right: 4%;
  bottom: 5%;
  margin: 0;
  padding: 13px 18px 13px 20px;
  background: rgba(8, 8, 7, 0.9);
  border-left: 3px solid var(--crimson);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}
.boss-label span {
  display: block;
  color: var(--ember);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.proof-strip {
  min-height: 84px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 52px);
  padding: 18px 24px;
  background: var(--crimson);
  color: #fff4e8;
}
.proof-strip p {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}
.proof-strip span { width: 4px; height: 4px; background: currentColor; transform: rotate(45deg); }

.how,
.screens,
.trust,
.faq { padding-block: 136px; }

.section-heading { max-width: 820px; margin-bottom: 64px; }
.section-heading > p:last-child {
  max-width: 650px;
  color: var(--ivory-muted);
  font-size: 19px;
}
.section-heading-center { margin-inline: auto; text-align: center; }
.section-heading-center .eyebrow { justify-content: center; }
.section-heading-center > p:last-child { margin-inline: auto; }

.campaign-steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  list-style: none;
}
.campaign-steps li {
  min-height: 290px;
  padding: 26px 28px 34px;
  border-right: 1px solid var(--line);
}
.campaign-steps li:first-child { border-left: 1px solid var(--line); }
.step-number {
  display: block;
  margin-bottom: 62px;
  color: var(--crimson);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
}
.campaign-steps h3,
.feature-list h3,
.trust-grid h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-transform: uppercase;
}
.campaign-steps p,
.feature-list p,
.trust-grid p { margin-bottom: 0; color: var(--ivory-muted); font-size: 15px; }

.receipt {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(103, 29, 24, 0.8), rgba(21, 18, 16, 0.96) 46%, #10100f),
    #151210;
  border-block: 1px solid rgba(210, 145, 61, 0.24);
}
.receipt::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: repeating-linear-gradient(115deg, transparent 0 18px, rgba(255,255,255,0.08) 19px, transparent 20px 38px);
  pointer-events: none;
}
.receipt-grid {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  padding-block: 110px;
}
.receipt-copy > p:not(.eyebrow) { max-width: 520px; color: var(--ivory-muted); font-size: 19px; }
.privacy-note {
  max-width: 510px;
  margin-top: 42px;
  padding: 18px 20px;
  display: grid;
  border-left: 3px solid var(--ember);
  background: rgba(0, 0, 0, 0.24);
}
.privacy-note strong { font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.privacy-note span { color: var(--ivory-muted); font-size: 14px; }

.battle-ledger {
  position: relative;
  padding: 30px;
  background: #0c0c0b;
  border: 1px solid rgba(210, 145, 61, 0.38);
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.2);
}
.battle-ledger::before,
.battle-ledger::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--ember);
}
.battle-ledger::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.battle-ledger::after { right: 10px; bottom: 10px; border-left: 0; border-top: 0; }
.ledger-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 10px;
  padding-bottom: 20px;
  color: var(--ivory-muted);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ledger-head strong { color: var(--ember); }
.ledger-line {
  display: grid;
  grid-template-columns: 5px 1fr;
  gap: 20px;
  padding: 27px 4px;
  border-bottom: 1px solid var(--line);
}
.ledger-mark { width: 5px; height: 100%; background: var(--green); }
.heal-line .ledger-mark { background: var(--crimson); }
.ledger-line p { margin: 0; font-family: var(--mono); font-size: clamp(16px, 2vw, 22px); line-height: 1.5; }
.damage-line strong { color: #c4d488; }
.heal-line strong { color: #e26455; }
.ledger-foot { margin: 22px 0 0; color: #8d8679; font-size: 13px; font-style: italic; }

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(22px, 4vw, 52px);
  padding-inline: clamp(0px, 5vw, 70px);
}
.screen-card { margin: 0; }
.screen-card-low { margin-top: 74px; }
.screen-card figcaption { display: grid; padding: 32px 10px 0; text-align: center; }
.screen-card figcaption strong {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.screen-card figcaption span { color: var(--ivory-muted); font-size: 13px; }

.depth {
  position: relative;
  overflow: hidden;
  background: #0d0d0c;
  border-block: 1px solid var(--line);
}
.depth-backdrop {
  position: absolute;
  inset: 0 50% 0 0;
  opacity: 0.7;
}
.depth-backdrop img { width: 100%; height: 100%; object-fit: cover; }
.depth-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.2), #0d0d0c 94%),
    linear-gradient(180deg, rgba(8, 8, 7, 0.3), rgba(8, 8, 7, 0.72));
}
.depth-grid {
  position: relative;
  min-height: 830px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  padding-block: 110px;
}
.depth-phone-wrap { display: flex; justify-content: center; }
.phone-soldier { width: min(78%, 340px); max-height: 650px; }
.depth-copy > p:not(.eyebrow) { color: var(--ivory-muted); font-size: 19px; }
.feature-list { margin-top: 46px; border-top: 1px solid var(--line-strong); }
.feature-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.feature-list article > span { color: var(--crimson); font-family: var(--mono); font-size: 12px; font-weight: 800; }

.trust { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(50px, 8vw, 110px); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.trust-grid article { padding-top: 24px; border-top: 2px solid var(--line-strong); }
.trust-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  display: grid;
  place-items: center;
  color: var(--ember);
  border: 1px solid rgba(210, 145, 61, 0.42);
  font-family: var(--mono);
  font-size: 20px;
}

.faq { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(50px, 8vw, 110px); border-top: 1px solid var(--line); }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--ivory);
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--ember); font-family: var(--mono); font-size: 22px; transition: transform 160ms ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 640px; padding: 0 42px 22px 0; color: var(--ivory-muted); }

.final-cta {
  position: relative;
  min-height: 670px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 108%, rgba(210, 145, 61, 0.26), transparent 28rem),
    linear-gradient(140deg, #1a0b09, #080807 48%, #0d0d0c);
  border-block: 1px solid rgba(177, 59, 46, 0.48);
}
.final-cta-mark {
  position: absolute;
  inset: 12% auto auto 50%;
  width: 520px;
  aspect-ratio: 1;
  border: 1px solid rgba(177, 59, 46, 0.18);
  transform: translateX(-50%) rotate(45deg);
}
.final-cta-inner { position: relative; display: grid; justify-items: center; text-align: center; }
.final-cta-inner > img { margin-bottom: 28px; border-radius: 28px; box-shadow: 0 22px 60px rgba(0,0,0,.45); }
.final-cta-inner .eyebrow { justify-content: center; }
.final-cta-inner h2 { max-width: 900px; }
.final-cta-inner > p:not(.eyebrow) { color: var(--ivory-muted); font-size: 18px; }
.release-status-large { margin-top: 18px; }

.site-footer {
  min-height: 210px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 18px 34px;
  padding-block: 42px 32px;
}
.brand-footer img { border-radius: 10px; }
.site-footer > p { margin: 0; color: var(--ivory-muted); font-size: 14px; }
.site-footer nav { display: flex; gap: 22px; }
.site-footer small { grid-column: 1 / -1; color: #706c63; border-top: 1px solid var(--line); padding-top: 20px; font-size: 11px; }

@media (max-width: 1040px) {
  .site-header nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr 0.9fr; }
  .hero-art { min-height: 570px; }
  .hero-boss { right: -12%; }
  .campaign-steps { grid-template-columns: repeat(2, 1fr); }
  .campaign-steps li:nth-child(3) { border-left: 1px solid var(--line); }
  .campaign-steps li { border-bottom: 1px solid var(--line); }
  .trust, .faq { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 32px, 620px); }
  .site-header { min-height: 76px; gap: 16px; }
  .brand span { font-size: 14px; }
  .brand img { width: 42px; height: 42px; }
  .header-cta { padding: 9px 10px; font-size: 9px; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 38px; padding-block: 62px 72px; }
  h1 { font-size: clamp(48px, 15vw, 70px); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-facts { grid-template-columns: 1fr; gap: 14px; }
  .hero-facts li { grid-template-columns: 130px 1fr; }
  .hero-art { min-height: 600px; }
  .hero-art::before { inset: 5% 0 3% 4%; }
  .hero-boss { top: 4%; right: -2%; width: min(74%, 380px); }
  .phone-hero { left: 3%; width: min(54%, 260px); }
  .boss-label { right: 2%; bottom: 4%; max-width: 54%; font-size: 12px; }
  .proof-strip { gap: 12px; flex-wrap: wrap; padding-block: 20px; }
  .proof-strip span { display: none; }
  .proof-strip p { width: calc(50% - 8px); }
  .how, .screens, .trust, .faq { padding-block: 92px; }
  .section-heading { margin-bottom: 46px; }
  .campaign-steps { grid-template-columns: 1fr; }
  .campaign-steps li,
  .campaign-steps li:nth-child(3) { min-height: auto; display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 26px 0; border-inline: 0; }
  .step-number { margin: 2px 0 0; }
  .receipt-grid { grid-template-columns: 1fr; gap: 48px; padding-block: 82px; }
  .battle-ledger { padding: 22px; }
  .ledger-head { flex-direction: column; gap: 4px; }
  .screen-gallery {
    width: calc(100% + 16px);
    margin-inline: -8px;
    padding: 0 8px 24px;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .screen-gallery::-webkit-scrollbar { display: none; }
  .screen-card { flex: 0 0 76%; scroll-snap-align: center; }
  .screen-card-low { margin-top: 0; }
  .screen-card figcaption { padding-top: 22px; }
  .screen-card figcaption span { display: none; }
  .depth-backdrop { inset: 0; opacity: 0.24; }
  .depth-grid { grid-template-columns: 1fr; min-height: auto; gap: 62px; padding-block: 86px; }
  .depth-phone-wrap { order: 2; }
  .phone-soldier { width: min(70%, 310px); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { display: grid; grid-template-columns: 50px 1fr; column-gap: 18px; }
  .trust-icon { grid-row: span 2; margin-bottom: 0; }
  .trust-grid h3 { margin-top: 2px; }
  .final-cta { min-height: 620px; }
  .final-cta-mark { width: 340px; }
  .site-footer { grid-template-columns: 1fr; grid-template-rows: auto; text-align: center; justify-items: center; }
  .site-footer small { grid-column: auto; }
}

@media (max-width: 420px) {
  h1 { font-size: 46px; }
  h2 { font-size: 38px; }
  .hero-art { min-height: 520px; }
  .hero-boss { right: -8%; }
  .phone-hero { width: 56%; max-height: 470px; }
  .phone { border-radius: 28px; }
  .phone-speaker { top: 10px; height: 16px; }
  .boss-label { display: none; }
  .ledger-line p { font-size: 15px; }
  .screen-card { flex-basis: 80%; }
}

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