:root {
  --black: #000000;
  --panel: #101010;
  --panel-soft: #171717;
  --line: #333333;
  --text: #f4f4f4;
  --muted: #a6a6aa;
  --white: #ffffff;
  --pink: #ff6aa2;
  --green: #09b500;
  --blue: #1b57ff;
  --yellow: #ffb11f;
  --cyan: #8ee8f0;
  --radius: 8px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.announcement {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  padding: 1.05rem 1rem;
  text-align: center;
}

.site-header {
  align-items: center;
  background: rgba(23, 23, 23, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
  display: flex;
  gap: 1.4rem;
  justify-content: space-between;
  left: 50%;
  max-width: 760px;
  min-height: 58px;
  padding: 0.45rem 0.5rem 0.45rem 1rem;
  position: fixed;
  top: 3.9rem;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  z-index: 30;
  backdrop-filter: blur(16px);
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.25rem;
  font-weight: 900;
  gap: 0.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand-mark {
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--black);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 0.25rem;
  justify-content: flex-end;
}

.desktop-nav a {
  border-radius: 999px;
  color: #dedee2;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.85rem 0.95rem;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: var(--white);
  color: var(--black);
  outline: 0;
}

.hero {
  display: grid;
  isolation: isolate;
  min-height: 820px;
  overflow: hidden;
  padding: 7rem 1.25rem 7rem;
  place-items: center;
  position: relative;
}

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

.hero::before {
  background:
    linear-gradient(90deg, transparent 0, transparent 84px, rgba(255, 255, 255, 0.08) 85px),
    linear-gradient(0deg, transparent 0, transparent 84px, rgba(255, 255, 255, 0.08) 85px);
  background-size: 86px 86px;
  inset: 0;
  opacity: 0.4;
}

.hero::after {
  background: linear-gradient(180deg, transparent 68%, var(--black) 100%);
  inset: 0;
  z-index: -1;
}

.hero-media {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.curation-sheet,
.note-slip {
  display: none;
}

.hero .curation-sheet,
.hero .note-slip {
  display: none !important;
}

.desk-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  position: absolute;
}

.curation-sheet {
  background:
    linear-gradient(135deg, rgba(255, 106, 162, 0.44), transparent 46%),
    linear-gradient(160deg, #242424, #111111 58%, #050505);
  display: grid;
  gap: 1.05rem;
  left: 5.5rem;
  min-height: 260px;
  padding: 1.35rem;
  top: 7.2rem;
  transform: rotate(-8deg);
  width: 210px;
}

.curation-sheet::after {
  background: var(--white);
  content: "";
  height: 46%;
  position: absolute;
  right: -16%;
  top: 18%;
  transform: rotate(18deg);
  width: 72%;
}

.curation-sheet span {
  background: rgba(255, 255, 255, 0.28);
  display: block;
  height: 9px;
  position: relative;
  z-index: 1;
}

.curation-sheet span:nth-child(3) {
  width: 70%;
}

.curation-sheet span:nth-child(4) {
  width: 52%;
}

.curation-sheet span:nth-child(5) {
  width: 82%;
}

.sheet-mark {
  background: var(--pink) !important;
  height: 74px !important;
  width: 46% !important;
}

.note-slip {
  background:
    linear-gradient(155deg, rgba(9, 181, 0, 0.9), rgba(9, 181, 0, 0.55) 50%, #0e0e0e 51%),
    var(--panel);
  bottom: 12.5rem;
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem;
  right: 8rem;
  transform: rotate(7deg);
  width: 174px;
}

.note-slip span {
  background: rgba(255, 255, 255, 0.66);
  display: block;
  height: 10px;
}

.note-slip span:nth-child(1) {
  background: var(--yellow);
  height: 58px;
  width: 58%;
}

.note-slip span:nth-child(2) {
  width: 84%;
}

.note-slip span:nth-child(3) {
  width: 62%;
}

.desk-card {
  background: var(--blue);
  bottom: 6rem;
  color: var(--white);
  left: 14rem;
  max-width: 300px;
  padding: 1.35rem;
  transform: rotate(4deg);
}

.desk-card::before {
  background: rgba(255, 255, 255, 0.16);
  content: "";
  height: 160%;
  left: 38%;
  position: absolute;
  top: -30%;
  transform: rotate(16deg);
  width: 24%;
}

.desk-card p,
.desk-card strong {
  position: relative;
}

.desk-card p {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  margin: 0 0 0.55rem;
  text-transform: uppercase;
}

.desk-card strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.12;
}

.hero-copy {
  margin: 0 auto;
  max-width: 1000px;
  padding-top: 3.25rem;
  text-align: center;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy > p:not(.eyebrow),
.hero-actions {
  animation: fade-up 760ms ease both;
}

.hero-copy h1 {
  animation-delay: 90ms;
}

.hero-copy > p:not(.eyebrow) {
  animation-delay: 170ms;
}

.hero-actions {
  animation-delay: 250ms;
}

.eyebrow {
  color: var(--pink);
  font-size: 0.86rem;
  font-weight: 900;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  line-height: 0.96;
}

h1 {
  color: var(--white);
  font-size: 5.9rem;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.hero-copy > p:not(.eyebrow) {
  color: #d6d6dc;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
  max-width: 660px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.8rem;
}

.primary-link,
.secondary-link,
.bundle-button,
.newsletter button {
  align-items: center;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  min-height: 52px;
  padding: 1rem 1.35rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-link,
.bundle-button,
.newsletter button {
  background: var(--pink);
  border: 1px solid var(--pink);
  color: var(--black);
}

.secondary-link {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.primary-link.dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.primary-link:hover,
.secondary-link:hover,
.bundle-button:hover,
.newsletter button:hover,
.primary-link:focus-visible,
.secondary-link:focus-visible,
.bundle-button:focus-visible,
.newsletter button:focus-visible {
  outline: 0;
  transform: translateY(-3px);
}

.bundle-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.secondary-link:hover,
.secondary-link:focus-visible {
  background: var(--white);
  color: var(--black);
}

.marquee {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--white);
  overflow: hidden;
  padding: 1.35rem 0;
}

.marquee div {
  align-items: center;
  animation: marquee-scroll 26s linear infinite;
  display: flex;
  gap: 3rem;
  justify-content: flex-start;
  min-width: max-content;
  padding-left: max(1.25rem, calc((100vw - 1180px) / 2));
  width: max-content;
}

.marquee span {
  color: var(--muted);
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.marquee div::after {
  color: var(--muted);
  content: "Attention recovery   Behavioral psychology systems   Instant digital access   Research-based content   Works for all skill levels";
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  word-spacing: 3rem;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 6rem 1.25rem;
}

.section-heading {
  align-items: end;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-top: 1.35rem;
}

.section-heading h2,
.feature-band h2 {
  color: var(--white);
  font-size: 4.25rem;
  line-height: 0.98;
  margin-bottom: 0;
  max-width: 900px;
  text-wrap: balance;
}

.video-grid,
.product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-grid {
  grid-template-columns: minmax(280px, 520px);
  justify-content: center;
}

.video-card,
.product-card,
details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-card,
.product-card,
details,
.bundle-panel,
.feature-band,
.discord-band {
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.video-card:hover,
.product-card:hover,
details:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.video-frame {
  align-items: center;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, var(--cyan) 0 32%, #d6ddff 32% 64%, #f4f4f4 64% 100%);
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  min-height: 250px;
  position: relative;
  width: 100%;
}

.video-frame::before,
.video-frame::after {
  content: "";
  position: absolute;
}

.video-frame::before {
  background: rgba(0, 0, 0, 0.22);
  height: 66%;
  left: 12%;
  top: 17%;
  transform: rotate(-8deg);
  width: 60%;
}

.video-frame::after {
  background: var(--white);
  bottom: 16%;
  height: 18%;
  right: 12%;
  transform: rotate(7deg);
  width: 38%;
}

.video-card:nth-child(2) .video-frame {
  background: linear-gradient(135deg, #fd86b5 0 38%, #201f26 38% 70%, #f4f4f4 70% 100%);
}

.video-card:nth-child(3) .video-frame {
  background: linear-gradient(135deg, #2b61ff 0 34%, #87e9f3 34% 68%, #151515 68% 100%);
}

.play-icon {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  height: 70px;
  position: relative;
  width: 70px;
  z-index: 1;
}

.play-icon::after {
  border-bottom: 12px solid transparent;
  border-left: 20px solid var(--white);
  border-top: 12px solid transparent;
  content: "";
  left: 28px;
  position: absolute;
  top: 22px;
}

.video-info,
.product-info {
  padding: 1.2rem;
}

.video-info p,
.product-type {
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.video-info h3,
.product-info h3,
.bundle-panel h3 {
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.18;
  margin-bottom: 0;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-image {
  align-items: center;
  aspect-ratio: 4 / 5;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  overflow: hidden;
  padding: 2rem 1.25rem;
  position: relative;
  text-align: center;
  width: 100%;
}

.product-image::before {
  border: 1px solid rgba(255, 255, 255, 0.62);
  content: "";
  inset: 1rem;
  position: absolute;
}

.product-image::after {
  background: rgba(255, 255, 255, 0.22);
  content: "";
  height: 126%;
  left: 22%;
  position: absolute;
  top: -13%;
  transform: rotate(11deg);
  width: 20%;
}

.product-image.book-cover {
  aspect-ratio: 1 / 1;
  background: var(--panel);
  min-height: 0;
  padding: 0;
}

.product-image.book-cover::before,
.product-image.book-cover::after {
  display: none;
}

.product-image.book-cover img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-image strong,
.product-image small,
.product-image span {
  position: relative;
  z-index: 1;
}

.product-image strong {
  font-size: 2.55rem;
  font-weight: 900;
  line-height: 0.96;
  max-width: 10ch;
}

.product-image small,
.cover-kicker {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cover-navy {
  background: linear-gradient(135deg, #101010 0 44%, var(--blue) 44% 100%);
}

.cover-green {
  background: linear-gradient(135deg, var(--green) 0 48%, #111111 48% 100%);
}

.cover-red {
  background: linear-gradient(135deg, var(--pink) 0 42%, #5f1631 42% 68%, #111111 68% 100%);
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-description,
.feature-band p,
.faq-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.68;
}

.bundle-panel {
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  color: var(--black);
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr auto auto;
  margin-top: 1rem;
  padding: 1.2rem;
}

.bundle-panel .product-type,
.bundle-panel h3 {
  color: var(--black);
}

.bundle-price {
  align-items: baseline;
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
}

.old-price {
  color: #8c8c8c;
  font-size: 1.35rem;
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.new-price {
  color: var(--black);
  font-size: 2.35rem;
  font-weight: 900;
}

.feature-band {
  align-items: center;
  background: var(--black);
  color: var(--white);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
  padding: 5.8rem 5rem;
}

.feature-band .eyebrow,
.feature-band h2,
.feature-band p {
  color: var(--white);
}

.feature-band p {
  max-width: 690px;
}

.thank-you-hero {
  align-items: center;
  background: var(--black);
  display: grid;
  min-height: 680px;
  padding: 11rem 1.25rem 5rem;
  text-align: center;
}

.thank-you-hero > div {
  margin: 0 auto;
  max-width: 860px;
}

.thank-you-hero h1 {
  font-size: 5rem;
  margin-bottom: 1.2rem;
}

.thank-you-hero p:not(.eyebrow) {
  color: #d6d6dc;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}

.download-button {
  margin-top: 1.4rem;
  min-width: min(100%, 260px);
}

.auto-download-link {
  display: none;
}

.discord-band {
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 4.8rem 5rem;
}

.discord-band h2 {
  color: var(--black);
  font-size: 3.65rem;
  font-weight: 900;
  line-height: 0.98;
  margin-bottom: 1rem;
  max-width: 880px;
  text-wrap: balance;
}

.discord-band .eyebrow {
  color: var(--black);
}

.discord-band p:not(.eyebrow) {
  color: var(--black);
  line-height: 1.68;
  margin-bottom: 0;
  max-width: 680px;
}

.discord-button {
  align-items: center;
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 999px;
  color: var(--white);
  gap: 0.9rem;
  display: inline-flex;
  font-size: 1.28rem;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  min-height: 74px;
  min-width: 320px;
  padding: 1.15rem 1.8rem;
  transition: background 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.discord-icon {
  display: block;
  fill: currentColor;
  flex: 0 0 auto;
  height: 2.25rem;
  width: 2.25rem;
}

.discord-button:hover,
.discord-button:focus-visible {
  background: var(--panel);
  outline: 0;
  transform: translateY(-3px);
}

.thank-you-community {
  margin-top: 0;
}

.faq-section {
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.85fr 1.15fr;
}

.faq-section .section-heading {
  align-self: start;
  display: block;
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  padding: 1.1rem 1.2rem;
}

summary {
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 1rem 0 0;
}

.site-footer {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
  padding: 3rem 2rem;
}

.site-footer p {
  margin: 1rem 0 0;
  max-width: 430px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.legal-links a {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 900;
  justify-content: center;
  min-height: 40px;
  padding: 0.7rem 1rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  background: var(--white);
  color: var(--black);
  outline: 0;
  transform: translateY(-2px);
}

.newsletter {
  min-width: min(420px, 100%);
}

.newsletter label {
  color: var(--white);
  display: block;
  font-weight: 900;
  margin-bottom: 0.8rem;
}

.newsletter div {
  display: flex;
  gap: 0.65rem;
}

.newsletter input {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  min-height: 52px;
  outline: 0;
  padding: 0 1rem;
  width: 100%;
}

.newsletter input:focus {
  border-color: var(--pink);
}

.toast {
  background: var(--white);
  border-radius: 999px;
  bottom: 1.2rem;
  color: var(--black);
  font-weight: 900;
  left: 50%;
  opacity: 0;
  padding: 0.9rem 1.2rem;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 16px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 70;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: opacity 680ms ease, transform 680ms ease;
}

.js-reveal .reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
}

.js-reveal .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.video-card.reveal-on-scroll.is-visible:hover,
.product-card.reveal-on-scroll.is-visible:hover,
details.reveal-on-scroll.is-visible:hover {
  transform: translateY(-4px);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  bottom: 1rem;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.32);
  color: var(--black);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto;
  left: 1rem;
  max-width: 760px;
  padding: 1rem;
  position: fixed;
  right: 1rem;
  z-index: 80;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner p {
  line-height: 1.5;
  margin: 0;
}

.cookie-banner button {
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  min-height: 46px;
  padding: 0.8rem 1.1rem;
}

.policy-body {
  background: var(--black);
  color: var(--white);
}

.policy-shell {
  margin: 0 auto;
  max-width: 1040px;
  padding: 3rem 1.25rem 5rem;
}

.policy-back {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  min-height: 44px;
  padding: 0.75rem 1rem;
}

.policy-document {
  background: var(--white);
  border-radius: var(--radius);
  color: var(--black);
  margin-top: 2rem;
  padding: 3rem;
}

.policy-document h1 {
  color: var(--black);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 2rem;
}

.policy-document pre {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  margin: 0;
  white-space: pre-wrap;
}

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

  .marquee div {
    animation: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 4.7rem;
  }

  .section-heading h2,
  .feature-band h2 {
    font-size: 3.45rem;
  }

  .curation-sheet {
    left: 1.5rem;
  }

  .desk-card {
    left: 2.5rem;
  }

  .note-slip {
    right: 2.5rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: stretch;
    border-radius: var(--radius);
    flex-direction: column;
    gap: 0.6rem;
    left: 1rem;
    min-height: 0;
    top: 4.25rem;
    transform: none;
    width: calc(100% - 2rem);
  }

  .desktop-nav {
    justify-content: space-between;
    width: 100%;
  }

  .desktop-nav a {
    flex: 1;
    text-align: center;
  }

  .hero {
    min-height: 760px;
    padding-top: 12rem;
  }

  h1 {
    font-size: 3.75rem;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .curation-sheet {
    top: 9rem;
    width: 170px;
  }

  .note-slip {
    bottom: 7rem;
    width: 150px;
  }

  .desk-card {
    bottom: 3.8rem;
    max-width: 250px;
  }

  .video-grid,
  .product-grid,
  .faq-section,
  .feature-band,
  .discord-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-band {
    align-items: start;
    padding: 4rem 1.25rem;
  }

  .discord-band {
    align-items: center;
    padding: 4rem 1.25rem;
  }

  .thank-you-hero h1 {
    font-size: 3.7rem;
  }

  .bundle-panel {
    align-items: start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  html,
  body {
    inline-size: 100%;
    overflow-x: clip;
  }

  body {
    min-inline-size: 0;
  }

  main {
    max-width: 100vw;
    min-width: 0;
    overflow-x: clip;
  }

  .announcement {
    font-size: 0.82rem;
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 19rem);
    overflow-wrap: anywhere;
    width: 100%;
  }

  .site-header {
    left: 50%;
    max-width: 19rem;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
  }

  .hero,
  .marquee,
  .section,
  .thank-you-hero,
  .feature-band,
  .discord-band,
  .site-footer {
    max-width: 100%;
    overflow-x: clip;
    overflow-y: visible;
    width: auto;
  }

  main,
  .section-heading,
  .feature-band > div,
  .discord-band > div,
  .product-card,
  .product-info,
  .bundle-panel > div,
  .faq-list,
  .site-footer > div {
    min-width: 0;
  }

  .section-heading,
  .feature-band > div,
  .thank-you-hero > div,
  .discord-band > div,
  .product-grid,
  .video-grid,
  .faq-list,
  .site-footer > div {
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 19rem);
    width: 100%;
  }

  .product-card,
  .video-card,
  .bundle-panel,
  .faq-list details {
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 19rem);
    width: 100%;
  }

  h1,
  h2,
  h3,
  p,
  summary,
  .product-description {
    overflow-wrap: anywhere;
    text-wrap: auto;
  }

  .brand {
    font-size: 1rem;
  }

  .desktop-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .desktop-nav a {
    padding: 0.8rem 0.6rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 13.25rem 1rem 4rem;
    place-items: stretch;
  }

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
    max-width: 20rem;
    order: 1;
    padding-top: 1.8rem;
    position: relative;
    width: 100%;
    z-index: 2;
  }

  h1 {
    font-size: clamp(2.05rem, 9.8vw, 2.4rem);
    line-height: 1.02;
    margin-left: auto;
    margin-right: auto;
    max-width: 19rem;
    text-wrap: auto;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 18.5rem;
  }

  .hero-actions {
    margin-left: auto;
    margin-right: auto;
    max-width: 18.5rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .marquee div {
    justify-content: flex-start;
    min-width: 0;
    width: max-content;
  }

  .hero-media {
    display: none;
  }

  .curation-sheet {
    left: -0.8rem;
    min-height: 170px;
    top: 1rem;
    width: 135px;
  }

  .note-slip {
    bottom: auto;
    right: -0.8rem;
    top: 1.65rem;
    width: 130px;
  }

  .desk-card {
    bottom: 0.4rem;
    left: 4.2rem;
    max-width: 210px;
  }

  .section {
    padding: 4rem 1rem;
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .section-heading h2,
  .feature-band h2,
  .thank-you-hero h1,
  .discord-band h2 {
    font-size: clamp(1.9rem, 8.1vw, 2.08rem);
    max-width: 100%;
  }

  .thank-you-hero {
    min-height: auto;
    padding: 12.5rem 1rem 4rem;
  }

  .feature-band,
  .discord-band {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .feature-band p,
  .discord-band p:not(.eyebrow) {
    max-width: 100%;
  }

  .discord-button {
    min-width: min(100%, 320px);
    width: auto;
  }

  .product-image,
  .video-frame {
    min-height: 288px;
  }

  .product-info,
  .video-info {
    padding: 1rem;
  }

  .product-image strong {
    font-size: 2.1rem;
  }

  .newsletter div {
    flex-direction: column;
  }

  .site-footer {
    padding: 2.2rem 1rem;
  }

  .cookie-banner {
    bottom: 0.75rem;
    grid-template-columns: 1fr;
    left: 50%;
    max-height: calc(100vh - 1.5rem);
    max-width: 19rem;
    overflow: auto;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
  }

  .cookie-banner button {
    width: 100%;
  }

  .legal-links a {
    width: 100%;
  }

  .policy-shell {
    padding: 1.5rem 1rem 3rem;
  }

  .policy-document {
    padding: 1.5rem;
  }

  .policy-document h1 {
    font-size: 2.35rem;
  }
}
