:root {
  --cream: #f3e8cd;
  --cream-2: #ece0bf;
  --paper: #fbf7ec;
  --ink: #1c1714;
  --ink-soft: #4a4138;
  --cobalt: #2d72b8;
  --cobalt-dark: #1f568f;
  --navy: #322c57;
  --navy-dk: #271f44;
  --green: #1c6b55;
  --gold: #e3a72f;
  --gold-dk: #c98a17;
  --red: #9e2620;
  --red-br: #c0392b;
  --rule: #1c1714;
  --supers: #3983c4;
  --allies: #0c4d40;
  --enemies: #e8a831;
  --specials: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--ink);
  font-family: "Lato", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Ben-Day halftone texture utility */
.halftone {
  background-image: radial-gradient(rgba(28, 23, 20, 0.1) 1.1px, transparent 1.3px);
  background-size: 11px 11px;
}
.halftone-blue {
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.1px, transparent 1.3px);
  background-size: 12px 12px;
}

h1,
h2,
h3 {
  margin: 0;
}

.display {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.92;
}
.eyebrow {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 13px;
}

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

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 16px;
  padding: 14px 24px;
  border: 3px solid var(--ink);
  cursor: pointer;
  transition:
    transform 0.08s ease,
    box-shadow 0.08s ease;
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--paper);
  color: var(--ink);
  white-space: nowrap;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}
.btn--buy {
  background: var(--red);
  color: #fff5e8;
}
.btn--play {
  background: var(--cobalt);
  color: #fff5e8;
}
.btn--lg {
  font-size: 19px;
  padding: 17px 30px;
}
.btn .ic {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: none;
}

/* store buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--paper);
  border: 3px solid var(--ink);
  padding: 9px 20px 9px 16px;
  box-shadow: 4px 4px 0 rgba(28, 23, 20, 0.35);
  transition: transform 0.08s ease;
}
.store-btn:hover {
  transform: translate(-2px, -2px);
}
.store-btn .ic {
  width: 26px;
  height: 26px;
  flex: none;
}
.store-btn .lbl {
  line-height: 1.05;
}
.store-btn .lbl small {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}
.store-btn .lbl b {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
}

/* ---------------- Nav ---------------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand .shield {
  width: 34px;
  height: 34px;
  background: var(--cobalt);
  border: 2.5px solid var(--ink);
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  flex: none;
}
.brand .shield span {
  transform: rotate(-45deg);
  font-family: "Anton", sans-serif;
  color: #fff5e8;
  font-size: 20px;
  line-height: 1;
}
.brand .name {
  font-family: "Anton", sans-serif;
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}
.nav-links a {
  color: var(--ink-soft);
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-cta {
  display: flex;
  gap: 10px;
}
.nav-cta .btn {
  padding: 9px 16px;
  font-size: 13px;
  box-shadow: 3px 3px 0 var(--ink);
}
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}
.hero-top-rule {
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}
.hero-top-rule .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 34px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--ink-soft);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 56px 0 64px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: "";
  width: 38px;
  height: 3px;
  background: var(--red);
}
.hero h1 {
  font-size: clamp(58px, 9vw, 116px);
  color: var(--ink);
  text-shadow:
    5px 5px 0 var(--cobalt),
    8px 8px 0 rgba(28, 23, 20, 0.18);
}
.hero h1 .free {
  color: var(--red);
  -webkit-text-stroke: 0;
  text-shadow:
    5px 5px 0 var(--gold),
    8px 8px 0 rgba(28, 23, 20, 0.18);
}
.hero-sub {
  font-size: 20px;
  max-width: 460px;
  margin: 26px 0 0;
  line-height: 1.5;
  color: var(--ink-soft);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-stores {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.store-badge {
  height: 50px;
  width: auto;
  display: block;
}
.hero-stores .lbl-or {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--ink-soft);
}

/* card fan */
.fan {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fan .card {
  position: absolute;
  width: 244px;
  border-radius: 12px;
  border: 1px solid rgba(28, 23, 20, 0.25);
  box-shadow: 0 18px 34px rgba(28, 23, 20, 0.35);
  background: var(--paper);
}
.fan .card img {
  width: 100%;
  display: block;
  border-radius: 11px;
}
.fan .c1 {
  transform: rotate(-16deg) translate(-128px, 18px);
  z-index: 1;
}
.fan .c2 {
  transform: rotate(-3deg) translate(-8px, -14px);
  z-index: 3;
}
.fan .c3 {
  transform: rotate(11deg) translate(116px, 14px);
  z-index: 2;
}
.fan .c2 {
  width: 260px;
}

.burst {
  position: absolute;
  z-index: 5;
  width: 124px;
  height: 124px;
  top: -6px;
  right: 4px;
  background: var(--gold);
  border: 3px solid var(--ink);
  clip-path: polygon(
    50% 0%,
    64.5% 14.9%,
    85.36% 14.64%,
    85.11% 35.5%,
    100% 50%,
    85.11% 64.5%,
    85.36% 85.36%,
    64.5% 85.11%,
    50% 100%,
    35.5% 85.11%,
    14.64% 85.36%,
    14.9% 64.5%,
    0% 50%,
    14.9% 35.5%,
    14.64% 14.64%,
    35.5% 14.9%
  );
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(-12deg);
}
.burst span {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
  font-size: 17px;
}
.burst span b {
  display: block;
  color: var(--red);
  font-size: 26px;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 40px 0 48px;
  }
  .fan {
    height: 380px;
    order: -1;
    margin-bottom: 12px;
  }
  .fan .card {
    width: 200px;
  }
  .fan .c2 {
    width: 214px;
  }
}

/* ---------------- Section scaffolding ---------------- */
section {
  position: relative;
}
.sec-pad {
  padding: 80px 0;
}
.sec-head {
  margin-bottom: 44px;
  max-width: 760px;
}
.sec-head .eyebrow {
  color: var(--red);
  display: block;
  margin-bottom: 14px;
}
.sec-head h2 {
  font-size: clamp(38px, 5.5vw, 64px);
  color: var(--ink);
}
.sec-head p {
  font-size: 19px;
  color: var(--ink-soft);
  margin: 16px 0 0;
  max-width: 620px;
}

/* divider rule like newspaper */
.rule-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.rule-row .ln {
  flex: 1;
  height: 3px;
  background: var(--ink);
}

/* ---------------- The Deck ---------------- */
.deck {
  background: var(--cream-2);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.deck-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.deck-card {
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid rgba(28, 23, 20, 0.2);
  box-shadow: 0 10px 22px rgba(28, 23, 20, 0.22);
  background: var(--paper);
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease;
  aspect-ratio: 750 / 1051;
}
.deck-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.deck-card:hover {
  transform: translateY(-8px) rotate(-1.2deg);
  box-shadow: 0 18px 30px rgba(28, 23, 20, 0.3);
}
.deck-back {
  border-radius: 11px;
  border: 3px solid var(--ink);
  background: var(--cobalt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  aspect-ratio: 750 / 1051;
  color: #fff5e8;
  text-align: center;
  padding: 18px;
}
.deck-back .shield-lg {
  width: 64px;
  height: 64px;
  background: var(--paper);
  border: 3px solid var(--ink);
  transform: rotate(45deg);
  display: grid;
  place-items: center;
}
.deck-back .shield-lg span {
  transform: rotate(-45deg);
  font-family: "Anton", sans-serif;
  color: var(--cobalt);
  font-size: 34px;
}
.deck-back b {
  font-family: "Anton", sans-serif;
  font-size: 40px;
  line-height: 1;
}
.deck-back small {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  opacity: 0.85;
}

.suit-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 36px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}
.suit-legend .s {
  display: flex;
  align-items: center;
  gap: 10px;
}
.suit-legend .sw {
  width: 20px;
  height: 20px;
  border: 2.5px solid var(--ink);
}
@media (max-width: 720px) {
  .deck-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ---------------- How it plays (dark band) ---------------- */
.plays {
  background: var(--navy);
  color: #f3ecdf;
  border-bottom: 3px solid var(--ink);
}
.plays .sec-head h2 {
  color: #fff5e8;
}
.plays .sec-head .eyebrow {
  color: var(--gold);
}
.plays .sec-head p {
  color: rgba(243, 236, 223, 0.92);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.step {
  background: rgba(255, 255, 255, 0.04);
  border: 3px solid #f3ecdf;
  padding: 30px 26px 30px;
  position: relative;
}
.step .num {
  font-family: "Anton", sans-serif;
  font-size: 74px;
  line-height: 0.8;
  color: var(--gold);
  -webkit-text-stroke: 0;
}
.step h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 24px;
  margin: 14px 0 10px;
  color: #fff5e8;
}
.step p {
  margin: 0;
  color: rgba(243, 236, 223, 0.78);
  font-size: 16px;
}
@media (max-width: 720px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ---------------- Kickstarter ---------------- */
.ks-section {
  background: var(--navy);
  color: var(--paper);
  border-bottom: 3px solid var(--ink);
}
.ks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ks-image {
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid rgba(255, 245, 232, 0.15);
}
.ks-image img {
  width: 100%;
  display: block;
}
.ks-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--navy-dk);
  display: grid;
  place-items: center;
  color: rgba(255, 245, 232, 0.3);
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ks-copy p {
  margin-top: 20px;
  opacity: 0.85;
  max-width: 480px;
}
.ks-perks {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ks-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  opacity: 0.9;
}
.ks-perks .ck {
  color: var(--gold);
  font-size: 14px;
  flex: none;
}
.ks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn--ks {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ks:hover {
  box-shadow: 6px 6px 0 rgba(28, 23, 20, 0.5);
}
@media (max-width: 720px) {
  .ks-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ---------------- Buy ---------------- */
.buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.product {
  position: relative;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  background: var(--cobalt);
  display: grid;
  place-items: center;
  box-shadow: 10px 10px 0 var(--ink);
}
.product .ph-note {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: rgba(255, 245, 232, 0.8);
}
.product .deck-mock {
  position: relative;
  width: 56%;
}
.product .deck-mock .pc {
  position: absolute;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(28, 23, 20, 0.3);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
.product .deck-mock .pc:nth-child(1) {
  transform: rotate(-9deg) translate(-22%, 4%);
}
.product .deck-mock .pc:nth-child(2) {
  transform: rotate(4deg) translate(14%, -3%);
}
.product .deck-mock .pc:nth-child(3) {
  position: relative;
  transform: rotate(-1deg);
}

.buy-info .price-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 8px 0 22px;
}
.buy-info .price {
  font-family: "Anton", sans-serif;
  font-size: 76px;
  line-height: 0.85;
  color: var(--ink);
}
.buy-info .price s {
  color: var(--ink-soft);
  font-size: 30px;
  opacity: 0.6;
}
.buy-info .tag {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  color: var(--ink-soft);
}
.feat {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  gap: 12px;
}
.feat li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 17px;
}
.feat li .ck {
  flex: none;
  width: 22px;
  height: 22px;
  background: var(--green);
  border: 2.5px solid var(--ink);
  display: grid;
  place-items: center;
  color: #fff5e8;
  font-weight: 900;
  font-size: 13px;
  transform: translateY(3px);
}
@media (max-width: 820px) {
  .buy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---------------- Play in browser (cobalt band) ---------------- */
.play-web {
  background: var(--cobalt);
  color: #fff5e8;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.play-web .sec-head .eyebrow {
  color: var(--gold);
}
.play-web .sec-head h2 {
  color: #fff5e8;
}
.pw-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.browser {
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 rgba(28, 23, 20, 0.45);
  overflow: hidden;
}
.browser-bar {
  height: 40px;
  background: var(--cream-2);
  border-bottom: 3px solid var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
}
.browser-bar .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--ink);
}
.browser-bar .url {
  flex: 1;
  margin-left: 12px;
  height: 20px;
  background: var(--paper);
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  text-transform: lowercase;
}
.browser-body {
  aspect-ratio: 16 / 10;
  background: var(--navy);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.browser-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.ph-screen {
  text-align: center;
  color: rgba(255, 245, 232, 0.85);
}
.ph-screen .cam {
  width: 56px;
  height: 56px;
  border: 3px solid currentColor;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}
.ph-screen .cam::after {
  content: "";
  width: 22px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 50%;
}
.ph-screen p {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  margin: 0;
}
.pw-info .chip {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  border: 3px solid var(--ink);
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.pw-info p {
  font-size: 18px;
  color: rgba(255, 245, 232, 0.9);
}
@media (max-width: 820px) {
  .pw-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ---------------- Download ---------------- */
.download {
  text-align: center;
}
.phones {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin: 48px auto 40px;
  max-width: 560px;
}
.phone-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.phone {
  width: 100%;
  max-width: 230px;
  border: 4px solid var(--ink);
  border-radius: 30px;
  background: var(--ink);
  padding: 10px;
  box-shadow: 10px 10px 0 rgba(28, 23, 20, 0.25);
}
.phone .scr {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  background: var(--navy);
  display: grid;
  place-items: center;
  position: relative;
}
.phone .scr .notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 16px;
  background: var(--ink);
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.stores-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
@media (max-width: 620px) {
  .store-badge {
    height: 40px;
  }
  .phones {
    gap: 18px;
  }
  .phone {
    max-width: 170px;
  }
  .hero-stores .lbl-or {
    flex-basis: 100%;
  }
}

/* ---------------- Footer ---------------- */
footer {
  background: var(--navy-dk);
  color: rgba(243, 236, 223, 0.7);
  border-top: 3px solid var(--ink);
  padding: 50px 0 40px;
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}
footer .brand .name {
  color: #fff5e8;
}
footer .f-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
}
footer .f-links a {
  white-space: nowrap;
}
footer .f-links a:hover {
  color: #fff5e8;
}
.foot-base {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(243, 236, 223, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}
.legal {
  max-width: 640px;
  line-height: 1.7;
  text-transform: none;
  letter-spacing: 0;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  opacity: 0.6;
}

/* ---------------- Print / PDF ---------------- */
@media print {
  @page {
    size: A4 portrait;
    margin: 12mm;
  }
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  html {
    scroll-behavior: auto;
  }
  header.nav {
    position: static;
    box-shadow: none;
  }
  .sec-pad {
    padding: 40px 0;
  }
  .hero-grid {
    padding: 32px 0 40px;
  }
  .wrap {
    max-width: 100%;
    padding: 0 6mm;
  }
  /* keep groups intact across pages */
  .deck-card,
  .step,
  .phone,
  .browser,
  .product,
  .burst {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .sec-head {
    break-after: avoid;
    page-break-after: avoid;
  }
  section {
    break-inside: avoid-page;
  }
  .hero h1 {
    text-shadow: 4px 4px 0 var(--cobalt);
  }
  /* soften huge shadows that waste ink */
  .btn,
  .store-btn,
  .product,
  .browser,
  .phone {
    box-shadow: 3px 3px 0 rgba(28, 23, 20, 0.5) !important;
  }
  a[href]:after {
    content: "";
  }
}
