:root {
  --cream: #fffaf0;
  --paper: #fffef9;
  --white: #ffffff;
  --navy: #0c2943;
  --navy-soft: #193a55;
  --orange: #ff8313;
  --orange-deep: #e96900;
  --yellow: #ffd863;
  --peach: #ffe4c6;
  --sky: #d9f3f6;
  --mint: #dff1d3;
  --line: rgba(12, 41, 67, 0.18);
  --shadow: 0 18px 50px rgba(12, 41, 67, 0.1);
  --radius: 30px;
  --font-display: "Trebuchet MS", "Avenir Next", Avenir, system-ui, sans-serif;
  --font-body: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 17%, rgba(255, 216, 99, 0.15), transparent 22rem),
    radial-gradient(circle at 91% 33%, rgba(217, 243, 246, 0.42), transparent 24rem),
    var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

::selection {
  color: var(--white);
  background: var(--orange);
}

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

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

img {
  max-width: 100%;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(12, 41, 67, 0.09);
  background: rgba(255, 250, 240, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner,
.header-inner nav,
.brand,
.hero-actions,
.principle-top,
.coming-links,
.footer-bottom {
  display: flex;
  align-items: center;
}

.header-inner {
  justify-content: space-between;
  gap: 24px;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  overflow: hidden;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 14px;
  background: var(--white);
  transform: rotate(-3deg);
  transition: transform 220ms ease;
}

.brand:hover .brand-mark {
  transform: rotate(3deg) scale(1.04);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand small {
  display: block;
  margin-top: 5px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.header-inner nav {
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
}

.header-inner nav a {
  position: relative;
}

.header-inner nav a:not(.nav-support)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.header-inner nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-support {
  padding: 9px 15px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--navy);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-support:hover {
  box-shadow: 1px 1px 0 var(--navy);
  transform: translate(2px, 2px);
}

.hero {
  display: grid;
  min-height: 710px;
  padding-block: 84px 92px;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(40px, 7vw, 96px);
}

.eyebrow,
.kicker {
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px 7px 4px 6px;
  background: var(--orange);
  transform: rotate(18deg);
}

.hero h1,
.section-heading h2,
.manifesto blockquote,
.coming h2,
.final-cta h2,
.legal-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.hero h1 {
  max-width: 690px;
  margin-top: 22px;
  font-size: clamp(66px, 7.6vw, 112px);
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-lede {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--navy-soft);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 12px 21px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 2px solid var(--navy);
  border-radius: 15px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  transition: box-shadow 170ms ease, transform 170ms ease, background 170ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 5px 5px 0 var(--orange);
}

.button-primary:hover {
  box-shadow: 2px 2px 0 var(--orange);
  transform: translate(3px, 3px);
}

.button-secondary {
  background: var(--white);
}

.button-secondary:hover {
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--navy);
  transform: translate(-2px, -2px);
}

.logo-playground {
  position: relative;
  display: grid;
  min-height: 535px;
  place-items: center;
  isolation: isolate;
  border: 2px solid var(--navy);
  border-radius: 44% 56% 51% 49% / 48% 44% 56% 52%;
  background: var(--peach);
  box-shadow: 13px 14px 0 var(--navy);
  transform: rotate(1deg);
}

.logo-playground::before {
  position: absolute;
  z-index: -1;
  width: 74%;
  height: 72%;
  border: 2px dashed rgba(12, 41, 67, 0.28);
  border-radius: 50%;
  content: "";
  animation: slow-spin 36s linear infinite;
}

.logo-paper {
  width: min(78%, 440px);
  overflow: hidden;
  border: 2px solid var(--navy);
  border-radius: 28px 32px 25px 34px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
  animation: logo-float 5.5s ease-in-out infinite;
}

.logo-paper img {
  display: block;
  width: 100%;
  height: auto;
}

.hello-chip {
  position: absolute;
  right: 3%;
  bottom: 10%;
  padding: 9px 18px 11px;
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 4px 4px 0 var(--navy);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  transform: rotate(8deg);
}

.orbit,
.spark {
  position: absolute;
}

.orbit {
  width: 30px;
  height: 13px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--yellow);
}

.orbit-one {
  top: 12%;
  left: 10%;
  transform: rotate(22deg);
}

.orbit-two {
  top: 17%;
  right: 10%;
  width: 15px;
  height: 34px;
  background: var(--sky);
  transform: rotate(-25deg);
}

.spark {
  color: var(--navy);
  font-size: 30px;
  font-weight: 900;
  animation: blink-pop 2.7s ease-in-out infinite;
}

.spark-one {
  bottom: 18%;
  left: 8%;
}

.spark-two {
  top: 46%;
  right: 5%;
  color: var(--orange);
  font-size: 15px;
  animation-delay: 900ms;
}

.entrance {
  opacity: 0;
  animation: enter-up 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.entrance-one { animation-delay: 80ms; }
.entrance-two { animation-delay: 160ms; }
.entrance-three { animation-delay: 260ms; }
.entrance-four { animation-delay: 360ms; }

.play-strip {
  position: relative;
  overflow: hidden;
  padding: 13px 0;
  color: var(--navy);
  border-block: 2px solid var(--navy);
  background: var(--orange);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transform: rotate(-0.6deg) scale(1.02);
}

.play-strip div {
  width: max-content;
  animation: marquee 24s linear infinite;
}

.play-strip span {
  display: inline-block;
  margin-inline: 18px;
  color: var(--cream);
  font-size: 12px;
  transform: translateY(-2px);
}

.section {
  padding-block: 126px;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(360px, 0.9fr) minmax(380px, 1.1fr);
  gap: 36px 80px;
}

.section-heading .kicker {
  grid-column: 1 / -1;
  margin: 0 0 -16px;
}

.section-heading h2 {
  font-size: clamp(52px, 6vw, 86px);
}

.section-heading > p:last-child {
  max-width: 580px;
  margin: 0 0 3px;
  color: var(--navy-soft);
  font-size: 19px;
}

.principle-grid {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.principle-card {
  min-height: 340px;
  padding: 24px 25px 30px;
  border: 2px solid var(--navy);
  border-radius: 26px;
  box-shadow: 6px 7px 0 var(--navy);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.principle-card:hover {
  box-shadow: 11px 13px 0 var(--navy);
  transform: translate(-4px, -6px) rotate(-1deg);
}

.card-1 { background: var(--yellow); }
.card-2 { background: var(--sky); transform: translateY(22px); }
.card-3 { background: var(--mint); }
.card-2:hover { transform: translate(-4px, 16px) rotate(1deg); }

.principle-top {
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--navy);
  font-weight: 900;
}

.principle-top b {
  font-size: 28px;
}

.principle-card h3 {
  margin: 54px 0 12px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.principle-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.manifesto-wrap {
  padding: 32px 0;
  background: var(--yellow);
  border-block: 2px solid var(--navy);
}

.manifesto {
  display: grid;
  min-height: 620px;
  padding-block: 68px;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 80px;
}

.manifesto blockquote {
  max-width: 780px;
  margin: 24px 0 34px;
  font-size: clamp(48px, 5.6vw, 78px);
}

.manifesto-note {
  max-width: 590px;
  margin: 0;
  padding-left: 25px;
  border-left: 4px solid var(--orange);
  font-size: 18px;
}

.elephant-window {
  position: relative;
  display: grid;
  aspect-ratio: 0.9;
  overflow: hidden;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 46% 54% 28px 28px;
  background: var(--cream);
  box-shadow: 10px 10px 0 var(--orange);
}

.elephant-window img {
  position: relative;
  z-index: 2;
  width: 78%;
  margin-top: -13%;
  mix-blend-mode: multiply;
}

.window-sun {
  position: absolute;
  top: 15%;
  right: 13%;
  width: 90px;
  height: 90px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--orange);
}

.window-caption {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 25px;
  left: 26px;
  padding-top: 18px;
  border-top: 2px solid var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.compact-heading {
  display: block;
}

.compact-heading .kicker {
  margin-bottom: 22px;
}

.process-list {
  margin-top: 68px;
  border-top: 2px solid var(--navy);
}

.process-row {
  display: grid;
  min-height: 130px;
  padding: 22px 15px;
  align-items: center;
  border-bottom: 2px solid var(--navy);
  grid-template-columns: 90px 0.75fr 1.4fr 60px;
  gap: 22px;
  transition: background 180ms ease, padding 180ms ease;
}

.process-row:hover {
  padding-inline: 25px;
  background: var(--peach);
}

.process-number {
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 900;
}

.process-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.05em;
}

.process-row p {
  margin: 0;
  color: var(--navy-soft);
  font-size: 17px;
}

.process-arrow {
  font-size: 30px;
  text-align: right;
  transition: transform 180ms ease;
}

.process-row:hover .process-arrow {
  transform: translate(4px, -4px);
}

.coming {
  padding-bottom: 125px;
}

.coming-card {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  padding: clamp(36px, 6vw, 76px);
  align-items: center;
  border: 2px solid var(--navy);
  border-radius: 40px;
  background: var(--sky);
  box-shadow: 12px 13px 0 var(--navy);
  grid-template-columns: minmax(310px, 0.8fr) minmax(380px, 1.2fr);
  gap: 70px;
}

.coming-doodle {
  position: relative;
  display: grid;
  width: min(100%, 380px);
  aspect-ratio: 1;
  place-items: center;
  border: 3px solid var(--navy);
  border-radius: 43% 57% 45% 55%;
  background: var(--white);
  transform: rotate(-4deg);
}

.coming-doodle span {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: clamp(130px, 17vw, 230px);
  font-weight: 900;
  line-height: 1;
  transform: rotate(8deg);
}

.coming-doodle i {
  position: absolute;
  top: 14%;
  left: 12%;
  width: 53px;
  height: 16px;
  border-radius: 50%;
  background: var(--yellow);
  transform: rotate(28deg);
}

.coming-doodle b {
  position: absolute;
  right: 9%;
  bottom: 12%;
  font-size: 48px;
  transform: rotate(-10deg);
}

.coming h2 {
  margin: 22px 0 27px;
  font-size: clamp(52px, 5.4vw, 80px);
}

.coming-copy > p:not(.kicker) {
  max-width: 590px;
  margin: 0;
  font-size: 19px;
}

.coming-links {
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 34px;
}

.store-pill {
  display: inline-flex;
  padding: 10px 15px;
  align-items: center;
  gap: 9px;
  border: 2px solid var(--navy);
  border-radius: 13px;
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.store-pill i {
  color: var(--orange);
  font-style: normal;
}

.coming-links a {
  border-bottom: 2px solid var(--navy);
  font-weight: 900;
}

.final-cta {
  padding-block: 40px 140px;
  text-align: center;
}

.final-cta h2 {
  margin: 25px auto 38px;
  font-size: clamp(54px, 7vw, 96px);
}

.final-cta .button {
  margin-inline: auto;
}

.final-squiggle {
  display: block;
  margin-bottom: -10px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 0.8;
  transform: rotate(-8deg);
}

.site-footer {
  color: var(--cream);
  background: var(--navy);
  border-top: 8px solid var(--orange);
}

.footer-main {
  display: grid;
  padding-block: 72px 65px;
  grid-template-columns: 1fr 1.45fr;
  gap: 70px;
}

.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1;
}

.footer-name span {
  color: var(--orange);
}

.footer-main > div:first-child p {
  margin: 23px 0 0;
  color: rgba(255, 250, 240, 0.66);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-links > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 250, 240, 0.8);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.footer-bottom {
  min-height: 70px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 250, 240, 0.18);
  color: rgba(255, 250, 240, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.legal-page {
  min-height: 70vh;
}

.legal-hero {
  max-width: 1000px;
  padding-top: 96px;
  padding-bottom: 68px;
}

.legal-hero .kicker {
  margin: 0 0 22px;
}

.legal-hero h1 {
  max-width: 880px;
  font-size: clamp(58px, 7.8vw, 104px);
}

.legal-hero > p:last-child {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--navy-soft);
  font-size: clamp(18px, 2vw, 22px);
}

.legal-body {
  max-width: 900px;
  padding-bottom: 120px;
}

.legal-body > section,
.legal-body > .support-callout,
.legal-body > .legal-note {
  margin-top: 22px;
  padding: 34px 38px;
  border: 2px solid var(--navy);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 5px 6px 0 var(--navy);
}

.legal-body > section:nth-of-type(3n + 1) { background: #fff5d7; }
.legal-body > section:nth-of-type(3n + 2) { background: #edf9fa; }
.legal-body > section:nth-of-type(3n + 3) { background: #f1f8ea; }

.legal-body h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.legal-body p,
.legal-body li {
  color: var(--navy-soft);
}

.legal-body p:last-child,
.legal-body ul:last-child,
.legal-body ol:last-child {
  margin-bottom: 0;
}

.legal-body a {
  color: var(--orange-deep);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-body .button {
  color: var(--white);
  text-decoration: none;
}

.legal-body li + li {
  margin-top: 7px;
}

.updated {
  margin: 0 0 34px;
  color: rgba(12, 41, 67, 0.6);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.support-callout {
  display: flex;
  margin-bottom: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--orange) !important;
}

.support-callout h2,
.support-callout p {
  color: var(--navy);
}

.support-callout p {
  margin: 8px 0 0;
}

.support-icon {
  float: left;
  margin: 1px 15px 0 0;
  font-size: 30px;
}

.legal-note {
  margin-bottom: 45px;
  background: var(--yellow) !important;
}

.legal-note strong {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-note p {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

@keyframes enter-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes logo-float {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-11px); }
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@keyframes blink-pop {
  0%, 100% { opacity: 0.55; transform: scale(0.75) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.1) rotate(14deg); }
}

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

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-block: 70px 90px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 700px;
  }

  .logo-playground {
    min-height: 580px;
  }

  .section-heading,
  .manifesto,
  .coming-card,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section-heading .kicker {
    margin-bottom: -10px;
  }

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

  .card-2 {
    transform: none;
  }

  .card-3 {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .manifesto {
    gap: 55px;
  }

  .elephant-window {
    width: min(100%, 520px);
    justify-self: center;
  }

  .coming-card {
    gap: 50px;
  }

  .coming-doodle {
    width: min(70vw, 390px);
    justify-self: center;
  }

  .footer-main {
    gap: 50px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    padding-block: 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand {
    font-size: 16px;
  }

  .brand small {
    font-size: 7px;
  }

  .header-inner nav {
    gap: 8px;
  }

  .header-inner nav > a:not(.nav-support) {
    display: none;
  }

  .nav-support {
    padding: 8px 12px;
  }

  .hero {
    padding-block: 56px 70px;
    gap: 60px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 80px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .logo-playground {
    min-height: 405px;
    border-radius: 38% 62% 45% 55% / 46% 42% 58% 54%;
    box-shadow: 8px 9px 0 var(--navy);
  }

  .hello-chip {
    right: -1%;
    font-size: 14px;
  }

  .play-strip {
    font-size: 15px;
  }

  .section {
    padding-block: 88px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading .kicker {
    margin-bottom: -4px;
  }

  .principle-grid {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }

  .principle-card,
  .card-3 {
    min-height: 300px;
    grid-column: auto;
  }

  .manifesto {
    min-height: auto;
    padding-block: 75px;
    grid-template-columns: 1fr;
  }

  .manifesto blockquote {
    font-size: 46px;
  }

  .process-row {
    padding-block: 24px;
    grid-template-columns: 42px 1fr 35px;
    gap: 12px;
  }

  .process-row p {
    margin-top: -8px;
    grid-column: 2 / -1;
  }

  .process-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .coming {
    padding-bottom: 90px;
  }

  .coming-card {
    min-height: auto;
    padding: 35px 25px 42px;
    border-radius: 28px;
    box-shadow: 7px 8px 0 var(--navy);
    grid-template-columns: 1fr;
  }

  .coming-doodle {
    width: 85%;
  }

  .coming-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta {
    padding-bottom: 100px;
  }

  .footer-main {
    padding-block: 56px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }

  .footer-bottom {
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .legal-hero {
    padding-top: 64px;
    padding-bottom: 45px;
  }

  .legal-hero h1 {
    font-size: 54px;
  }

  .legal-body {
    padding-bottom: 90px;
  }

  .legal-body > section,
  .legal-body > .support-callout,
  .legal-body > .legal-note {
    padding: 27px 23px;
  }

  .support-callout {
    align-items: stretch;
    flex-direction: column;
  }
}

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

  .entrance,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
