:root {
  --ink: #151515;
  --paper: #fffdf8;
  --coral: #ff5b35;
  --yellow: #ffd447;
  --blue: #3f69ff;
  --sky: #a8dfff;
  --lime: #c9f455;
  --red: #ff3d3d;
  --line: rgba(21, 21, 21, 0.18);
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
  --page-pad: clamp(20px, 4vw, 68px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::selection {
  color: var(--paper);
  background: var(--blue);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 74px;
  padding: 12px var(--page-pad);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, min-height 240ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(255, 253, 248, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  width: 27px;
  height: 27px;
  padding: 5px;
  background: var(--ink);
  border-radius: 50%;
}

.brand-mark i {
  display: block;
  width: 4px;
  background: var(--paper);
  border-radius: 4px;
}

.brand-mark i:nth-child(1) { height: 7px; }
.brand-mark i:nth-child(2) { height: 15px; }
.brand-mark i:nth-child(3) { height: 11px; }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 10px 15px;
  color: white;
  background: var(--ink);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  min-height: min(900px, 100svh);
  padding: 105px var(--page-pad) 54px;
  overflow: hidden;
  background-color: var(--coral);
  background-image: radial-gradient(rgba(21, 21, 21, 0.15) 1px, transparent 1px);
  background-size: 19px 19px;
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: -34vw;
  width: 68vw;
  height: 68vw;
  border: clamp(50px, 7vw, 100px) solid var(--yellow);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding-bottom: 15px;
}

.eyebrow,
.section-count {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 212, 71, 0.35);
  animation: ping 1.8s ease-out infinite;
}

.hero h1,
.intro h2,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(76px, 9.4vw, 152px);
}

.hero h1 em,
.intro h2 em,
.section-heading h2 em,
.final-cta h2 em {
  color: var(--paper);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-lede {
  max-width: 515px;
  margin: 32px 0 0;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.4;
}

.hero-actions,
.app-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 52px;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 5px 5px 0 var(--yellow);
  transform: translate(-2px, -2px);
}

.button-dark {
  color: white;
  background: var(--ink);
}

.text-link,
.web-button {
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.hero-stage {
  position: relative;
  z-index: 3;
  height: min(680px, 75vh);
  min-height: 560px;
  perspective: 1200px;
}

.phone {
  position: absolute;
  width: clamp(220px, 21vw, 300px);
  aspect-ratio: 0.5;
  padding: 10px;
  overflow: hidden;
  background: white;
  border: 3px solid var(--ink);
  border-radius: 31px;
  box-shadow: 11px 14px 0 rgba(21, 21, 21, 0.9);
  transition: transform 250ms ease-out;
  will-change: transform;
}

.phone-today {
  top: 12%;
  left: 12%;
  z-index: 2;
  transform: rotate(-8deg);
}

.phone-shop {
  right: 3%;
  bottom: 4%;
  transform: rotate(7deg);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 22px;
  padding: 0 8px;
  font-size: 7px;
  font-weight: 800;
}

.phone-top b {
  width: 50px;
  height: 14px;
  background: var(--ink);
  border-radius: 20px;
}

.mini-brand,
.shop-head {
  display: flex;
  align-items: center;
  height: 46px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
}

.mini-dot {
  width: 13px;
  height: 13px;
  margin-right: 6px;
  background: var(--coral);
  border-radius: 50% 50% 50% 3px;
}

.day-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin: 2px -2px 11px;
  border-bottom: 1px solid #ddd;
  text-align: center;
  font-size: 8px;
}

.day-tabs b,
.day-tabs strong {
  padding: 8px 2px;
}

.day-tabs strong {
  color: var(--coral);
  border-bottom: 2px solid var(--coral);
}

.social-post,
.product-post {
  margin: 0;
}

.social-post img,
.product-post img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  border-radius: 15px;
}

.social-post figcaption,
.product-post figcaption {
  display: flex;
  flex-direction: column;
  padding: 12px 5px;
  font-size: 10px;
}

.social-post figcaption span,
.product-post figcaption span {
  margin-bottom: 5px;
  font-size: 9px;
}

.social-post figcaption strong,
.product-post figcaption strong {
  font-size: 13px;
}

.social-post figcaption small {
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid #ddd;
}

.shop-head {
  justify-content: space-between;
}

.shop-head span {
  color: var(--blue);
}

.shop-head i {
  font-family: var(--body);
  font-style: normal;
}

.shop-stories {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.shop-stories i {
  width: 38px;
  height: 38px;
  background: var(--lime);
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.shop-stories i:nth-child(2) { background: var(--yellow); }
.shop-stories i:nth-child(3) { background: var(--coral); }
.shop-stories i:nth-child(4) { background: var(--sky); }

.product-post figcaption span {
  display: flex;
  justify-content: space-between;
}

.product-post figcaption small {
  margin: 4px 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.product-post figcaption del {
  color: #777;
  font-weight: 400;
}

.product-post button {
  padding: 8px;
  color: white;
  background: var(--blue);
  border: 0;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
}

.play-chip,
.score-pill {
  position: absolute;
  z-index: 5;
  padding: 9px 13px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.chip-one {
  top: 12%;
  right: 2%;
  background: var(--lime);
  transform: rotate(5deg);
}

.chip-two {
  right: 41%;
  bottom: 5%;
  background: var(--sky);
  transform: rotate(-7deg);
}

.signal,
.orbit {
  position: absolute;
  z-index: 1;
  border: 3px solid var(--ink);
}

.signal {
  width: 17px;
  height: 17px;
  background: var(--yellow);
  transform: rotate(45deg);
}

.signal-one { top: 18%; left: 43%; }
.signal-two { right: 6%; bottom: 19%; background: var(--sky); }
.signal-three { right: 41%; bottom: 10%; background: var(--lime); }

.orbit {
  border-radius: 50%;
}

.orbit-one { top: 16%; right: 4%; width: 150px; height: 150px; }
.orbit-two { right: 24%; bottom: 7%; width: 90px; height: 90px; border-style: dashed; }

.scroll-note {
  position: absolute;
  z-index: 4;
  right: var(--page-pad);
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-note span {
  width: 1px;
  height: 35px;
  background: var(--ink);
}

.ticker {
  padding: 15px 0;
  overflow: hidden;
  color: white;
  background: var(--ink);
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 29px);
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker div {
  display: flex;
  width: max-content;
  animation: ticker 20s linear infinite;
}

.ticker span,
.ticker i {
  padding: 0 22px;
  font-style: normal;
}

.ticker i { color: var(--yellow); }

.intro {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 40px 8vw;
  padding: clamp(90px, 11vw, 170px) var(--page-pad);
  background-color: var(--paper);
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 52px 52px;
}

.section-count {
  align-self: start;
  padding-top: 10px;
}

.intro h2,
.section-heading h2,
.final-cta h2 {
  font-size: clamp(58px, 8vw, 124px);
}

.intro h2 em,
.section-heading h2 em {
  color: var(--coral);
}

.intro-copy > p {
  max-width: 760px;
  margin: 38px 0 0 auto;
  font-size: clamp(19px, 2vw, 28px);
}

.principles {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
  border-top: 2px solid var(--ink);
}

.principles div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 22px 0 0;
}

.principles div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.principles strong {
  font-family: var(--display);
  font-size: 18px;
}

.principles span {
  color: #686868;
  font-size: 14px;
}

.experiences {
  background: var(--ink);
}

.section-heading {
  padding: clamp(80px, 10vw, 150px) var(--page-pad) 90px;
  color: white;
}

.section-heading h2 em {
  color: var(--yellow);
}

.section-heading > p:last-child {
  margin: 25px 0 0;
  color: #aaa;
  font-size: 20px;
}

.experience {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 780px;
  overflow: hidden;
}

.experience-copy,
.play-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 125px) var(--page-pad);
}

.app-label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 42px;
}

.app-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 2px solid var(--ink);
  border-radius: 11px;
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--display);
  font-size: 23px;
  font-weight: 800;
}

.app-label > span:last-child {
  display: flex;
  flex-direction: column;
}

.app-label b {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
}

.app-label small {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
}

.today-icon { background: var(--yellow); }
.shop-icon { color: white; background: var(--blue); }
.play-icon { background: var(--lime); }

.tagline {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.experience h3 {
  max-width: 650px;
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(43px, 5vw, 78px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.experience h3 em {
  font-family: Georgia, serif;
  font-weight: 400;
}

.experience-copy > p:not(.tagline, .rhythm-message),
.play-copy > p {
  max-width: 580px;
  margin: 0;
  font-size: 18px;
}

.experience-today {
  background: var(--sky);
}

.experience-today h3 em { color: var(--blue); }

.rhythm-picker {
  display: flex;
  width: fit-content;
  margin-top: 32px;
  border: 2px solid var(--ink);
  border-radius: 4px;
}

.rhythm-picker button {
  min-width: 90px;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.rhythm-picker button + button {
  border-left: 2px solid var(--ink);
}

.rhythm-picker button.is-active {
  color: white;
  background: var(--blue);
}

.rhythm-message {
  min-height: 24px;
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 17px;
  color: white;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 5px;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.store-button:hover,
.store-button:focus-visible {
  box-shadow: 5px 5px 0 rgba(21, 21, 21, 0.32);
  transform: translate(-2px, -2px);
}

.store-button > span {
  font-size: 24px;
}

.store-button small {
  display: flex;
  flex-direction: column;
  font-size: 8px;
  line-height: 1.15;
}

.store-button strong {
  font-family: var(--display);
  font-size: 16px;
}

.platform-note {
  margin-top: 12px;
  color: rgba(21, 21, 21, 0.65);
  font-size: 11px;
}

.today-visual {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background-color: var(--blue);
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 2px, transparent 2px);
  background-size: 28px 28px;
}

.moment {
  position: absolute;
  width: clamp(180px, 20vw, 300px);
  padding: 9px 9px 12px;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 9px 9px 0 var(--ink);
}

.moment img {
  width: 100%;
  aspect-ratio: 0.95;
  object-fit: cover;
}

.moment span {
  display: block;
  padding-top: 9px;
  font-size: 11px;
  font-weight: 800;
}

.moment-a { top: 8%; left: 8%; transform: rotate(-7deg); }
.moment-b { top: 24%; right: 6%; transform: rotate(6deg); }
.moment-c { right: 25%; bottom: 3%; transform: rotate(-2deg); }
.moment-c img { object-position: 75% center; }

.pulse-stamp {
  position: absolute;
  bottom: 10%;
  left: 6%;
  display: grid;
  place-items: center;
  width: 105px;
  height: 105px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transform: rotate(9deg);
}

.experience-shop {
  background: var(--lime);
}

.experience-shop h3 em { color: var(--red); }

.shop-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 7vw 0 7vw var(--page-pad);
  overflow: hidden;
  background-color: var(--red);
  background-image: linear-gradient(45deg, rgba(255,255,255,.08) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.08) 75%), linear-gradient(45deg, rgba(255,255,255,.08) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.08) 75%);
  background-position: 0 0, 16px 16px;
  background-size: 32px 32px;
}

.gallery-track {
  display: flex;
  gap: 24px;
  width: max-content;
  transition: transform 450ms cubic-bezier(.2, .8, .2, 1);
}

.gallery-track figure {
  width: min(38vw, 430px);
  margin: 0;
  padding: 12px;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}

.gallery-track img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
}

.gallery-track figcaption {
  display: flex;
  justify-content: space-between;
  padding: 13px 3px 2px;
  font-weight: 700;
}

.gallery-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
  color: white;
}

.gallery-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

.gallery-controls span {
  font-weight: 800;
}

.feature-list {
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.feature-list li::before {
  margin-right: 9px;
  content: "✓";
}

.experience-play {
  min-height: 820px;
  color: white;
  background-color: var(--ink);
  background-image: radial-gradient(#414141 1px, transparent 1px);
  background-size: 22px 22px;
}

.experience-play .app-icon {
  color: var(--ink);
  border-color: white;
  box-shadow: 3px 3px 0 var(--blue);
}

.experience-play h3 em { color: var(--lime); }

.coming-badge {
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-light {
  width: fit-content;
  margin-top: 34px;
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.playground {
  position: relative;
  min-height: 700px;
  margin: 50px var(--page-pad) 50px 0;
  border: 2px solid #555;
  overflow: hidden;
}

.playground::before,
.playground::after {
  position: absolute;
  border: 2px solid #555;
  border-radius: 50%;
  content: "";
}

.playground::before { top: 8%; left: 10%; width: 300px; height: 300px; }
.playground::after { right: -10%; bottom: -8%; width: 450px; height: 450px; }

.game-tile {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: clamp(190px, 22vw, 310px);
  aspect-ratio: 0.85;
  padding: 22px;
  color: var(--ink);
  border: 3px solid var(--paper);
  box-shadow: 12px 12px 0 var(--blue);
  transition: transform 220ms ease-out;
}

.game-tile small {
  font-weight: 800;
}

.game-tile strong {
  align-self: center;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1;
}

.game-tile span {
  font-weight: 800;
}

.tile-quiz {
  top: 8%;
  left: 7%;
  background: var(--yellow);
  transform: rotate(-6deg);
}

.tile-word {
  right: 6%;
  bottom: 7%;
  background: var(--lime);
  box-shadow: 12px 12px 0 var(--coral);
  transform: rotate(5deg);
}

.tile-word strong {
  font-size: clamp(32px, 4vw, 58px);
}

.score-pill {
  color: var(--ink);
}

.score-a {
  top: 12%;
  right: 5%;
  background: var(--coral);
  transform: rotate(4deg);
}

.score-b {
  bottom: 10%;
  left: 8%;
  background: var(--sky);
  transform: rotate(-5deg);
}

.final-cta {
  padding: clamp(100px, 13vw, 190px) var(--page-pad);
  background-color: var(--yellow);
  background-image: radial-gradient(rgba(21, 21, 21, 0.16) 1px, transparent 1px);
  background-size: 18px 18px;
}

.final-cta h2 em {
  color: var(--blue);
}

.cta-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.cta-links a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 18px;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease;
}

.cta-links a + a {
  border-left: 2px solid var(--ink);
}

.cta-links a:hover,
.cta-links a:focus-visible {
  color: white;
  background: var(--ink);
}

.cta-links span {
  font-family: var(--body);
  font-size: 10px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
  padding: 52px var(--page-pad);
  color: white;
  background: var(--ink);
}

.footer-brand .brand-mark {
  background: var(--paper);
}

.footer-brand .brand-mark i {
  background: var(--ink);
}

footer p {
  margin: 0;
  color: #999;
  font-size: 13px;
}

footer nav {
  display: flex;
  gap: 22px;
  font-size: 13px;
  font-weight: 700;
}

footer small {
  grid-column: 1 / -1;
  color: #777;
  font-size: 11px;
}

.legal-page {
  background: var(--paper);
}

.legal-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 12px var(--page-pad);
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}

.legal-header nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 26px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.legal-header nav a:not(.legal-home-link) {
  padding: 7px 0;
  border-bottom: 2px solid transparent;
}

.legal-header nav a.is-current {
  border-color: var(--ink);
}

.legal-home-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  padding: 9px 13px;
  color: white;
  background: var(--ink);
  border-radius: 3px;
}

.legal-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  min-height: 520px;
  padding: clamp(80px, 10vw, 135px) var(--page-pad) 62px;
  overflow: hidden;
  background-color: var(--yellow);
  background-image: radial-gradient(rgba(21, 21, 21, 0.17) 1px, transparent 1px);
  background-size: 19px 19px;
  border-bottom: 3px solid var(--ink);
}

.legal-terms .legal-hero {
  background-color: var(--sky);
}

.legal-hero::after {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 440px;
  height: 440px;
  border: 65px solid var(--coral);
  border-radius: 50%;
  content: "";
}

.legal-terms .legal-hero::after {
  border-color: var(--blue);
}

.legal-hero .eyebrow {
  position: absolute;
  top: 62px;
  left: var(--page-pad);
}

.legal-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(76px, 10vw, 150px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0;
}

.legal-hero h1 em {
  color: var(--coral);
  font-family: Georgia, serif;
  font-weight: 400;
}

.legal-terms .legal-hero h1 em {
  color: var(--blue);
}

.legal-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 44px;
  min-width: 330px;
  padding: 22px 0 8px 28px;
  border-top: 2px solid var(--ink);
}

.legal-meta p {
  margin: 0;
  font-size: 13px;
}

.legal-meta strong {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  gap: clamp(45px, 8vw, 130px);
  max-width: 1380px;
  margin: 0 auto;
  padding: clamp(75px, 9vw, 135px) var(--page-pad);
}

.legal-toc {
  position: sticky;
  top: 30px;
  display: flex;
  align-self: start;
  flex-direction: column;
  border-top: 3px solid var(--ink);
}

.legal-toc strong {
  padding: 18px 0 13px;
  font-family: var(--display);
  font-size: 15px;
}

.legal-toc a {
  padding: 8px 0;
  color: #626262;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  transition: color 150ms ease, padding-left 150ms ease;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  padding-left: 6px;
  color: var(--coral);
}

.legal-terms .legal-toc a:hover,
.legal-terms .legal-toc a:focus-visible {
  color: var(--blue);
}

.legal-content {
  width: 100%;
  max-width: 840px;
}

.legal-content section {
  position: relative;
  padding: 0 0 clamp(65px, 7vw, 100px) 72px;
  scroll-margin-top: 28px;
}

.legal-content section + section {
  padding-top: clamp(65px, 7vw, 100px);
  border-top: 1px solid var(--line);
}

.clause-number {
  position: absolute;
  top: 5px;
  left: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.legal-content section + section .clause-number {
  top: calc(clamp(65px, 7vw, 100px) + 5px);
}

.legal-content h2 {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.legal-content h3 {
  margin: 34px 0 10px;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0;
}

.legal-content p,
.legal-content li {
  color: #3f3f3f;
  font-size: 16px;
  line-height: 1.75;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--blue);
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.legal-callout {
  margin: 32px 0;
  padding: 25px 28px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.legal-terms .legal-callout {
  background: var(--lime);
}

.legal-callout strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 18px;
}

.legal-callout p {
  margin: 0;
  color: var(--ink);
}

.legal-content address {
  margin-top: 28px;
  padding: 22px;
  background: #f1efe9;
  border-left: 5px solid var(--coral);
  font-style: normal;
  line-height: 1.8;
}

.legal-terms .legal-content address {
  border-color: var(--blue);
}

.legal-footer {
  border-top: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .7, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(255, 212, 71, 0.7); }
  75%, 100% { box-shadow: 0 0 0 9px rgba(255, 212, 71, 0); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero-stage {
    height: 590px;
  }

  .phone {
    width: 230px;
  }

  .phone-today { left: 0; }
  .phone-shop { right: -3%; }

  .experience {
    min-height: 700px;
  }

  .experience-copy,
  .play-copy {
    padding: 72px 40px;
  }

  .app-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .game-tile {
    width: 230px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 20px;
  }

  .site-header {
    min-height: 64px;
  }

  .brand {
    font-size: 15px;
  }

  .nav-links {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .header-cta {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 11px;
    white-space: nowrap;
  }

  .hero {
    display: block;
    min-height: 900px;
    padding-top: 92px;
  }

  .hero::after {
    right: -46vw;
    bottom: -4vw;
    width: 112vw;
    height: 112vw;
    border-width: 55px;
  }

  .hero h1 {
    font-size: clamp(64px, 20vw, 88px);
  }

  .hero-lede {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.35;
  }

  .hero-actions {
    gap: 17px;
    margin-top: 20px;
  }

  .button {
    gap: 14px;
    min-height: 48px;
    padding: 10px 15px;
    font-size: 13px;
  }

  .text-link {
    font-size: 13px;
  }

  .hero-stage {
    height: 435px;
    min-height: 0;
    margin-top: 18px;
  }

  .phone {
    width: 175px;
    border-radius: 23px;
    box-shadow: 7px 8px 0 var(--ink);
  }

  .phone-today {
    top: 0;
    left: 4%;
  }

  .phone-shop {
    right: 0;
    bottom: -10%;
  }

  .phone-top b { width: 34px; height: 10px; }
  .mini-brand, .shop-head { height: 34px; font-size: 14px; }
  .shop-stories i { width: 27px; height: 27px; }
  .social-post figcaption strong, .product-post figcaption strong { font-size: 10px; }
  .social-post figcaption, .product-post figcaption { padding-top: 7px; }
  .chip-one { top: -2%; right: 0; }
  .chip-two { right: 47%; bottom: -3%; }
  .orbit-one { top: 1%; right: -10%; width: 90px; height: 90px; }
  .orbit-two { display: none; }
  .signal-one { top: 52%; left: 1%; }
  .scroll-note { display: none; }

  .intro {
    display: block;
    padding-top: 95px;
    padding-bottom: 95px;
    background-size: 38px 38px;
  }

  .intro h2,
  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(51px, 15vw, 72px);
  }

  .intro-copy > p {
    margin-top: 30px;
    font-size: 18px;
  }

  .principles {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .principles div,
  .principles div + div {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading {
    padding-top: 92px;
    padding-bottom: 65px;
  }

  .experience {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .experience-copy,
  .play-copy {
    padding: 72px var(--page-pad);
  }

  .app-label {
    margin-bottom: 32px;
  }

  .experience h3 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .experience-copy > p:not(.tagline, .rhythm-message),
  .play-copy > p {
    font-size: 16px;
  }

  .app-actions {
    margin-top: 28px;
  }

  .today-visual {
    grid-row: 1;
    min-height: 520px;
  }

  .moment {
    width: 175px;
  }

  .moment-a { left: 4%; }
  .moment-b { top: 18%; right: 3%; }
  .moment-c { right: 26%; bottom: 1%; }
  .pulse-stamp { bottom: 7%; width: 78px; height: 78px; font-size: 10px; }

  .shop-gallery {
    min-height: 520px;
    padding: 70px 0 55px var(--page-pad);
  }

  .gallery-track figure {
    width: 76vw;
  }

  .experience-shop .experience-copy {
    grid-row: 1;
  }

  .playground {
    min-height: 540px;
    margin: 0;
    border-right: 0;
    border-left: 0;
  }

  .game-tile {
    width: 195px;
  }

  .tile-quiz { top: 8%; left: 4%; }
  .tile-word { right: 4%; bottom: 6%; }

  .final-cta {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cta-links {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .cta-links a {
    min-height: 75px;
  }

  .cta-links a + a {
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 45px;
    padding-bottom: 45px;
  }

  footer small {
    grid-column: 1;
  }

  .legal-header {
    min-height: 64px;
    gap: 12px;
  }

  .legal-header nav {
    gap: 14px;
    font-size: 11px;
  }

  .legal-header nav a:not(.legal-home-link) {
    display: none;
  }

  .legal-home-link {
    width: 36px;
    height: 36px;
    padding: 0;
    justify-content: center;
    font-size: 17px;
  }

  .legal-home-text {
    display: none;
  }

  .legal-hero {
    display: block;
    min-height: 485px;
    padding-top: 125px;
    padding-bottom: 38px;
  }

  .legal-hero::after {
    top: -90px;
    right: -110px;
    width: 270px;
    height: 270px;
    border-width: 40px;
  }

  .legal-hero .eyebrow {
    top: 36px;
  }

  .legal-hero h1 {
    font-size: clamp(63px, 20vw, 84px);
  }

  .legal-meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    min-width: 0;
    margin-top: 54px;
    padding: 17px 0 0;
  }

  .legal-layout {
    display: block;
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .legal-toc {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 70px;
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }

  .legal-toc a {
    padding-right: 8px;
  }

  .legal-content section,
  .legal-content section + section {
    padding-left: 0;
  }

  .legal-content section {
    padding-bottom: 65px;
  }

  .legal-content section + section {
    padding-top: 65px;
  }

  .clause-number,
  .legal-content section + section .clause-number {
    position: static;
    width: 36px;
    height: 36px;
    margin-bottom: 17px;
  }

  .legal-content h2 {
    margin-bottom: 22px;
    font-size: 34px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
  }

  .legal-callout {
    padding: 21px;
    box-shadow: 4px 4px 0 var(--ink);
  }
}

@media (max-width: 390px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    min-height: 900px;
  }

  .rhythm-picker {
    width: 100%;
  }

  .rhythm-picker button {
    min-width: 0;
    flex: 1;
    padding-right: 5px;
    padding-left: 5px;
    font-size: 10px;
  }

  .game-tile {
    width: 168px;
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}