: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(48px, 4.85vw, 70px);
  line-height: 0.96;
}

.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: clamp(30px, 3vw, 42px);
  font-weight: 680;
  line-height: 1;
}

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

.pain,
.workflow,
.proof,
.tested,
.compatibility,
.battery,
.flow,
.included,
.limits,
.buyer-confidence,
.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,
.workflow-grid,
.film-grid,
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pain-grid article,
.workflow-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,
.workflow-grid article,
.film-grid article,
.included-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 240px;
  padding: 26px;
}

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

.workflow-grid article {
  min-height: 250px;
  background: #151514;
}

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

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

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

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

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

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

.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 {
  overflow: hidden;
  width: 100%;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.proof-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050505;
}

.proof-video-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-top: 1px solid var(--line-soft);
  background: #111111;
}

.proof-video-copy strong {
  color: #f1ecdf;
  font-size: 16px;
  line-height: 1.2;
}

.proof-video-copy span {
  max-width: 560px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

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

.script-panel,
.script-stage {
  background: #111110;
}

.script-panel {
  display: grid;
  gap: 13px;
  align-content: center;
  padding: 28px;
}

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

.script-panel strong {
  color: #f1ecdf;
  font-size: 22px;
  font-weight: 680;
  line-height: 1.08;
}

.script-panel p {
  color: #c9c3b6;
  font-size: 15px;
  line-height: 1.48;
}

.script-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 22px;
}

.script-frame {
  position: relative;
  min-height: 260px;
  border-color: rgba(236, 224, 191, 0.16);
  background: #050505;
}

.script-frame img {
  height: 100%;
  min-height: 260px;
  border-bottom: 0;
  filter: saturate(0.9) contrast(1.04);
}

.script-frame figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 9px;
  border: 1px solid rgba(236, 224, 191, 0.18);
  border-radius: 999px;
  background: rgba(8, 8, 7, 0.76);
  color: #eee9dd;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.script-arrow {
  position: relative;
  min-height: 260px;
}

.script-arrow::before,
.script-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.script-arrow::before {
  width: 34px;
  height: 1px;
  background: rgba(236, 224, 191, 0.55);
}

.script-arrow::after {
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(236, 224, 191, 0.55);
  border-right: 1px solid rgba(236, 224, 191, 0.55);
  transform: translate(-10%, -50%) rotate(45deg);
}

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

.premium-demo-copy,
.premium-demo-reel,
.premium-demo-steps {
  background: #111110;
}

.premium-demo-copy {
  display: grid;
  gap: 15px;
  align-content: center;
  padding: 30px;
}

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

.premium-demo-copy h3 {
  max-width: 420px;
  font-size: 31px;
  line-height: 1.03;
}

.premium-demo-copy p {
  max-width: 430px;
  color: #c9c3b6;
  font-size: 15px;
}

.premium-demo-reel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #050505;
}

.premium-demo-reel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: premiumDemoFrame 18s infinite;
  animation-delay: calc(var(--frame) * 3s);
}

.premium-demo-reel img:first-child {
  opacity: 1;
}

.premium-demo-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line-soft);
}

.premium-demo-steps li {
  min-height: 54px;
  padding: 15px 14px;
  background: #151514;
  color: #d8d0bf;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

@keyframes premiumDemoFrame {
  0% {
    opacity: 0;
  }

  4%,
  16% {
    opacity: 1;
  }

  20%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-demo-reel img {
    animation: none;
  }

  .premium-demo-reel img:first-child {
    opacity: 1;
  }
}

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

.proof-run div {
  display: grid;
  gap: 8px;
  min-height: 112px;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.proof-run strong {
  color: #f1ecdf;
  font-size: 15px;
}

.proof-run span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.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;
}

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

.compat-grid div {
  display: grid;
  gap: 11px;
  min-height: 164px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #151514;
}

.compat-grid div:nth-child(1) {
  border-top-color: rgba(155, 209, 141, 0.5);
}

.compat-grid div:nth-child(2) {
  border-top-color: rgba(236, 224, 191, 0.46);
}

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

.compat-grid div:nth-child(4) {
  border-top-color: rgba(216, 164, 45, 0.58);
}

.compat-grid strong,
.receive-list strong {
  color: #eee9dd;
  font-size: 17px;
  line-height: 1.14;
}

.compat-grid span,
.receive-list span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.42;
  text-transform: none;
}

.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(5, minmax(0, 1fr));
}

.included-grid.compact-grid {
  margin-bottom: 18px;
}

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

.included-grid.compact-grid article {
  min-height: 178px;
}

.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);
}

.included-grid article:nth-child(5) {
  border-top-color: rgba(236, 224, 191, 0.46);
}

.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;
}

.install-note {
  margin-top: 18px;
}

.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;
}

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

.format-matrix article {
  display: grid;
  gap: 10px;
  min-height: 184px;
  align-content: start;
  padding: 22px;
  background: #151514;
}

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

.format-matrix strong {
  color: #eee9dd;
  font-size: 26px;
  font-weight: 680;
  line-height: 1;
}

.format-matrix p {
  font-size: 14px;
}

.buyer-fit {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
  border-top: 1px solid var(--line-soft);
}

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

.fit-grid article {
  display: grid;
  gap: 18px;
  min-height: 260px;
  align-content: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #151514;
}

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

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

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

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

.fit-grid li {
  position: relative;
  padding-left: 18px;
  color: #d3cec1;
  font-size: 16px;
  line-height: 1.48;
}

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

.buyer-confidence {
  display: grid;
  gap: 18px;
}

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

.handoff-flow article {
  display: grid;
  gap: 12px;
  min-height: 230px;
  align-content: start;
  padding: 24px;
  background: #151514;
}

.handoff-flow article:nth-child(1) {
  border-top: 1px solid rgba(216, 164, 45, 0.62);
}

.handoff-flow article:nth-child(2) {
  border-top: 1px solid rgba(39, 94, 145, 0.62);
}

.handoff-flow article:nth-child(3) {
  border-top: 1px solid rgba(155, 209, 141, 0.5);
}

.handoff-flow article:nth-child(4) {
  border-top: 1px solid rgba(236, 224, 191, 0.42);
}

.handoff-flow span,
.confidence-faq span {
  color: var(--subtle);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.handoff-flow strong,
.confidence-faq strong {
  color: #eee9dd;
  font-size: 18px;
  line-height: 1.14;
}

.handoff-flow p,
.confidence-faq p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

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

.confidence-faq article {
  display: grid;
  gap: 9px;
  min-height: 138px;
  align-content: start;
  padding: 22px 24px;
  background: #111110;
}

.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;
}

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

.receive-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 17px 18px;
  background: #151514;
}

.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-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
}

.checkout-path div {
  display: grid;
  gap: 7px;
  min-height: 116px;
  align-content: start;
  padding: 18px;
  background: #151514;
}

.checkout-path span {
  color: var(--subtle);
  font-size: 11px;
  font-weight: 800;
}

.checkout-path strong {
  color: #f1ecdf;
  font-size: 18px;
  line-height: 1.05;
}

.checkout-path small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.checkout-path.wide div {
  min-height: 126px;
}

.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-fields {
  display: grid;
  gap: 17px;
}

.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;
}

.checkout-includes {
  padding: 13px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  background: #151514;
}

.checkout-includes span {
  color: #c8c3b7;
  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);
}

.quickstart-flow {
  padding-top: 0;
}

@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,
  .workflow,
  .proof,
  .tested,
  .compatibility,
  .battery,
  .flow,
  .included,
  .limits,
  .buyer-fit,
  .buyer-confidence,
  .film,
  .offer,
  main.checkout-shell,
  main.access-shell {
    width: min(100% - 32px, 680px);
  }

  .pain,
  .workflow,
  .proof,
  .tested,
  .compatibility,
  .battery,
  .flow,
  .included,
  .limits,
  .buyer-fit,
  .buyer-confidence,
  .film,
  .offer {
    padding: 64px 0;
  }

  .pain-grid,
  .workflow-grid,
  .proof-run,
  .before-after,
  .doc-proof,
  .proof-steps,
  .demo-script,
  .premium-demo,
  .premium-demo-steps,
  .included-grid,
  .compat-grid,
  .scope-grid,
  .fit-grid,
  .handoff-flow,
  .confidence-faq,
  .format-matrix,
  .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;
  }

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

  .proof-video-copy {
    display: grid;
    gap: 8px;
  }

  .script-stage {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .premium-demo-reel {
    min-height: 360px;
  }

  .script-arrow {
    min-height: 34px;
  }

  .script-arrow::before {
    width: 1px;
    height: 24px;
  }

  .script-arrow::after {
    transform: translate(-50%, -10%) rotate(135deg);
  }

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

  .checkout-path {
    grid-template-columns: repeat(2, minmax(0, 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;
  }

  .hero-copy h1 {
    font-size: 42px;
    line-height: 0.98;
  }

  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;
  }

  .premium-demo-copy {
    padding: 22px;
  }

  .premium-demo-copy h3 {
    font-size: 25px;
  }

  .premium-demo-reel {
    min-height: 250px;
  }

  .checkout-path {
    grid-template-columns: 1fr;
  }

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

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

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

  .access-card strong {
    font-size: 38px;
  }
}
