:root {
  --bg: #111111;
  --surface: #1b1b1a;
  --surface-2: #0b0b0a;
  --paper: #ece0bf;
  --text: #f1f0ec;
  --muted: #bab7ad;
  --subtle: #88847b;
  --line: rgba(255, 255, 255, 0.13);
  --line-soft: rgba(255, 255, 255, 0.08);
  --red: #d93b2e;
  --blue: #275e91;
  --mustard: #d8a42d;
  --green: #9bd18d;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 330px),
    radial-gradient(circle at 15% 0%, rgba(217, 59, 46, 0.1), transparent 30%),
    #111111;
  pointer-events: none;
}

a {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

a:focus-visible,
.button:focus-visible {
  outline: 2px solid rgba(236, 224, 191, 0.8);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 17, 17, 0.76);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand {
  color: #eee8d8;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(236, 224, 191, 0.28);
  border-radius: 7px;
  background: #090909;
  color: var(--paper);
  font-size: 11px;
  font-weight: 800;
}

.site-header nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--text);
}

main {
  width: 100%;
}

main.checkout-shell,
main.access-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: auto;
  overflow: hidden;
  padding: 126px max(24px, calc((100vw - var(--max)) / 2)) 76px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 340px),
    #111111;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 72px 0 auto;
  height: 1px;
  background: var(--line-soft);
}

.hero::after {
  inset: auto 0 0;
  height: 220px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0), #111111 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(470px, 0.86fr) minmax(500px, 1fr);
  column-gap: clamp(34px, 6vw, 74px);
  row-gap: 30px;
  min-height: auto;
  align-items: center;
}

.hero-copy {
  display: grid;
  width: min(720px, 100%);
  gap: 22px;
}

.hero-copy h1 {
  max-width: 700px;
  font-size: clamp(54px, 5.35vw, 78px);
  line-height: 0.94;
}

.hero-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(8, 8, 7, 0.72);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
}

.visual-window,
.visual-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
}

.visual-window-main {
  aspect-ratio: 16 / 9;
}

.window-top {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line-soft);
  background: #111111;
}

.window-top span,
.window-top strong {
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
}

.window-top strong {
  color: #eee9dd;
}

.visual-window img,
.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.03);
}

.visual-window img {
  height: calc(100% - 36px);
}

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

.visual-card {
  margin: 0;
}

.visual-card img {
  aspect-ratio: 16 / 8.2;
  border-bottom: 1px solid var(--line-soft);
}

.visual-card figcaption {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
}

.visual-card figcaption strong {
  color: #eee9dd;
  font-size: 14px;
}

.visual-card figcaption span {
  color: var(--subtle);
  font-size: 12px;
  font-weight: 700;
}

.timeline-diagram {
  display: grid;
  gap: 7px;
  padding: 3px 2px 0;
}

.timeline-diagram span {
  display: block;
  width: var(--w);
  height: 9px;
  border-radius: 999px;
  background: var(--c);
  opacity: 0.72;
}

.eyebrow,
.section-heading span,
.pain-grid span,
.flow-list span,
.price-card span,
.offer-copy span {
  color: var(--subtle);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  color: #f5efe2;
  font-size: clamp(48px, 6.8vw, 92px);
  font-weight: 680;
  line-height: 0.92;
  text-wrap: balance;
}

h2 {
  max-width: 860px;
  color: #eee9dd;
  font-size: clamp(32px, 4.4vw, 58px);
  font-weight: 660;
  line-height: 1.02;
  text-wrap: balance;
}

h3 {
  color: #f1ecdf;
  font-size: 23px;
  font-weight: 680;
  line-height: 1.08;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.52;
}

.hero-copy p {
  max-width: 610px;
  color: #d4cec1;
  font-size: clamp(18px, 1.6vw, 22px);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

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

.button.primary {
  border-color: var(--paper);
  background: var(--paper);
  color: #121211;
}

.button.secondary {
  background: rgba(0, 0, 0, 0.32);
  color: #eee9dd;
}

.button.secondary:hover {
  border-color: rgba(236, 224, 191, 0.38);
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  border-color: var(--line);
  background: #151514;
  color: var(--subtle);
  pointer-events: none;
}

.hero-proof {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(640px, 100%);
  border: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.hero-proof div {
  display: grid;
  gap: 7px;
  min-height: 92px;
  align-content: center;
  padding: 16px 18px;
  background: rgba(13, 13, 12, 0.72);
  backdrop-filter: blur(10px);
}

.hero-proof strong {
  color: #f5efe2;
  font-size: 34px;
  font-weight: 680;
  line-height: 1;
}

.hero-proof span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.pain,
.proof,
.tested,
.battery,
.flow,
.included,
.limits,
.film,
.offer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
  border-top: 1px solid var(--line-soft);
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 810px;
}

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

.pain-grid article,
.film-grid article,
.included-grid article,
.flow-list div,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.pain-grid article,
.film-grid article,
.included-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 240px;
  padding: 26px;
}

.pain-grid article:nth-child(1) {
  border-top-color: rgba(216, 164, 45, 0.55);
}

.pain-grid article:nth-child(2) {
  border-top-color: rgba(217, 59, 46, 0.55);
}

.pain-grid article:nth-child(3) {
  border-top-color: rgba(39, 94, 145, 0.62);
}

.pain-grid p,
.film-grid p,
.included-grid p,
.flow-list p,
.price-card p {
  font-size: 15px;
}

.proof-heading {
  margin-bottom: 26px;
}

.proof-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
}

.proof-steps span {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 14px;
  background: #151514;
  color: #d8d0bf;
  font-size: 13px;
  font-weight: 650;
}

.proof-video {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.doc-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line-soft);
}

figcaption {
  display: grid;
  gap: 7px;
  padding: 16px;
}

figcaption strong {
  color: #f1ecdf;
  font-size: 18px;
}

figcaption span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.proof-note,
.included-note {
  max-width: 860px;
  margin-top: 18px;
  color: var(--subtle);
  font-size: 14px;
  line-height: 1.48;
}

.tested {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.tested .section-heading {
  margin-bottom: 0;
}

.tested-list {
  display: grid;
  border-top: 1px solid var(--line-soft);
}

.tested-list div {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}

.tested-list strong {
  color: #eee9dd;
  font-size: 16px;
  line-height: 1.2;
}

.tested-list span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.battery {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.battery-copy {
  display: grid;
  gap: 16px;
}

.battery-copy span {
  color: var(--subtle);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.battery-panel {
  display: grid;
  gap: 22px;
}

.battery-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
}

.battery-stats div {
  display: grid;
  gap: 8px;
  min-height: 112px;
  align-content: center;
  padding: 18px;
  background: #151514;
}

.battery-stats strong {
  color: #f5efe2;
  font-size: 40px;
  font-weight: 680;
  line-height: 1;
}

.battery-stats span,
.battery-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.battery-list {
  display: grid;
  border-top: 1px solid var(--line-soft);
}

.battery-list div {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
}

.battery-list strong {
  color: #eee9dd;
  font-size: 15px;
}

.flow-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line-soft);
}

.flow-list div {
  display: grid;
  grid-template-columns: 64px minmax(220px, 0.44fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 0;
  border-radius: 0;
}

.flow-list strong {
  color: #eee9dd;
  font-size: 22px;
  line-height: 1.12;
}

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

.included-grid article {
  min-height: 210px;
  padding: 24px;
  background: #151514;
}

.included-grid strong {
  color: #eee9dd;
  font-size: 18px;
  line-height: 1.12;
}

.included-grid article:nth-child(1) {
  border-top-color: rgba(217, 59, 46, 0.58);
}

.included-grid article:nth-child(2) {
  border-top-color: rgba(39, 94, 145, 0.62);
}

.included-grid article:nth-child(3) {
  border-top-color: rgba(155, 209, 141, 0.48);
}

.included-grid article:nth-child(4) {
  border-top-color: rgba(216, 164, 45, 0.62);
}

.limits {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.limits .section-heading {
  margin-bottom: 0;
}

.limits-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line-soft);
}

.limits-list p {
  padding: 20px 22px;
  background: #151514;
  color: #c8c3b7;
  font-size: 15px;
}

.limits-list strong {
  color: #eee9dd;
}

.limits-list a,
.checkout-card small a {
  color: #f1dfae;
}

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

.scope-grid article {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #151514;
}

.scope-grid article:first-child {
  border-top-color: rgba(155, 209, 141, 0.5);
}

.scope-grid article:last-child {
  border-top-color: rgba(216, 164, 45, 0.58);
}

.scope-grid span {
  color: var(--subtle);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.scope-grid li {
  position: relative;
  padding-left: 18px;
  color: #d3cec1;
  font-size: 15px;
  line-height: 1.45;
}

.scope-grid li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--paper);
  opacity: 0.64;
}

.film {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.film .section-heading {
  margin-bottom: 0;
}

.audio-proof {
  width: min(420px, 100%);
  margin-top: 4px;
  filter: invert(0.86) saturate(0.82);
}

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

.film-grid article {
  min-height: auto;
  padding: 22px;
}

.film-grid strong {
  color: #eee9dd;
  font-size: 18px;
}

.offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.4fr);
  gap: 34px;
  align-items: start;
  padding-bottom: 110px;
}

.offer-copy {
  display: grid;
  gap: 18px;
}

.offer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.offer-points span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #151514;
  color: #d8d0bf;
  font-size: 13px;
  font-weight: 650;
}

.price-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #080807;
}

.price-card strong {
  color: #f5efe2;
  font-size: 56px;
  font-weight: 680;
  line-height: 1;
}

.price-card small {
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.45;
}

.checkout-hero,
.access-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.46fr);
  gap: 42px;
  min-height: 100vh;
  align-items: center;
  padding: 120px 0 70px;
}

.legal-hero {
  min-height: 72vh;
}

.checkout-copy,
.access-hero > div:first-child {
  display: grid;
  gap: 20px;
}

.checkout-copy h1,
.access-hero h1 {
  font-size: clamp(44px, 5.4vw, 78px);
}

.checkout-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.checkout-trust span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #151514;
  color: #d8d0bf;
  font-size: 13px;
  font-weight: 650;
}

.checkout-card,
.access-card {
  display: grid;
  gap: 17px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080807;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.checkout-card-head,
.access-card {
  align-content: start;
}

.checkout-card-head {
  display: grid;
  gap: 9px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-soft);
}

.checkout-card-head span,
.access-card span {
  color: var(--subtle);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-card-head strong,
.access-card strong {
  color: #f5efe2;
  font-size: 48px;
  font-weight: 680;
  line-height: 1;
}

.checkout-card label {
  display: grid;
  gap: 8px;
  color: #d8d0bf;
  font-size: 13px;
  font-weight: 700;
}

.checkout-card input,
.checkout-card select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #151514;
  color: var(--text);
  font: inherit;
}

.checkout-card input:focus,
.checkout-card select:focus {
  outline: 2px solid rgba(236, 224, 191, 0.55);
  outline-offset: 2px;
}

.checkout-note {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(216, 164, 45, 0.34);
  border-radius: 7px;
  background: rgba(216, 164, 45, 0.08);
}

.checkout-note strong {
  color: #f1ecdf;
  font-size: 14px;
}

.checkout-note span,
.checkout-card small {
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.42;
}

.access-card p {
  font-size: 15px;
}

.post-flow {
  padding: 76px 0;
  border-top: 1px solid var(--line-soft);
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 18px;
  }

  .site-header nav {
    gap: 11px;
  }

  .hero {
    min-height: 88vh;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .hero-visual,
  .hero-proof {
    grid-column: auto;
    grid-row: auto;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(17, 17, 17, 0.93), rgba(17, 17, 17, 0.58)),
      linear-gradient(180deg, rgba(17, 17, 17, 0.06), #111111);
  }

  .pain,
  .proof,
  .tested,
  .battery,
  .flow,
  .included,
  .limits,
  .film,
  .offer,
  main.checkout-shell,
  main.access-shell {
    width: min(100% - 32px, 680px);
  }

  .pain,
  .proof,
  .tested,
  .battery,
  .flow,
  .included,
  .limits,
  .film,
  .offer {
    padding: 64px 0;
  }

  .pain-grid,
  .before-after,
  .doc-proof,
  .proof-steps,
  .included-grid,
  .scope-grid,
  .limits,
  .tested,
  .battery,
  .film,
  .offer,
  .checkout-hero,
  .access-hero {
    grid-template-columns: 1fr;
  }

  .checkout-hero,
  .access-hero {
    min-height: auto;
    padding: 112px 0 56px;
  }

  .flow-list div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tested-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .battery-stats,
  .battery-list div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
  }

  .site-header nav a:nth-child(2) {
    display: none;
  }

  .brand {
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 102px;
    padding-bottom: 54px;
  }

  .hero-copy {
    gap: 17px;
  }

  h1 {
    font-size: 42px;
    line-height: 0.96;
  }

  h2 {
    font-size: 32px;
  }

  p,
  .hero-copy p {
    font-size: 16px;
  }

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

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

  .visual-stack {
    grid-template-columns: 1fr;
  }

  .visual-card figcaption {
    min-height: 40px;
  }

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

  .price-card strong {
    font-size: 46px;
  }
}
