@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-weight: 400 950;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("../fonts/space-mono-700-latin.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

body.ups-psee-page {
  --ink: #070b18;
  --ink-2: #101521;
  --paper: #f7f8fb;
  --white: #ffffff;
  --gold: #f4bd44;
  --red: #dd463d;
  --blue: #2f63e8;
  --green: #22c55e;
  --line: rgba(7, 11, 24, .15);
  --muted: #626a78;
  --shadow: 10px 10px 0 var(--ink);
  --wrap: min(1580px, calc(100vw - 36px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body.ups-psee-page {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.mono {
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.signal {
  position: relative;
  z-index: 20;
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
  background: var(--red);
  color: #fff;
  white-space: nowrap;
}

.signal-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 9px 0;
  font-size: 9px;
  animation: ticker 34s linear infinite;
}

.signal-track span:nth-child(2n) {
  color: var(--gold);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: var(--wrap);
  margin: 20px auto 0;
  border: 5px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
}

.nav-grid {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) repeat(4, minmax(96px, .34fr)) minmax(150px, .42fr);
  align-items: stretch;
  min-height: 70px;
}

.brand {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px 22px;
  border-right: 5px solid var(--ink);
  background:
    linear-gradient(rgba(7, 11, 24, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 11, 24, .05) 1px, transparent 1px),
    #fff;
  background-size: 24px 24px;
}

.brand strong {
  font-size: clamp(1.65rem, 2.5vw, 3.15rem);
  line-height: .8;
  font-weight: 950;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.brand span {
  color: var(--blue);
  font-size: 9px;
}

.nav-link {
  display: grid;
  place-items: center;
  gap: 5px;
  min-width: 0;
  border-right: 3px solid var(--ink);
  color: var(--ink);
  font-size: 8px;
  transition: background .16s ease, color .16s ease;
}

.nav-link::before {
  content: attr(data-no);
  color: var(--blue);
  font-size: 7px;
}

.nav-link:hover {
  background: var(--ink);
  color: var(--gold);
}

.nav-cta {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  background: var(--gold);
  color: var(--ink);
  font-size: 9px;
  box-shadow: inset 7px 0 0 rgba(7, 11, 24, .12);
}

.nav-cta small {
  color: rgba(7, 11, 24, .68);
  font-size: 7px;
}

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

.section {
  margin-top: clamp(56px, 7vw, 104px);
  scroll-margin-top: 190px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, .72fr) minmax(560px, 1.08fr);
  gap: clamp(26px, 3.2vw, 64px);
  align-items: stretch;
  min-height: clamp(820px, 82vh, 940px);
  margin-top: 44px;
  overflow: hidden;
  border: 8px solid var(--ink);
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(118deg, transparent 0 54%, rgba(244, 189, 68, .1) 54% 66%, rgba(221, 70, 61, .16) 66% 67%, transparent 67%),
    radial-gradient(circle at 72% 28%, rgba(244, 189, 68, .28), transparent 28%),
    radial-gradient(circle at 94% 62%, rgba(47, 99, 232, .18), transparent 22%),
    var(--ink);
  background-size: 44px 44px, 44px 44px, auto, auto, auto, auto;
  box-shadow: 16px 16px 0 var(--gold), 24px 24px 0 var(--red);
  color: #fff;
  isolation: isolate;
}

.hero::before {
  content: "PREMIUM ACCESS 500";
  position: absolute;
  left: clamp(24px, 4vw, 68px);
  right: auto;
  bottom: -34px;
  color: rgba(255,255,255,.045);
  font-size: clamp(6.5rem, 13vw, 16.5rem);
  line-height: .75;
  font-weight: 950;
  letter-spacing: -.08em;
  white-space: nowrap;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: clamp(18px, 1.8vw, 28px);
  background: var(--red);
  border-left: 8px solid var(--gold);
  box-shadow: -14px 0 0 rgba(244, 189, 68, .24);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  padding: clamp(34px, 5vw, 82px) 0 clamp(34px, 5vw, 82px) clamp(34px, 5vw, 78px);
  min-width: 0;
}

.badge {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 38px;
  align-items: center;
  border: 4px solid var(--ink);
  background: var(--red);
  color: #fff;
  box-shadow: 6px 6px 0 var(--gold);
  padding: 7px 13px;
  font-size: 9px;
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 800px;
  margin: 30px 0 22px;
  font-size: clamp(4.6rem, 6.65vw, 9.35rem);
  line-height: .78;
  letter-spacing: -.075em;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--gold);
}

.lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 1.38vw, 1.55rem);
  line-height: 1.48;
  font-weight: 760;
}

.mobile-offer-chip {
  display: none;
}

.hero-protocol {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  max-width: 680px;
  margin-top: 30px;
  border: 4px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.055);
  box-shadow: 8px 8px 0 rgba(255,255,255,.1);
}

.hero-protocol-label {
  display: grid;
  place-items: center;
  border-right: 4px solid rgba(255,255,255,.32);
  background: var(--gold);
  color: var(--ink);
  padding: 14px;
  font-size: 8px;
  text-align: center;
}

.hero-protocol-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 0;
}

.hero-protocol-item {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 96px;
  padding: 14px 16px;
  color: #fff;
  overflow: hidden;
}

.hero-protocol-item + .hero-protocol-item {
  border-left: 3px solid rgba(255,255,255,.22);
}

.hero-protocol-item::after {
  content: attr(data-index);
  position: absolute;
  right: 6px;
  bottom: -22px;
  color: rgba(255,255,255,.06);
  font-size: 4.8rem;
  line-height: 1;
  letter-spacing: -.08em;
  font-weight: 950;
}

.hero-protocol-item small {
  display: block;
  color: var(--blue);
  font-size: 8px;
}

.hero-protocol-item strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 9px;
  font-size: clamp(1rem, 1.25vw, 1.45rem);
  line-height: .95;
  letter-spacing: -.04em;
  text-transform: uppercase;
  font-weight: 950;
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(330px, 520px) minmax(180px, 240px);
  align-items: stretch;
  gap: 18px;
  max-width: 790px;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  border: 5px solid var(--ink);
  padding: 0 26px;
  box-shadow: 8px 8px 0 var(--ink);
  font-size: 11px;
  transition: transform .16s ease, box-shadow .16s ease;
}

.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0 var(--ink);
}

.btn.gold {
  min-width: min(100%, 330px);
  background: var(--gold);
  color: var(--ink);
}

.btn.white {
  background: #fff;
  color: var(--ink);
}

.btn.dark {
  background: var(--ink);
  color: #fff;
  border-color: #fff;
  box-shadow: 8px 8px 0 var(--gold);
}

.hero-primary-order {
  width: 100%;
  min-width: 0;
  min-height: 88px;
  border-width: 6px;
  padding: 0 72px 0 28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.3) 0 8%, transparent 8% 100%),
    var(--gold);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--red), 14px 14px 0 rgba(255,255,255,.16);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.14vw, 1.45rem);
  font-weight: 950;
  letter-spacing: .025em;
  line-height: 1.02;
  text-align: center;
  text-transform: uppercase;
}

.hero-primary-order::after {
  content: ">";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-52%);
  font-size: clamp(2.1rem, 2.25vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-secondary-link {
  min-height: 76px;
  padding-inline: 18px;
  box-shadow: 6px 6px 0 var(--ink);
  font-size: 9px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: rgba(255,255,255,.62);
  font-size: 9px;
}

.trust-row span {
  border: 2px solid rgba(255,255,255,.22);
  padding: 8px 10px;
  background: rgba(255,255,255,.045);
}

.hero-product {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(32px, 4vw, 64px) clamp(46px, 5.2vw, 92px) clamp(34px, 4.8vw, 74px) 0;
  min-width: 0;
}

.hero-product::before {
  content: "Premium Access 500";
  position: absolute;
  top: clamp(34px, 4.6vw, 74px);
  right: clamp(58px, 7.2vw, 128px);
  z-index: 6;
  border: 3px solid var(--ink);
  background: var(--red);
  color: #fff;
  box-shadow: 5px 5px 0 var(--gold);
  padding: 8px 12px;
  font-family: "Space Mono", monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: rotate(1.6deg);
}

.product-panel {
  position: relative;
  display: grid;
  gap: 14px;
  align-self: center;
  justify-self: center;
  width: min(100%, 640px);
  min-width: 0;
  padding-top: 28px;
  isolation: isolate;
}

.product-panel::before {
  content: "";
  position: absolute;
  inset: 6px 26px 176px 52px;
  z-index: 0;
  border: 4px solid rgba(255,255,255,.2);
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    rgba(255,255,255,.04);
  background-size: 28px 28px;
  box-shadow: -10px -10px 0 rgba(221,70,61,.9), 12px 12px 0 rgba(244,189,68,.9);
  transform: rotate(-1.4deg);
}

.product-panel::after {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 102px;
  z-index: 1;
  height: 46px;
  border: 4px solid rgba(255,255,255,.16);
  background: rgba(7,11,24,.72);
  box-shadow: 9px 9px 0 rgba(255,255,255,.08);
  transform: skewX(-9deg);
}

.product-frame {
  position: relative;
  z-index: 3;
  justify-self: center;
  width: clamp(490px, 34vw, 610px);
  border: 9px solid #fff;
  background: #fff;
  box-shadow: -9px -9px 0 var(--red), 14px 14px 0 var(--gold), 23px 23px 0 rgba(255,255,255,.13), 0 32px 68px rgba(0,0,0,.38);
  transform: rotate(-.35deg);
}

.product-frame img {
  width: 100%;
  aspect-ratio: 1070 / 1470;
  object-fit: cover;
  object-position: center;
}

.product-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(7,11,24,.18);
  pointer-events: none;
}

.price-stamp {
  display: none;
}

.price-stamp small {
  display: block;
  color: var(--red);
  font-size: 9px;
}

.price-stamp b {
  display: block;
  margin-top: 4px;
  font-size: clamp(3rem, 4.6vw, 5.6rem);
  line-height: .86;
  letter-spacing: -.065em;
  font-weight: 950;
}

.stat-rack {
  position: relative;
  z-index: 3;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 560px);
  justify-self: center;
}

.stat-rack div {
  min-height: 70px;
  border: 3px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.045);
  padding: 10px;
  color: #fff;
}

.stat-rack b {
  display: block;
  color: var(--gold);
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  line-height: .92;
  letter-spacing: -.04em;
  font-weight: 950;
}

.stat-rack span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.72);
  font-size: 9px;
}

.product-buy-panel {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 10px;
  justify-self: center;
  width: min(100%, 590px);
}

.product-command {
  width: 100%;
  min-height: 88px;
  border-color: var(--ink);
  border-width: 6px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.28) 0 9%, transparent 9% 100%),
    var(--gold);
  box-shadow: 7px 7px 0 var(--red), 12px 12px 0 rgba(255,255,255,.14);
  padding: 0 76px 0 26px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.08rem, 1.16vw, 1.48rem);
  font-weight: 950;
  letter-spacing: .025em;
  line-height: 1.02;
  text-align: center;
  text-transform: uppercase;
}

.product-command::after {
  content: ">";
  position: absolute;
  right: 22px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: 0;
}

.product-price-deck {
  display: grid;
  grid-template-columns: minmax(146px, .58fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  border: 4px solid #fff;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    rgba(255,255,255,.065);
  background-size: 28px 28px;
  box-shadow: 6px 6px 0 rgba(255,255,255,.13);
  padding: 8px;
}

.product-buy-price {
  display: grid;
  align-content: center;
  min-height: 72px;
  border: 3px solid var(--ink);
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
}

.product-buy-price small {
  display: block;
  color: var(--red);
  font-size: 7px;
}

.product-buy-price b {
  display: block;
  margin-top: 3px;
  font-size: clamp(2.15rem, 2.45vw, 3.05rem);
  line-height: .82;
  letter-spacing: -.065em;
  font-weight: 950;
}

.product-buy-note {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  color: rgba(255,255,255,.78);
  font-size: 7px;
}

.product-buy-note span {
  display: grid;
  align-content: center;
  min-height: 72px;
  border: 0;
  border-left: 2px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.035);
  padding: 8px 12px;
}

.product-buy-note span:first-child {
  border-left-width: 2px;
}

.fold-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(38px, 4.6vw, 70px);
  border: 5px solid var(--ink);
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
  padding: 0;
}

.fold-proof div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  border: 0;
  border-right: 3px solid var(--ink);
  background:
    linear-gradient(rgba(7, 11, 24, .045) 1px, transparent 1px),
    #fff;
  background-size: 100% 28px;
  box-shadow: none;
  padding: 10px 14px;
  font-size: 8px;
}

.fold-proof div:last-child {
  border-right: 0;
}

.fold-proof i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: var(--gold);
  border: 2px solid var(--ink);
  font-style: normal;
}

.product-proof {
  position: relative;
  margin-top: clamp(54px, 6vw, 96px);
  overflow: hidden;
  border: 7px solid var(--ink);
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    radial-gradient(circle at 88% 14%, rgba(47, 99, 232, .2), transparent 24%),
    linear-gradient(125deg, transparent 0 48%, rgba(244,189,68,.08) 48% 62%, rgba(221,70,61,.16) 62% 63%, transparent 63%),
    var(--ink);
  background-size: 38px 38px, 38px 38px, auto, auto, auto;
  box-shadow: 12px 12px 0 var(--gold), 20px 20px 0 var(--red);
  color: #fff;
  padding: clamp(24px, 3vw, 44px);
  isolation: isolate;
}

.product-proof::before {
  content: "PREVIEW";
  position: absolute;
  right: -12px;
  bottom: -38px;
  z-index: -1;
  color: rgba(255,255,255,.055);
  font-size: clamp(7rem, 13vw, 17rem);
  line-height: .72;
  font-weight: 950;
  letter-spacing: -.08em;
}

.product-proof::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 14px;
  background: linear-gradient(90deg, var(--blue) 0 28%, var(--gold) 28% 72%, var(--red) 72% 100%);
}

.product-proof-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(280px, .52fr);
  gap: clamp(22px, 4vw, 68px);
  align-items: end;
  margin-bottom: clamp(22px, 3vw, 40px);
  padding-top: 18px;
}

.proof-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 38px;
  border: 4px solid var(--ink);
  background: var(--red);
  color: #fff;
  box-shadow: 6px 6px 0 var(--gold);
  padding: 8px 12px;
  font-size: 8px;
}

.product-proof h2 {
  max-width: 980px;
  margin: 22px 0 0;
  font-size: clamp(3.6rem, 7.3vw, 9rem);
  line-height: .8;
  letter-spacing: -.075em;
  font-weight: 950;
  text-transform: uppercase;
}

.product-proof-head p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  line-height: 1.45;
  font-weight: 800;
}

.proof-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2vw, 30px);
  align-items: stretch;
  max-width: min(1220px, 100%);
  margin-inline: auto;
}

.proof-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 5px solid var(--ink);
  background: #fff;
  color: var(--ink);
  box-shadow: 7px 7px 0 rgba(255,255,255,.18), 12px 12px 0 var(--ink);
}

.proof-card::before {
  content: attr(data-proof);
  position: relative;
  z-index: 2;
  width: max-content;
  max-width: calc(100% - 28px);
  margin: 14px 14px 0;
  border: 3px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--red);
  padding: 6px 9px;
  font-family: "Space Mono", monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.proof-card:nth-child(1) {
  box-shadow: 8px 8px 0 var(--gold), 15px 15px 0 var(--red);
}

.proof-card:nth-child(3),
.proof-card:nth-child(5) {
  background: #fff7d7;
}

.proof-card:nth-child(5) {
  box-shadow: 7px 7px 0 var(--blue), 13px 13px 0 rgba(255,255,255,.16);
}

.proof-card:nth-child(6) {
  background: var(--ink);
  color: #fff;
  box-shadow: 8px 8px 0 var(--blue), 14px 14px 0 var(--gold);
}

.proof-shot {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: clamp(210px, 34vw, 620px);
  padding: clamp(12px, 1.55vw, 22px);
  background:
    linear-gradient(rgba(7,11,24,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,11,24,.045) 1px, transparent 1px),
    #f8f8f8;
  background-size: 28px 28px, 28px 28px, auto;
}

.proof-card:nth-child(6) .proof-shot {
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    #090d18;
  background-size: 28px 28px, 28px 28px, auto;
}

.proof-shot img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  background: #fff;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(7,11,24,.18);
}

.proof-card:nth-child(6) .proof-shot img {
  border-color: #fff;
  box-shadow: 7px 7px 0 var(--red);
}

.proof-card figcaption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 72px;
  border-top: 5px solid var(--ink);
  background: #fff;
  padding: 12px 14px;
}

.proof-card:nth-child(6) figcaption {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
}

.proof-card figcaption b {
  color: var(--blue);
  font-size: 8px;
  white-space: nowrap;
}

.proof-card:nth-child(1) figcaption b,
.proof-card:nth-child(6) figcaption b {
  color: var(--gold);
}

.proof-card figcaption span {
  color: var(--muted);
  font-size: clamp(.82rem, .9vw, .98rem);
  line-height: 1.3;
  font-weight: 800;
}

.proof-card:nth-child(6) figcaption span {
  color: rgba(255,255,255,.72);
}

.section-head {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) minmax(0, auto);
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}

.section-code {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  background: var(--ink);
  color: var(--gold);
  padding: 7px 12px;
  font-size: 8px;
}

.rule {
  height: 6px;
  background: var(--ink);
}

.section-head h2 {
  margin: 0;
  max-width: 900px;
  text-align: right;
  font-size: clamp(3rem, 6.5vw, 8rem);
  line-height: .82;
  letter-spacing: -.07em;
  font-weight: 950;
  text-transform: uppercase;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(340px, .84fr) minmax(0, 1.16fr);
  gap: 22px;
  align-items: stretch;
}

.problem-lead {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border: 7px solid var(--ink);
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    var(--ink);
  background-size: 38px 38px, 38px 38px, auto;
  color: #fff;
  box-shadow: 12px 12px 0 var(--gold), 20px 20px 0 var(--red);
  padding: clamp(28px, 4vw, 56px);
}

.problem-lead::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 14px;
  background: linear-gradient(90deg, var(--red) 0 34%, var(--gold) 34% 74%, var(--blue) 74% 100%);
}

.problem-lead::after {
  content: "RISK";
  position: absolute;
  right: -18px;
  bottom: -26px;
  color: rgba(255,255,255,.06);
  font-size: clamp(7rem, 14vw, 16rem);
  line-height: .75;
  font-weight: 950;
  letter-spacing: -.08em;
}

.problem-lead .badge {
  border-color: #fff;
  background: var(--red);
  box-shadow: 7px 7px 0 var(--gold);
}

.problem-lead h3 {
  position: relative;
  z-index: 2;
  margin: 22px 0;
  font-size: clamp(3.5rem, 6vw, 7.2rem);
  line-height: .86;
  letter-spacing: -.07em;
  font-weight: 950;
  text-transform: uppercase;
}

.problem-lead p {
  position: relative;
  z-index: 2;
  max-width: 610px;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.05rem, 1.4vw, 1.55rem);
  line-height: 1.5;
  font-weight: 760;
}

.risk-meter {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 4px solid rgba(255,255,255,.18);
}

.risk-meter div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: center;
  min-height: 38px;
  color: rgba(255,255,255,.68);
  font-size: 8px;
}

.risk-meter b {
  color: #fff;
  font-size: 9px;
}

.risk-meter i {
  position: relative;
  display: block;
  height: 13px;
  border: 2px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  overflow: hidden;
}

.risk-meter i::before {
  content: "";
  display: block;
  width: var(--risk);
  height: 100%;
  background: var(--gold);
  box-shadow: 0 0 0 999px rgba(255,255,255,.035);
}

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

.trap {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  min-height: 336px;
  border: 7px solid var(--ink);
  background: #fff;
  box-shadow: 10px 10px 0 var(--ink);
  padding: 24px;
  overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease;
}

.trap:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0 var(--ink);
}

.trap:nth-child(2) { background: var(--gold); box-shadow: 10px 10px 0 var(--red); }
.trap:nth-child(3) { background: var(--ink); color: #fff; box-shadow: 10px 10px 0 var(--gold); }
.trap:nth-child(4) { box-shadow: 10px 10px 0 var(--blue); }

.trap::before {
  content: attr(data-no);
  position: absolute;
  top: 24px;
  left: 24px;
  color: var(--blue);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.trap::after {
  content: attr(data-mark);
  position: absolute;
  top: clamp(62px, 5.2vw, 92px);
  right: 18px;
  color: rgba(7,11,24,.055);
  font-size: clamp(6rem, 10vw, 11rem);
  line-height: .75;
  letter-spacing: -.09em;
  font-weight: 950;
}

.trap:nth-child(3)::after {
  color: rgba(255,255,255,.07);
}

.trap-tag {
  position: relative;
  z-index: 2;
  justify-self: end;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 3px solid currentColor;
  padding: 6px 10px;
  color: var(--red);
  font-size: 7px;
}

.trap:nth-child(2) .trap-tag,
.trap:nth-child(3) .trap-tag {
  color: var(--gold);
}

.trap h4 {
  position: relative;
  z-index: 2;
  align-self: end;
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 2.7vw, 3.2rem);
  line-height: .9;
  letter-spacing: -.055em;
  font-weight: 950;
  text-transform: uppercase;
}

.trap p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: currentColor;
  opacity: .72;
  font-size: .96rem;
  line-height: 1.44;
  font-weight: 760;
}

.access-map {
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr);
  gap: 22px;
  align-items: stretch;
}

.module-index {
  position: relative;
  border: 7px solid var(--ink);
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    var(--ink);
  background-size: 38px 38px, 38px 38px, auto;
  color: #fff;
  box-shadow: 12px 12px 0 var(--gold), 20px 20px 0 var(--red);
  padding: clamp(26px, 4vw, 50px);
  overflow: hidden;
}

.module-index::before {
  content: "MODULE MANIFEST";
  position: absolute;
  top: 18px;
  right: -42px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 220px;
  height: 42px;
  border: 4px solid var(--ink);
  background: var(--red);
  color: #fff;
  box-shadow: 6px 6px 0 var(--gold);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.module-index::after {
  content: "10";
  position: absolute;
  right: -22px;
  bottom: 0;
  color: rgba(255,255,255,.055);
  font-size: clamp(11rem, 20vw, 24rem);
  line-height: .72;
  letter-spacing: -.08em;
  font-weight: 950;
}

.module-index h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 26px;
  color: var(--gold);
  font-size: clamp(2.3rem, 4vw, 5.4rem);
  line-height: .85;
  letter-spacing: -.06em;
  font-weight: 950;
  text-transform: uppercase;
}

.module-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.module-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 46px;
  border: 3px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.045);
  padding: 8px 10px;
  color: rgba(255,255,255,.8);
  font-size: .94rem;
  line-height: 1.34;
  font-weight: 820;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.module-list li:hover {
  transform: translateX(6px);
  border-color: var(--gold);
  background: rgba(244,189,68,.12);
}

.module-list b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 30px;
  border: 2px solid rgba(244,189,68,.55);
  background: rgba(244,189,68,.1);
  color: var(--gold);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: .12em;
}

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

.deliverable {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 278px;
  border: 6px solid var(--ink);
  background: #fff;
  box-shadow: 10px 10px 0 var(--ink);
  padding: 24px;
  overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease;
}

.deliverable:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0 var(--ink);
}

.deliverable:nth-child(2) { background: var(--gold); box-shadow: 10px 10px 0 var(--red); }
.deliverable:nth-child(4) { background: var(--red); color: #fff; box-shadow: 10px 10px 0 var(--ink); }
.deliverable:nth-child(5) { background: var(--ink); color: #fff; box-shadow: 10px 10px 0 var(--gold); }
.deliverable:nth-child(6) { box-shadow: 10px 10px 0 var(--blue); }

.deliverable::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--blue);
}

.deliverable:nth-child(2)::before,
.deliverable:nth-child(4)::before { background: var(--red); }
.deliverable:nth-child(5)::before { background: var(--gold); }

.deliverable b {
  position: absolute;
  top: 34px;
  left: 24px;
  z-index: 2;
  display: block;
  color: var(--blue);
  font-size: 11px;
}

.deliverable:nth-child(4) b,
.deliverable:nth-child(5) b { color: var(--gold); }

.psy-visual {
  position: absolute;
  z-index: 1;
  top: 78px;
  left: 24px;
  right: 24px;
  height: 96px;
  color: currentColor;
  opacity: .22;
  pointer-events: none;
}

.deliverable:nth-child(2) .psy-visual { opacity: .18; }
.deliverable:nth-child(4) .psy-visual,
.deliverable:nth-child(5) .psy-visual { opacity: .28; }

.psy-scale {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
}

.psy-scale span {
  position: relative;
  display: block;
  height: var(--h);
  border: 3px solid currentColor;
  background: currentColor;
}

.psy-scale span::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: .12em;
}

.psy-bank {
  border: 3px solid currentColor;
  background:
    linear-gradient(currentColor 2px, transparent 2px),
    linear-gradient(90deg, currentColor 2px, transparent 2px);
  background-size: 28px 24px;
}

.psy-bank::before,
.psy-bank::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 28px;
  border: 3px solid currentColor;
  background: currentColor;
}

.psy-bank::before { left: 16px; top: 18px; }
.psy-bank::after { right: 24px; bottom: 16px; }

.psy-tree {
  background:
    linear-gradient(90deg, transparent 0 24%, currentColor 24% 27%, transparent 27% 100%),
    linear-gradient(90deg, transparent 0 72%, currentColor 72% 75%, transparent 75% 100%),
    linear-gradient(currentColor 0 3px, transparent 3px 100%);
  background-size: 100% 100%, 100% 100%, 100% 48px;
  background-position: center;
  background-repeat: no-repeat;
}

.psy-tree span {
  position: absolute;
  display: block;
  width: 42%;
  height: 28px;
  border: 3px solid currentColor;
  background: currentColor;
}

.psy-tree span:nth-child(1) { top: 0; left: 0; }
.psy-tree span:nth-child(2) { top: 34px; right: 0; }
.psy-tree span:nth-child(3) { bottom: 0; left: 18%; }

.psy-pages::before,
.psy-pages::after,
.psy-pages span {
  content: "";
  position: absolute;
  display: block;
  border: 3px solid currentColor;
  background:
    linear-gradient(currentColor 3px, transparent 3px) 14px 18px / calc(100% - 28px) 18px repeat-y;
}

.psy-pages::before {
  inset: 18px 2px 0 34px;
  transform: rotate(3deg);
}

.psy-pages::after {
  inset: 9px 18px 9px 18px;
  transform: rotate(-2deg);
}

.psy-pages span {
  inset: 0 36px 18px 0;
}

.psy-meter {
  display: grid;
  gap: 10px;
  align-content: center;
}

.psy-meter span {
  position: relative;
  display: block;
  height: 14px;
  border: 3px solid currentColor;
}

.psy-meter span::before {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  background: currentColor;
}

.psy-terminal {
  border: 3px solid currentColor;
  background:
    linear-gradient(currentColor 3px, transparent 3px) 18px 18px / calc(100% - 36px) 22px repeat-y;
}

.psy-terminal::before {
  content: "ACCESS OPEN";
  position: absolute;
  top: 14px;
  left: 18px;
  right: 18px;
  height: 28px;
  border: 3px solid currentColor;
  display: grid;
  place-items: center;
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: .12em;
}

.psy-terminal::after {
  content: "START";
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 74px;
  height: 28px;
  display: grid;
  place-items: center;
  background: currentColor;
  color: #fff;
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: .12em;
}

.deliverable h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.2vw, 2.6rem);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 950;
  text-transform: uppercase;
}

.deliverable p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: currentColor;
  opacity: .72;
  font-size: .94rem;
  line-height: 1.44;
  font-weight: 740;
}

.answer-lab {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
  border: 8px solid var(--ink);
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    var(--ink);
  background-size: 40px 40px, 40px 40px, auto;
  box-shadow: 14px 14px 0 var(--gold), 22px 22px 0 var(--blue);
  padding: clamp(20px, 2.6vw, 34px);
  color: #fff;
}

.answer-lab::before {
  content: "A-E RESPONSE / CONTEXT / VALUE / RISK";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  min-height: 32px;
  display: flex;
  align-items: center;
  border-bottom: 4px solid var(--ink);
  background: var(--red);
  color: #fff;
  padding: 0 18px;
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lab-title {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  border: 5px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.05);
  box-shadow: 8px 8px 0 rgba(255,255,255,.1);
  padding: clamp(30px, 3.1vw, 46px);
  overflow: hidden;
  min-width: 0;
}

.lab-title::after {
  content: "A-E";
  position: absolute;
  right: -10px;
  bottom: 0;
  color: rgba(255,255,255,.07);
  font-size: clamp(8rem, 16vw, 18rem);
  line-height: .75;
  font-weight: 950;
  letter-spacing: -.08em;
}

.lab-title h2 {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: clamp(16px, 1.8vw, 22px) 0;
  font-size: clamp(2.85rem, 3.72vw, 5rem);
  line-height: .9;
  letter-spacing: -.045em;
  font-weight: 950;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.lab-title .badge {
  border-color: #fff;
  background: var(--red);
  box-shadow: 7px 7px 0 var(--gold);
}

.lab-title p {
  position: relative;
  z-index: 2;
  max-width: min(100%, 560px);
  color: rgba(255,255,255,.72);
  font-size: clamp(.96rem, 1vw, 1.08rem);
  line-height: 1.5;
  font-weight: 760;
  overflow-wrap: break-word;
}

.lab-scale {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: clamp(20px, 2.2vw, 30px);
  min-width: 0;
}

.lab-scale span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 3px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.78);
  font-size: 11px;
  min-width: 0;
  overflow: hidden;
}

.lab-scale span:nth-child(4) {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 4px 4px 0 var(--red);
}

.sample-board {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
}

.sample-item,
.compare-card {
  position: relative;
  overflow: hidden;
  border: 6px solid var(--ink);
  background: #fff;
  box-shadow: 10px 10px 0 var(--ink);
  padding: 24px;
}

.sample-item {
  display: grid;
  align-content: start;
  min-height: 372px;
  background: #fff5d8;
  color: var(--ink);
  box-shadow: 10px 10px 0 var(--gold), 16px 16px 0 var(--red);
}

.sample-item::after {
  content: "ITEM";
  position: absolute;
  right: -14px;
  bottom: 0;
  color: rgba(7,11,24,.055);
  font-size: clamp(7rem, 14vw, 14rem);
  line-height: .75;
  letter-spacing: -.08em;
  font-weight: 950;
}

.sample-item h3,
.compare-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 2.6vw, 3.1rem);
  line-height: .94;
  letter-spacing: -.05em;
  font-weight: 950;
  text-transform: uppercase;
}

.sample-item p,
.compare-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 740;
}

.choice-scale {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 30px;
}

.choice-scale span {
  display: grid;
  align-content: center;
  min-height: 74px;
  border: 4px solid var(--ink);
  background: #fff;
  color: var(--ink);
  padding: 10px;
  font-size: 9px;
  text-align: center;
}

.choice-scale b {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -.04em;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 950;
}

.choice-scale span:nth-child(4) {
  background: var(--gold);
  box-shadow: 5px 5px 0 var(--red);
}

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

.compare-card.bad {
  background: var(--red);
  color: #fff;
  box-shadow: 10px 10px 0 var(--gold);
}

.compare-card.good {
  background: var(--ink);
  color: #fff;
  box-shadow: 10px 10px 0 var(--blue);
}

.compare-card::before {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 4px solid currentColor;
  font-size: 2rem;
  line-height: 1;
  font-weight: 950;
}

.compare-card.bad::before {
  content: "!";
  color: #fff;
}

.compare-card.good::before {
  content: "✓";
  color: var(--gold);
}

.compare-card::after {
  position: absolute;
  right: -8px;
  bottom: 0;
  z-index: 1;
  color: rgba(255,255,255,.08);
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: .75;
  letter-spacing: -.08em;
  font-weight: 950;
}

.compare-card.bad::after {
  content: "RISK";
}

.compare-card.good::after {
  content: "STABLE";
}

.compare-card.bad p,
.compare-card.good p {
  color: rgba(255,255,255,.76);
}

.checkout {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, .58fr) minmax(440px, .96fr) minmax(250px, .34fr);
  gap: clamp(22px, 2.35vw, 44px);
  align-items: center;
  border: 8px solid var(--ink);
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    radial-gradient(circle at 58% 44%, rgba(244, 189, 68, .16), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(48, 99, 226, .16), transparent 18%),
    var(--ink);
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: 14px 14px 0 var(--gold), 22px 22px 0 var(--red);
  padding: clamp(38px, 4.5vw, 70px) clamp(54px, 5.8vw, 108px) clamp(42px, 4.8vw, 78px) clamp(28px, 5vw, 86px);
  color: #fff;
  isolation: isolate;
}

.checkout::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 1;
  width: 14px;
  min-height: 0;
  display: block;
  border: 0;
  border-left: 5px solid var(--gold);
  background: var(--red);
  box-shadow: -9px 0 0 rgba(244,189,68,.24);
  padding: 0;
  transform: none;
}

.checkout::after {
  content: "500";
  position: absolute;
  left: 43%;
  bottom: -18px;
  z-index: 0;
  color: rgba(255,255,255,.035);
  font-size: clamp(9rem, 17vw, 21rem);
  line-height: .72;
  letter-spacing: -.08em;
  font-weight: 950;
}

.checkout-copy,
.checkout-product,
.order-card,
.price-ticket,
.checkout-command {
  position: relative;
  z-index: 2;
}

.checkout-copy {
  align-self: center;
  padding-top: 0;
}

.checkout h2 {
  max-width: 660px;
  margin: 18px 0 18px;
  font-size: clamp(2.85rem, 3.95vw, 5.25rem);
  line-height: .91;
  letter-spacing: -.058em;
  font-weight: 950;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.checkout p {
  max-width: 570px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.02rem, 1.15vw, 1.28rem);
  line-height: 1.5;
  font-weight: 760;
}

.checkout-list {
  display: grid;
  gap: 8px;
  max-width: 540px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.checkout-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  font-size: .94rem;
  line-height: 1.34;
  font-weight: 860;
  color: rgba(255,255,255,.84);
}

.checkout-list i {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  background: var(--gold);
  color: var(--ink);
  font-style: normal;
  font-weight: 950;
  font-size: .82rem;
}

.checkout-product {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
  min-width: 0;
  margin: 0;
  padding-top: 18px;
}

.checkout-product::before {
  content: "Premium Access 500";
  justify-self: start;
  border: 4px solid var(--ink);
  background: var(--red);
  color: #fff;
  box-shadow: 5px 5px 0 var(--gold);
  padding: 8px 12px;
  font-family: "Space Mono", monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.checkout-product img {
  width: min(100%, clamp(440px, 37vw, 690px));
  border: 6px solid #fff;
  background: #fff;
  box-shadow: -10px -10px 0 var(--red), 12px 12px 0 var(--gold), 18px 18px 0 rgba(255,255,255,.12);
  transform: rotate(-1deg);
}

.checkout-product figcaption {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 450px);
}

.checkout-product figcaption span {
  display: grid;
  align-content: center;
  min-height: 46px;
  border: 2px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.045);
  padding: 8px;
  color: rgba(255,255,255,.76);
  font-size: 7px;
  text-align: center;
}

.order-card {
  border: 6px solid var(--ink);
  background:
    linear-gradient(rgba(7,11,24,.06) 1px, transparent 1px),
    #fff;
  background-size: 100% 38px;
  color: var(--ink);
  box-shadow: 8px 8px 0 rgba(255,255,255,.16), 14px 14px 0 var(--blue);
  padding: 22px;
  justify-self: end;
  max-width: 390px;
  transform: rotate(.45deg);
}

.order-card::before {
  content: "Checkout Console";
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 4px solid var(--ink);
  background: var(--ink);
  color: var(--gold);
  padding: 6px 11px;
  font-family: "Space Mono", monospace;
  font-size: 7px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.order-card .price {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: end;
  border-bottom: 5px solid var(--ink);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.order-card .price span {
  color: var(--red);
  font-size: 9px;
}

.order-card .price > span {
  justify-self: end;
  margin-top: -8px;
}

.order-card .price b {
  font-size: clamp(3.6rem, 4.9vw, 5.9rem);
  line-height: .82;
  letter-spacing: -.07em;
  font-weight: 950;
}

.order-lines {
  display: grid;
  gap: 0;
  margin-bottom: 18px;
  border-top: 3px solid var(--ink);
}

.order-lines div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 3px solid var(--ink);
  font-size: 8px;
}

.order-card .btn {
  width: 100%;
  min-height: 58px;
  font-size: 8px;
}

.price-ticket {
  justify-self: center;
  align-self: center;
  display: grid;
  gap: 0;
  width: clamp(232px, 15vw, 286px);
  max-width: min(100%, 286px);
  border: 5px solid #fff;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--red), 14px 14px 0 rgba(255,255,255,.12);
  transform: rotate(1.6deg);
  overflow: visible;
}

.price-ticket small,
.price-ticket span {
  display: block;
  padding: 9px 14px;
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.price-ticket strong {
  display: grid;
  place-items: center;
  border-top: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
  min-height: clamp(86px, 6vw, 106px);
  padding: 12px 18px 10px;
  font-size: clamp(3rem, 3.25vw, 4.05rem);
  line-height: .86;
  letter-spacing: -.035em;
  font-weight: 950;
  text-align: center;
  white-space: nowrap;
}

.price-ticket span {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  background: #fff;
}

.price-ticket span b {
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.checkout-command {
  grid-column: 1 / -1;
  justify-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(86px, 6vw, 118px);
  width: min(1240px, 100%);
  margin-top: clamp(4px, 1vw, 16px);
  border: 5px solid rgba(255,255,255,.92);
  background: linear-gradient(90deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  box-shadow: 9px 9px 0 var(--red), 15px 15px 0 rgba(255,255,255,.12);
}

.checkout-command span {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: clamp(86px, 6.4vw, 120px);
  background: var(--gold);
  color: var(--ink);
  padding: 0 clamp(18px, 2.4vw, 40px);
  font-size: clamp(2.05rem, 3.1vw, 4.15rem);
  line-height: .92;
  letter-spacing: -.01em;
  word-spacing: .13em;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 950;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}

.checkout-command b {
  display: grid;
  place-items: center;
  border-left: 5px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 5.8rem);
  line-height: 1;
  font-weight: 950;
}

.checkout-command small {
  grid-column: 1 / -1;
  display: block;
  min-height: 42px;
  border-top: 5px solid rgba(255,255,255,.92);
  background: rgba(7,11,24,.58);
  color: var(--gold);
  padding: 11px clamp(18px, 2.2vw, 34px);
  font-size: 8px;
  letter-spacing: .16em;
  line-height: 1.45;
  text-transform: uppercase;
}

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

.faq {
  border: 5px solid var(--ink);
  background: #fff;
  box-shadow: 7px 7px 0 var(--ink);
  padding: 22px;
}

.faq h3 {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2vw, 2.1rem);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 950;
  text-transform: uppercase;
}

.faq p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
  font-weight: 740;
  line-height: 1.5;
}

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

.support-card {
  min-height: 220px;
  border: 5px solid var(--ink);
  background: #fff;
  box-shadow: 7px 7px 0 var(--ink);
  padding: 22px;
}

.support-card b {
  color: var(--blue);
  font-size: 8px;
}

.support-card h3 {
  margin: 42px 0 0;
  font-size: clamp(1.55rem, 2.4vw, 2.8rem);
  line-height: .95;
  letter-spacing: -.05em;
  font-weight: 950;
  text-transform: uppercase;
}

.footer {
  margin: clamp(60px, 8vw, 110px) auto 48px;
  border: 6px solid var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 10px 10px 0 var(--gold), 16px 16px 0 var(--red);
  padding: clamp(22px, 3.2vw, 42px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(220px, .55fr) minmax(260px, .5fr);
  gap: clamp(18px, 3vw, 46px);
  align-items: stretch;
}

.footer-brand,
.footer-menu,
.footer-cta {
  position: relative;
  border: 3px solid rgba(255,255,255,.2);
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    rgba(255,255,255,.035);
  background-size: 100% 28px;
  padding: 18px;
}

.footer-brand > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  background: var(--red);
  color: #fff;
  box-shadow: 4px 4px 0 var(--gold);
  padding: 6px 10px;
  font-size: 7px;
}

.footer strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(2.4rem, 4.6vw, 5.8rem);
  line-height: .82;
  letter-spacing: -.07em;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 740;
}

.footer-menu {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-menu a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  border-bottom: 2px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.82);
  font-size: 8px;
}

.footer-menu a:last-child {
  border-bottom: 0;
}

.footer-menu a::before {
  content: attr(data-no);
  color: var(--gold);
}

.footer-cta {
  display: grid;
  align-content: space-between;
  gap: 14px;
}

.footer-price small {
  display: block;
  color: var(--red);
  font-size: 8px;
}

.footer-price b {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: clamp(3.1rem, 4.2vw, 5.4rem);
  line-height: .82;
  letter-spacing: -.065em;
  font-weight: 950;
}

.footer-cta .btn {
  width: 100%;
  min-height: 58px;
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--red);
  font-size: 8px;
}

.footer-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  border: 3px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.7);
  font-size: 7px;
}

.footer-trust span {
  min-height: 42px;
  display: grid;
  align-items: center;
  border-right: 2px solid rgba(255,255,255,.14);
  padding: 8px 12px;
}

.footer-trust span:last-child {
  border-right: 0;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 3px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.62);
  font-size: 10px;
}

.sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  border-top: 4px solid var(--gold);
  background: var(--ink);
  color: #fff;
  padding: 10px 12px max(10px, env(safe-area-inset-bottom));
}

.sticky-buy-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  max-width: 680px;
  margin: 0 auto;
}

.sticky-buy b {
  display: block;
  font-size: 11px;
}

.sticky-buy span {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.62);
  font-size: 9px;
}

.sticky-buy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  background: var(--gold);
  color: var(--ink);
  border: 3px solid var(--gold);
  padding: 0 14px;
  font-size: 9px;
}

@media (max-width: 1180px) {
  .nav-grid {
    grid-template-columns: minmax(220px, 1fr) minmax(142px, auto);
  }

  .nav-link {
    display: none;
  }

  .brand {
    border-right: 3px solid var(--ink);
  }

  .hero,
  .problem-grid,
  .access-map,
  .answer-lab,
  .checkout {
    grid-template-columns: 1fr;
  }

  .checkout {
    align-items: start;
  }

  .checkout-copy,
  .checkout-product,
  .order-card,
  .price-ticket {
    justify-self: stretch;
  }

  .checkout-product {
    padding-top: 4px;
  }

  .order-card {
    justify-self: start;
    max-width: min(100%, 560px);
    transform: none;
  }

  .price-ticket {
    justify-self: start;
    width: min(100%, 440px);
    transform: none;
  }

  .hero-product {
    padding-left: clamp(26px, 5vw, 60px);
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    text-align: left;
  }

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

  .product-proof-head p {
    max-width: 760px;
  }

  .proof-board {
    grid-template-columns: 1fr;
    max-width: min(980px, 100%);
  }

  .proof-card:nth-child(1),
  .proof-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .rule {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --wrap: min(100% - 20px, 680px);
  }

  body {
    background-size: 34px 34px;
  }

  .signal-track {
    padding: 8px 0;
    font-size: 8px;
  }

  .site-header {
    position: relative;
    margin-top: 12px;
    border-width: 4px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .nav-grid {
    min-height: auto;
  }

  .brand {
    padding: 11px 12px;
    border-right-width: 3px;
  }

  .brand strong {
    font-size: clamp(1.65rem, 9.6vw, 2.9rem);
  }

  .nav-cta {
    min-height: 52px;
    padding: 0 10px;
    font-size: 7px;
  }

  .hero {
    margin-top: 26px;
    min-height: 0;
    border-width: 4px;
    box-shadow: 7px 7px 0 var(--gold), 12px 12px 0 var(--red);
  }

  .hero::after {
    width: 7px;
    border-left-width: 3px;
    box-shadow: -5px 0 0 rgba(244, 189, 68, .18);
  }

  .hero-copy {
    padding: 20px 30px 14px 18px;
  }

  .badge {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 8px;
    box-shadow: 4px 4px 0 var(--gold);
  }

  .hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(3rem, 14vw, 4.25rem);
    line-height: .84;
  }

  .lead {
    font-size: .95rem;
    line-height: 1.4;
  }

  .mobile-offer-chip {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
    border: 4px solid #fff;
    background: rgba(255,255,255,.08);
    box-shadow: 4px 4px 0 var(--gold);
    padding: 9px 10px;
  }

  .mobile-offer-chip b {
    display: block;
    color: var(--gold);
    font-size: 2rem;
    line-height: .9;
    letter-spacing: -.05em;
  }

  .mobile-offer-chip span {
    display: block;
    color: rgba(255,255,255,.76);
    font-size: 7px;
  }

  .hero-protocol {
    grid-template-columns: 1fr;
    margin-top: 14px;
    border-width: 3px;
    box-shadow: 4px 4px 0 rgba(255,255,255,.1);
  }

  .hero-protocol-label {
    min-height: 28px;
    border-right: 0;
    border-bottom: 3px solid rgba(7,10,20,.38);
    padding: 6px 8px;
    font-size: 6px;
  }

  .hero-protocol-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-protocol-item {
    min-width: 0;
    min-height: 54px;
    padding: 8px 7px;
  }

  .hero-protocol-item + .hero-protocol-item {
    border-left: 2px solid rgba(255,255,255,.2);
    border-top: 0;
  }

  .hero-protocol-item::after {
    right: 4px;
    bottom: -10px;
    font-size: 2.3rem;
  }

  .hero-protocol-item small {
    font-size: 5px;
  }

  .hero-protocol-item strong {
    margin-top: 4px;
    font-size: .7rem;
    line-height: .9;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    border-width: 4px;
    padding: 0 16px;
    box-shadow: 5px 5px 0 var(--ink);
    font-size: 8px;
  }

  .hero-primary-order {
    min-height: 66px;
    border-width: 4px;
    padding: 0 46px 0 14px;
    box-shadow: 5px 5px 0 var(--red), 9px 9px 0 rgba(255,255,255,.14);
    font-size: clamp(1rem, 4.2vw, 1.2rem);
    line-height: 1.04;
  }

  .hero-primary-order::after {
    right: 14px;
    font-size: 1.75rem;
  }

  .hero-secondary-link {
    min-height: 48px;
    font-size: 7px;
  }

  .hero-product {
    padding: 0 30px 22px 18px;
  }

  .hero-product::before {
    top: 8px;
    right: 32px;
    border-width: 3px;
    box-shadow: 4px 4px 0 var(--gold);
    padding: 6px 9px;
    font-size: 7px;
  }

  .product-panel {
    padding-top: 38px;
  }

  .product-panel::before {
    inset: 34px 16px 148px 18px;
    border-width: 3px;
    box-shadow: -6px -6px 0 rgba(221,70,61,.9), 8px 8px 0 rgba(244,189,68,.9);
    transform: rotate(-.8deg);
  }

  .product-panel::after {
    left: 18px;
    right: 18px;
    bottom: 98px;
    height: 32px;
    border-width: 3px;
  }

  .product-frame {
    width: 100%;
    border-width: 4px;
    box-shadow: -5px -5px 0 var(--red), 8px 8px 0 var(--gold), 13px 13px 0 rgba(255,255,255,.12), 0 18px 34px rgba(0,0,0,.32);
    transform: none;
  }

  .product-frame::after {
    inset: 8px;
  }

  .price-stamp {
    display: none;
  }

  .price-stamp b {
    font-size: 3rem;
  }

  .product-buy-panel {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-command {
    min-height: 66px;
    border-width: 4px;
    padding: 0 46px 0 14px;
    box-shadow: 5px 5px 0 var(--red), 9px 9px 0 rgba(255,255,255,.14);
    font-size: clamp(.98rem, 4vw, 1.16rem);
    line-height: 1.04;
  }

  .product-command::after {
    right: 12px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    font-size: 1.35rem;
  }

  .product-price-deck {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 0;
    border-width: 4px;
    box-shadow: 5px 5px 0 rgba(255,255,255,.14);
    padding: 8px;
  }

  .product-buy-price {
    min-height: 64px;
    padding: 9px 10px;
  }

  .product-buy-price b {
    font-size: 2.35rem;
  }

  .product-buy-note {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    font-size: 6px;
  }

  .product-buy-note span {
    min-height: 0;
    border-left-width: 2px;
    padding: 5px 7px;
  }

  .stat-rack,
  .fold-proof,
  .deliverable-grid,
  .trap-grid,
  .compare-grid,
  .faq-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .stat-rack div {
    min-height: 82px;
  }

  .fold-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 24px;
    border-width: 4px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .fold-proof div {
    grid-template-columns: 24px 1fr;
    gap: 8px;
    min-height: 50px;
    border-width: 0 2px 2px 0;
    box-shadow: none;
    padding: 9px;
    font-size: 6px;
  }

  .fold-proof div:nth-child(2n) {
    border-right: 0;
  }

  .fold-proof div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .product-proof {
    margin-top: 42px;
    border-width: 4px;
    box-shadow: 7px 7px 0 var(--gold), 12px 12px 0 var(--red);
    padding: 18px;
  }

  .product-proof::after {
    height: 10px;
  }

  .product-proof::before {
    right: -8px;
    bottom: -18px;
    font-size: 7.2rem;
  }

  .product-proof-head {
    gap: 14px;
    margin-bottom: 18px;
    padding-top: 12px;
  }

  .proof-kicker {
    min-height: 32px;
    border-width: 3px;
    box-shadow: 4px 4px 0 var(--gold);
    padding: 6px 9px;
    font-size: 7px;
  }

  .product-proof h2 {
    margin-top: 16px;
    font-size: clamp(2.7rem, 13vw, 4.6rem);
  }

  .product-proof-head p {
    font-size: .92rem;
    line-height: 1.4;
  }

  .proof-board {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .proof-card,
  .proof-card:nth-child(1),
  .proof-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    border-width: 4px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .proof-card:nth-child(1) {
    box-shadow: 6px 6px 0 var(--gold), 10px 10px 0 var(--red);
  }

  .proof-card:nth-child(5) {
    box-shadow: 5px 5px 0 var(--blue);
  }

  .proof-card:nth-child(6) {
    box-shadow: 6px 6px 0 var(--blue), 10px 10px 0 var(--gold);
  }

  .proof-card::before {
    max-width: calc(100% - 20px);
    margin: 10px 10px 0;
    border-width: 2px;
    box-shadow: 3px 3px 0 var(--red);
    padding: 5px 7px;
    font-size: 6px;
  }

  .proof-shot {
    min-height: 0;
    padding: 10px;
  }

  .proof-card:nth-child(1) .proof-shot,
  .proof-card:nth-child(6) .proof-shot {
    min-height: 0;
  }

  .proof-shot img {
    border-width: 2px;
    box-shadow: 4px 4px 0 rgba(7,11,24,.16);
  }

  .proof-card figcaption {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 0;
    border-top-width: 4px;
    padding: 10px 12px;
  }

  .proof-card figcaption b {
    font-size: 7px;
  }

  .proof-card figcaption span {
    font-size: .82rem;
  }

  .section {
    margin-top: 56px;
  }

  .section-code {
    width: max-content;
    max-width: 100%;
    min-height: 34px;
    font-size: 8px;
  }

  .section-head {
    gap: 10px;
    margin-bottom: 18px;
  }

  .section-head h2 {
    font-size: clamp(2.7rem, 14vw, 4.9rem);
  }

  .problem-lead,
  .trap,
  .module-index,
  .deliverable,
  .lab-title,
  .sample-item,
  .compare-card,
  .checkout,
  .order-card,
  .faq,
  .support-card,
  .footer {
    border-width: 4px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .problem-lead {
    min-height: 0;
    padding: 22px;
  }

  .problem-lead h3 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .problem-lead p {
    font-size: .98rem;
  }

  .risk-meter {
    gap: 8px;
    margin-top: 22px;
    padding-top: 16px;
    border-top-width: 3px;
  }

  .risk-meter div {
    grid-template-columns: 104px minmax(0, 1fr) 38px;
    gap: 8px;
    min-height: 32px;
    font-size: 7px;
  }

  .risk-meter b {
    font-size: 7px;
  }

  .risk-meter i {
    height: 10px;
  }

  .trap {
    min-height: 220px;
    padding: 18px;
  }

  .trap::before {
    top: 17px;
    left: 18px;
    font-size: 8px;
  }

  .trap::after {
    top: 58px;
    right: 12px;
    font-size: 5.4rem;
  }

  .trap-tag {
    min-height: 28px;
    border-width: 2px;
    padding: 5px 8px;
    font-size: 6px;
  }

  .trap h4 {
    font-size: clamp(1.7rem, 9vw, 2.6rem);
  }

  .module-index,
  .deliverable,
  .lab-title,
  .sample-item,
  .compare-card,
  .checkout,
  .order-card {
    padding: 20px;
  }

  .module-index h3,
  .lab-title h2,
  .checkout h2 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .module-index {
    box-shadow: 7px 7px 0 var(--gold), 12px 12px 0 var(--red);
  }

  .module-index::before {
    top: 14px;
    right: -50px;
    width: 190px;
    height: 34px;
    border-width: 3px;
    font-size: 6px;
  }

  .module-index::after {
    right: -12px;
    bottom: 0;
    font-size: 10rem;
  }

  .module-list {
    gap: 7px;
  }

  .module-list li {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 42px;
    border-width: 2px;
    padding: 7px 8px;
    font-size: .86rem;
  }

  .module-list b {
    width: 30px;
    height: 26px;
    font-size: 9px;
  }

  .deliverable {
    min-height: 214px;
    padding: 18px;
  }

  .deliverable::before {
    height: 9px;
  }

  .deliverable b {
    top: 24px;
    left: 18px;
    font-size: 8px;
  }

  .psy-visual {
    top: 54px;
    left: auto;
    right: 18px;
    width: min(44%, 148px);
    height: 62px;
    opacity: .16;
  }

  .deliverable:nth-child(4) .psy-visual,
  .deliverable:nth-child(5) .psy-visual {
    opacity: .2;
  }

  .psy-scale {
    gap: 6px;
  }

  .psy-scale span {
    border-width: 2px;
  }

  .psy-scale span::after {
    bottom: -18px;
    font-size: 7px;
  }

  .psy-bank,
  .psy-terminal,
  .psy-tree span,
  .psy-meter span,
  .psy-pages::before,
  .psy-pages::after,
  .psy-pages span {
    border-width: 2px;
  }

  .psy-bank {
    background-size: 22px 20px;
  }

  .psy-bank::before,
  .psy-bank::after {
    width: 42px;
    height: 22px;
    border-width: 2px;
  }

  .psy-tree span {
    height: 22px;
  }

  .psy-tree span:nth-child(2) {
    top: 27px;
  }

  .psy-meter {
    gap: 7px;
  }

  .psy-meter span {
    height: 10px;
  }

  .psy-terminal::before {
    top: 10px;
    left: 12px;
    right: 12px;
    height: 22px;
    border-width: 2px;
    font-size: 7px;
  }

  .psy-terminal::after {
    right: 12px;
    bottom: 10px;
    width: 58px;
    height: 22px;
    font-size: 6px;
  }

  .deliverable h4 {
    margin-top: 0;
    font-size: clamp(1.75rem, 10vw, 2.8rem);
  }

  .answer-lab {
    border-width: 4px;
    box-shadow: 7px 7px 0 var(--gold), 12px 12px 0 var(--blue);
    padding: 14px;
  }

  .answer-lab::before {
    min-height: 28px;
    border-bottom-width: 3px;
    padding: 0 10px;
    font-size: 6px;
  }

  .lab-title {
    padding-top: 44px;
  }

  .lab-scale {
    gap: 6px;
    margin-top: 22px;
  }

  .lab-scale span {
    min-height: 42px;
    border-width: 2px;
    font-size: 8px;
  }

  .sample-item {
    min-height: 0;
  }

  .sample-item::after {
    right: -8px;
    bottom: -10px;
    font-size: 6rem;
  }

  .choice-scale {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 20px;
  }

  .choice-scale span {
    grid-template-columns: 42px 1fr;
    display: grid;
    align-items: center;
    min-height: 46px;
    border-width: 3px;
    padding: 8px 10px;
    text-align: left;
    font-size: 7px;
  }

  .choice-scale b {
    margin: 0;
    font-size: 1.1rem;
  }

  .compare-card::before {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-width: 3px;
    font-size: 1.45rem;
  }

  .compare-card::after {
    right: -6px;
    bottom: -8px;
    font-size: 4.8rem;
  }

  .checkout {
    box-shadow: 7px 7px 0 var(--gold), 12px 12px 0 var(--red);
    gap: 22px;
    padding: 50px 20px 24px;
  }

  .checkout::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 9px;
    min-height: 0;
    border: 0;
    border-left: 3px solid var(--gold);
    padding: 0;
    box-shadow: -6px 0 0 rgba(244,189,68,.22);
  }

  .checkout::after {
    left: auto;
    right: -8px;
    bottom: 0;
    color: rgba(255,255,255,.026);
    font-size: 8rem;
  }

  .checkout-copy {
    padding-top: 0;
  }

  .checkout h2 {
    margin: 14px 0 14px;
    line-height: .9;
  }

  .checkout p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .checkout-list {
    margin-top: 18px;
  }

  .checkout-list li {
    font-size: .9rem;
  }

  .checkout-product {
    gap: 10px;
  }

  .checkout-product::before {
    justify-self: start;
    border-width: 3px;
    box-shadow: 4px 4px 0 var(--gold);
    padding: 7px 10px;
    font-size: 7px;
  }

  .checkout-product img {
    width: min(100%, 430px);
    border-width: 4px;
    box-shadow: -6px -6px 0 var(--red), 8px 8px 0 var(--gold), 13px 13px 0 rgba(255,255,255,.12);
    transform: none;
  }

  .checkout-product figcaption {
    grid-template-columns: 1fr;
    gap: 6px;
    width: min(100%, 330px);
  }

  .checkout-product figcaption span {
    min-height: 34px;
    border-width: 2px;
    font-size: 6px;
  }

  .order-card::before {
    min-height: 32px;
    border-width: 3px;
    font-size: 7px;
    margin-bottom: 12px;
  }

  .order-card {
    max-width: none;
    box-shadow: 7px 7px 0 rgba(255,255,255,.16), 11px 11px 0 var(--blue);
  }

  .order-card .price {
    grid-template-columns: 1fr;
  }

  .order-card .price b {
    font-size: 4.7rem;
  }

  .price-ticket {
    width: min(100%, 360px);
    max-width: 100%;
    border-width: 4px;
    box-shadow: 6px 6px 0 var(--red), 10px 10px 0 rgba(255,255,255,.12);
  }

  .price-ticket strong {
    border-top-width: 4px;
    border-bottom-width: 4px;
    font-size: clamp(3.8rem, 15vw, 4.8rem);
  }

  .checkout-command {
    grid-template-columns: minmax(0, 1fr) 52px;
    width: 100%;
    border-width: 3px;
    box-shadow: 5px 5px 0 var(--red), 8px 8px 0 rgba(255,255,255,.1);
  }

  .checkout-command span {
    min-height: 72px;
    padding: 8px 10px;
    font-size: clamp(1.18rem, 5.25vw, 1.58rem);
    line-height: .94;
    letter-spacing: -.02em;
    white-space: normal;
  }

  .checkout-command b {
    border-left-width: 3px;
    font-size: 1.8rem;
  }

  .checkout-command small {
    min-height: 32px;
    border-top-width: 3px;
    padding: 7px 10px;
    font-size: 5.4px;
  }

  .footer {
    margin-bottom: 92px;
    border-width: 4px;
    box-shadow: 7px 7px 0 var(--gold), 12px 12px 0 var(--red);
    padding: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-brand,
  .footer-menu,
  .footer-cta {
    border-width: 2px;
    padding: 14px;
  }

  .footer strong {
    margin-top: 14px;
    font-size: clamp(2.6rem, 13vw, 4.4rem);
  }

  .footer-brand p {
    font-size: .92rem;
  }

  .footer-menu a {
    min-height: 38px;
    font-size: 7px;
  }

  .footer-price b {
    font-size: 3.5rem;
  }

  .footer-trust {
    grid-template-columns: 1fr;
    font-size: 6px;
  }

  .footer-trust span {
    min-height: 34px;
    border-right: 0;
    border-bottom: 2px solid rgba(255,255,255,.14);
  }

  .footer-trust span:last-child {
    border-bottom: 0;
  }

  .sticky-buy {
    display: block;
  }
}

@media (max-width: 390px) {
  .brand strong {
    font-size: 2rem;
  }

  .hero h1,
  .section-head h2,
  .module-index h3,
  .lab-title h2,
  .checkout h2 {
    letter-spacing: -.055em;
  }

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

  .brand {
    border-right: 0;
    border-bottom: 4px solid var(--ink);
  }
}
.poster-hero {
  grid-template-columns: minmax(440px, .78fr) minmax(620px, 1.22fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0 clamp(18px, 2.6vw, 44px);
  align-items: center;
  min-height: clamp(790px, 86vh, 940px);
  background:
    linear-gradient(rgba(255,255,255,.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.052) 1px, transparent 1px),
    linear-gradient(112deg, transparent 0 51%, rgba(244, 189, 68, .08) 51% 64%, rgba(221, 70, 61, .16) 64% 65%, transparent 65%),
    radial-gradient(circle at 74% 38%, rgba(244, 189, 68, .28), transparent 24%),
    radial-gradient(circle at 94% 14%, rgba(47, 99, 232, .22), transparent 22%),
    var(--ink);
  background-size: 46px 46px, 46px 46px, auto, auto, auto, auto;
}

.poster-hero::before {
  content: "PSEE";
  left: clamp(18px, 3vw, 48px);
  right: auto;
  bottom: -22px;
  color: rgba(255,255,255,.05);
  font-size: clamp(9rem, 22vw, 24rem);
  line-height: .72;
  letter-spacing: -.095em;
  z-index: 0;
}

.poster-hero::after {
  width: clamp(16px, 1.5vw, 24px);
  background: var(--gold);
  border-left: 8px solid var(--red);
  box-shadow: -16px 0 0 rgba(244, 189, 68, .18), -28px 0 0 rgba(255,255,255,.08);
}

.poster-hero .hero-copy {
  align-content: start;
  padding: clamp(38px, 4vw, 66px) 0 clamp(24px, 3vw, 44px) clamp(34px, 4.5vw, 68px);
}

.poster-hero .badge {
  min-height: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  box-shadow: none;
  padding: 0;
  font-size: 10px;
}

.poster-hero .badge::before {
  content: "";
  width: 42px;
  height: 5px;
  margin-right: 12px;
  background: var(--red);
  box-shadow: 0 7px 0 var(--gold);
}

.poster-hero h1 {
  max-width: 640px;
  margin: 24px 0 24px;
  font-size: clamp(4.25rem, 5.85vw, 8.1rem);
  line-height: .78;
  letter-spacing: -.085em;
}

.poster-hero .lead {
  max-width: 590px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.05rem, 1.32vw, 1.55rem);
  line-height: 1.42;
}

.poster-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 720px;
  margin-top: clamp(18px, 2.2vw, 28px);
  border-top: 3px solid rgba(255,255,255,.36);
  border-bottom: 3px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.72);
  font-size: 8px;
}

.poster-proofline span {
  position: relative;
  padding: 14px 22px 14px 0;
  margin-right: 22px;
}

.poster-proofline span::after {
  content: "/";
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--gold);
  transform: translateY(-50%);
}

.poster-proofline span:last-child::after {
  content: "";
}

.poster-hero .hero-actions,
.poster-hero .hero-protocol,
.poster-hero .mobile-offer-chip,
.poster-hero .product-buy-panel,
.poster-hero .stat-rack {
  display: none;
}

.poster-product {
  align-content: center;
  justify-items: center;
  margin-left: clamp(-56px, -3.2vw, -24px);
  padding: clamp(26px, 3.2vw, 54px) clamp(48px, 5vw, 86px) clamp(16px, 2.5vw, 32px) 0;
}

.poster-product::before {
  content: "Produk Digital";
  top: clamp(28px, 4vw, 64px);
  right: clamp(72px, 8vw, 140px);
  border-width: 0;
  background: transparent;
  color: rgba(255,255,255,.72);
  box-shadow: none;
  padding: 0;
  font-size: 9px;
  transform: rotate(0deg);
}

.poster-stage {
  position: relative;
  width: min(100%, 860px);
  padding-top: 0;
  gap: 0;
  justify-items: center;
}

.poster-stage::before,
.poster-stage::after {
  display: none;
}

.poster-stage .product-frame {
  width: clamp(650px, 50vw, 900px);
  border: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(-12px -9px 0 var(--red)) drop-shadow(18px 18px 0 var(--gold)) drop-shadow(0 34px 54px rgba(0,0,0,.42));
  transform: rotate(-1.2deg) translate(-4px, -8px);
}

.poster-stage .product-frame img {
  aspect-ratio: auto;
  object-fit: contain;
}

.poster-stage .product-frame::after {
  display: none;
}

.poster-price-mark {
  position: absolute;
  top: clamp(60px, 5.4vw, 92px);
  right: clamp(48px, 5vw, 88px);
  z-index: 9;
  display: grid;
  align-content: center;
  min-width: clamp(116px, 8.8vw, 156px);
  min-height: clamp(72px, 6vw, 96px);
  border: 5px solid #fff;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 13px 9px;
  box-shadow: 7px 7px 0 var(--red), 12px 12px 0 rgba(7,11,24,.34);
  font-size: clamp(2rem, 2.8vw, 3.5rem);
  line-height: .82;
  letter-spacing: -.065em;
  font-weight: 950;
  text-shadow: none;
  transform: rotate(3.2deg);
}

.poster-price-mark small {
  display: block;
  margin-top: 5px;
  margin-left: 2px;
  color: rgba(7,11,24,.72);
  font-size: 7px;
  letter-spacing: .16em;
  text-shadow: none;
}

.poster-command-deck {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  justify-self: center;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 7;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(92px, 6.4vw, 124px);
  align-items: stretch;
  width: min(1280px, calc(100% - clamp(76px, 8vw, 150px)));
  max-width: none;
  margin: 0 auto clamp(38px, 3.6vw, 56px);
  border: 4px solid rgba(255,255,255,.88);
  background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  box-shadow: 9px 9px 0 var(--red), 15px 15px 0 rgba(255,255,255,.12);
}

.poster-order-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: clamp(102px, 6.7vw, 126px);
  padding: 0 clamp(18px, 2.2vw, 36px);
  background: var(--gold);
  color: var(--ink);
  border: 0;
  box-shadow: none;
  font-size: clamp(2.45rem, 3.05vw, 4.05rem);
  line-height: .9;
  letter-spacing: -.04em;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}

.poster-order-button span {
  display: block;
  max-width: 100%;
}

.poster-order-arrow {
  display: grid;
  place-items: center;
  border-left: 4px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  font-size: clamp(2.8rem, 4.3vw, 5.35rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 950;
}

.poster-trust {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  min-height: 40px;
  padding: 9px clamp(18px, 2vw, 30px);
  color: rgba(255,255,255,.82);
  font-size: 8px;
  border-top: 4px solid rgba(255,255,255,.88);
  background: rgba(7,11,24,.6);
}

.poster-stage .price-stamp {
  display: none;
}

.poster-trust span:first-child {
  color: var(--gold);
}

@media (max-width: 1180px) {
  .poster-hero {
    grid-template-columns: 1fr;
  }

  .poster-hero .hero-copy {
    order: 1;
  }

  .poster-product {
    order: 2;
    margin-left: 0;
    padding: 10px clamp(28px, 5vw, 58px) 6px;
  }

  .poster-price-mark {
    order: 3;
    position: relative;
    top: auto;
    right: auto;
    justify-self: end;
    margin: -42px clamp(42px, 6vw, 72px) 6px 0;
  }

  .poster-command-deck {
    order: 4;
    position: relative;
    grid-column: auto;
    grid-row: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    max-width: none;
    margin: 10px clamp(28px, 5vw, 58px) 24px;
    grid-template-columns: minmax(0, 1fr) clamp(58px, 9vw, 82px);
  }

  .poster-stage .product-frame {
    width: min(100%, 760px);
  }

  .poster-order-button {
    min-width: 0;
    min-height: 74px;
    padding: 10px clamp(12px, 2.2vw, 24px);
    font-size: clamp(1.3rem, 4.2vw, 2.25rem);
    line-height: .94;
    text-align: center;
    white-space: normal;
  }

  .poster-order-button span {
    display: block;
    max-width: 100%;
  }

  .poster-order-arrow {
    font-size: clamp(2rem, 5vw, 3.1rem);
  }

  .poster-trust {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .poster-hero {
    min-height: 0;
    border-width: 4px;
    box-shadow: 7px 7px 0 var(--gold), 12px 12px 0 var(--red);
  }

  .poster-hero::before {
    bottom: 160px;
    font-size: 12rem;
  }

  .poster-hero::after {
    width: 8px;
    border-left-width: 4px;
    box-shadow: -7px 0 0 rgba(244, 189, 68, .18);
  }

  .poster-hero .hero-copy {
    padding: 26px 30px 16px 18px;
  }

  .poster-hero .badge {
    font-size: 8px;
  }

  .poster-hero .badge::before {
    width: 28px;
    height: 4px;
    margin-right: 9px;
    box-shadow: 0 6px 0 var(--gold);
  }

  .poster-hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(3.05rem, 13.4vw, 4.25rem);
    line-height: .8;
  }

  .poster-hero .lead {
    font-size: .9rem;
    line-height: 1.34;
  }

  .poster-proofline {
    display: none;
  }

  .poster-product {
    margin-left: 0;
    padding: 10px 34px 0 18px;
  }

  .poster-product::before {
    top: 4px;
    right: 36px;
    font-size: 7px;
  }

  .poster-stage .product-frame {
    width: min(100%, 520px);
    filter: drop-shadow(-6px -5px 0 var(--red)) drop-shadow(9px 9px 0 var(--gold)) drop-shadow(0 18px 28px rgba(0,0,0,.36));
    transform: rotate(-1deg);
  }

  .poster-price-mark {
    top: auto;
    right: auto;
    min-width: 94px;
    min-height: 52px;
    margin: -28px 34px 4px auto;
    border-width: 4px;
    padding: 8px 9px 7px;
    box-shadow: 5px 5px 0 var(--red), 9px 9px 0 rgba(7,11,24,.32);
    font-size: clamp(1.58rem, 7.4vw, 2.15rem);
  }

  .poster-price-mark small {
    font-size: 6px;
  }

  .poster-command-deck {
    grid-template-columns: minmax(0, 1fr) 48px;
    margin: 12px 26px 22px 18px;
    width: auto;
    border-width: 3px;
    box-shadow: 5px 5px 0 var(--red), 8px 8px 0 rgba(255,255,255,.1);
  }

  .poster-order-button {
    min-height: 70px;
    padding: 8px 10px;
    font-size: clamp(1.18rem, 5.25vw, 1.58rem);
    line-height: .94;
    letter-spacing: -.02em;
    white-space: normal;
  }

  .poster-order-arrow {
    border-left-width: 3px;
    font-size: 1.7rem;
  }

  .poster-trust {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 5.4px;
    border-top-width: 3px;
  }
}

.ups-psee-landing img {
  display: block;
  max-width: 100%;
  height: auto;
}
