@font-face {
  font-family: "Wheeler Display";
  src: url("fonts/wheeler-display.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Wheeler Body";
  src: url("fonts/wheeler-body.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Wheeler Body";
  src: url("fonts/wheeler-body-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #080719;
  --navy: #0d0b2c;
  --violet: #271350;
  --cream: #f6eedb;
  --paper: #fff8e9;
  --yellow: #ffb800;
  --acid: #d9ff35;
  --cyan: #24d9e8;
  --muted: #b9b2ca;
  --line: rgba(246, 238, 219, 0.2);
  --max: 1200px;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--cream);
  font-family: "Wheeler Body", system-ui, sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.26'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  transform: translateY(-180%);
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  padding-block: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-header.is-stuck {
  position: fixed;
  width: 100%;
  padding: 0.75rem max(1.5rem, calc((100% - var(--max)) / 2));
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(8, 7, 25, 0.9);
  backdrop-filter: blur(16px);
  animation: header-drop 240ms ease both;
}

.wordmark {
  display: inline-flex;
  gap: 0.24em;
  align-items: baseline;
  color: var(--cream);
  font-family: "Wheeler Display", Impact, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 0.8;
  letter-spacing: -0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.wordmark strong {
  color: var(--yellow);
  font-weight: inherit;
}

.wordmark-image {
  display: inline-block;
  line-height: 0;
  transform: none;
}

.brand-logo-art {
  display: block;
  width: 220px;
}

.brand-logo-art img {
  width: 100%;
  height: auto;
}

.site-header.is-stuck .brand-logo-art {
  width: 142px;
}

.site-header nav,
.site-footer nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
}

.site-header nav a {
  color: rgba(255, 248, 233, 0.8);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a:hover {
  color: var(--acid);
}

.site-header .nav-cta {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background-image: url("images/hero-cass-v3.jpg");
  background-position: 48% center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 24%;
  content: "";
  background: linear-gradient(transparent, var(--ink));
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 7, 25, 0.02) 0%, rgba(8, 7, 25, 0.12) 43%, rgba(8, 7, 25, 0.88) 72%, rgba(8, 7, 25, 0.98) 100%),
    linear-gradient(0deg, rgba(8, 7, 25, 0.3), transparent 45%);
}

.hero-copy {
  align-self: center;
  width: min(100% - 3rem, var(--max));
  margin: 4.75rem auto 2rem;
  padding-left: min(58%, 700px);
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-rise 680ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.hero-copy > :nth-child(2) { animation-delay: 100ms; }
.hero-copy > :nth-child(3) { animation-delay: 190ms; }
.hero-copy > :nth-child(4) { animation-delay: 280ms; }

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Wheeler Display", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(4rem, 7vw, 7.4rem);
  line-height: 0.77;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.28);
}

h1 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-lede {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: rgba(255, 248, 233, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hero-actions.store-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  align-items: start;
}

.hero-store-badges {
  margin: 0;
}

.hero-store-badges .store-badge img {
  height: 54px;
}

.hero-store-badges .store-badge:nth-child(2) img {
  height: 80px;
  margin: -13px;
}

.hero-store-badges .store-badge.is-pending {
  opacity: 0.96;
}

.hero-actions.store-cta .text-link {
  grid-column: 1;
  grid-row: 3;
  width: max-content;
  padding-block: 0.35rem;
}

.hero-store-status {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  color: rgba(255, 248, 233, 0.62);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  border-color: var(--yellow);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--cream);
  color: var(--ink);
}

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

.text-link {
  min-height: 48px;
  padding-block: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--acid);
}

.hero-note {
  position: absolute;
  right: max(1.5rem, calc((100% - var(--max)) / 2));
  bottom: 1.25rem;
  margin: 0;
  color: rgba(255, 248, 233, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--yellow);
  color: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  padding: 0.72rem 0;
  gap: 1.25rem;
  font-family: "Wheeler Display", Impact, sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  animation: ticker-move 24s linear infinite;
}

.ticker-track b {
  color: var(--violet);
}

.loop-section,
.feature-section {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  padding-block: clamp(6rem, 11vw, 10rem);
}

.section-intro {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  column-gap: 3rem;
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
}

.section-intro h2,
.feature-heading h2,
.store-copy h2,
.daily-copy h2 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.84;
}

.section-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.trade-loop {
  position: relative;
}

.loop-step {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 110px minmax(0, 470px);
  gap: 2rem;
  min-height: 320px;
  align-items: start;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}

.loop-step:nth-of-type(even) {
  margin-left: 50%;
}

.step-number {
  color: var(--yellow);
  font-family: "Wheeler Display", Impact, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.step-verb {
  margin-bottom: 0.5rem;
  color: var(--acid);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.loop-step h3,
.feature-line h3 {
  margin-bottom: 1rem;
  font-family: "Wheeler Display", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.loop-step p:last-child {
  max-width: 34rem;
  color: var(--muted);
}

.loop-car {
  position: absolute;
  z-index: 1;
  width: min(42vw, 520px);
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.46));
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 420ms ease;
}

.loop-car:hover {
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.5));
  transform: translateY(-10px) rotate(-2deg) scale(1.03);
}

.car-one { top: 3%; right: 0; transform: rotate(3deg); }
.car-two { top: 36%; left: 0; transform: rotate(-5deg); }
.car-three { right: 0; bottom: 0; transform: rotate(4deg); }

.daily-section {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #10102f;
}

.daily-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("images/daily-deal.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.daily-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(8, 7, 25, 0.98) 0%, rgba(8, 7, 25, 0.88) 42%, rgba(8, 7, 25, 0.18) 78%);
}

.daily-copy {
  width: min(100% - 3rem, var(--max));
  padding-right: 54%;
}

.daily-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1.6rem 0 2.5rem;
  color: rgba(255, 248, 233, 0.76);
}

.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.clean-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.clean-list span {
  color: var(--yellow);
  font-family: "Wheeler Display", Impact, sans-serif;
}

.feature-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.feature-heading {
  position: sticky;
  top: 8rem;
}

.feature-heading h2 {
  font-size: clamp(3.1rem, 6vw, 5.8rem);
}

.feature-line {
  display: grid;
  grid-template-columns: 48px 0.8fr 1.2fr;
  gap: 1.25rem;
  padding: 2.4rem 0;
  align-items: baseline;
  border-top: 1px solid var(--line);
}

.feature-line:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-line > p {
  color: var(--yellow);
  font-family: "Wheeler Display", Impact, sans-serif;
}

.feature-line h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.feature-line span {
  color: var(--muted);
}

.store-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink);
}

.store-art {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
  background: var(--violet);
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.store-art::before {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border: 2px solid rgba(217, 255, 53, 0.5);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 80px rgba(217, 255, 53, 0.26), inset 0 0 80px rgba(217, 255, 53, 0.2);
}

.store-art img {
  position: relative;
  width: min(62%, 390px);
  border-radius: 24%;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45);
  transform: rotate(-4deg);
}

.store-copy {
  width: min(100% - 3rem, 650px);
  padding: 5rem 2rem 5rem 5rem;
}

.store-copy .eyebrow {
  color: var(--violet);
}

.store-copy > p:not(.eyebrow, .store-status) {
  max-width: 34rem;
  margin: 1.5rem 0;
  font-size: 1.05rem;
}

.store-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.store-badge {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-radius: 8px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.store-badge img {
  width: auto;
  height: 52px;
}

.store-badge:nth-child(2) img {
  height: 77px;
  margin: -12px;
}

.store-badge:hover {
  transform: translateY(-3px);
}

.store-badge.is-pending {
  cursor: not-allowed;
  opacity: 0.74;
}

.store-status {
  margin: 0.75rem 0 0;
  font-size: 0.84rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  padding: 3.5rem 0 2rem;
}

.wordmark-small {
  font-size: 1.2rem;
}

.site-footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer nav a {
  font-size: 0.86rem;
  font-weight: 700;
}

.site-footer .fine-print {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Legal pages */
.legal-body {
  background: var(--paper);
  color: #171225;
  color-scheme: light;
}

.legal-body::before {
  opacity: 0.05;
}

.legal-header {
  position: static;
  width: min(100% - 3rem, var(--max));
  color: var(--cream);
}

.legal-header-wrap {
  background: var(--ink);
}

.legal-header nav a {
  color: var(--cream);
}

.legal-main {
  width: min(100% - 3rem, 900px);
  margin-inline: auto;
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.legal-main .eyebrow {
  color: #765100;
}

.legal-main h1 {
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-size: clamp(3.6rem, 9vw, 7.8rem);
  line-height: 0.84;
  text-shadow: none;
}

.legal-summary {
  max-width: 720px;
  margin-bottom: 3rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.legal-readiness {
  margin: 2.5rem 0;
  padding: 1.4rem 1.5rem;
  border-left: 6px solid #c98300;
  background: #fff1c7;
}

.legal-readiness strong {
  display: block;
  margin-bottom: 0.35rem;
}

.legal-toc {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 2rem;
  margin: 3rem 0 5rem;
  padding: 1.5rem 0;
  border-block: 1px solid rgba(23, 18, 37, 0.18);
}

.legal-toc a {
  font-weight: 700;
}

.legal-section {
  padding: 1.3rem 0 2rem;
  scroll-margin-top: 6rem;
}

.legal-section h2 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.legal-section h3 {
  margin-top: 2rem;
  color: var(--violet);
  font-size: 1.1rem;
}

.legal-section p,
.legal-section li {
  max-width: 780px;
}

.legal-section li + li {
  margin-top: 0.65rem;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.legal-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.legal-table th,
.legal-table td {
  padding: 0.9rem;
  border: 1px solid rgba(23, 18, 37, 0.2);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: #eee3cc;
}

.legal-callout {
  padding: 1.2rem 1.4rem;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--yellow);
}

.legal-footer-wrap {
  background: var(--ink);
  color: var(--cream);
}

@keyframes hero-rise {
  to { opacity: 1; transform: none; }
}

@keyframes header-drop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

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

@media (max-width: 900px) {
  .site-header nav a:not(.nav-cta) {
    display: none;
  }

  .legal-header nav a {
    display: inline;
  }

  .hero {
    background-position: 38% center;
  }

  .hero-scrim {
    background: linear-gradient(0deg, rgba(8, 7, 25, 0.98) 0%, rgba(8, 7, 25, 0.76) 48%, rgba(8, 7, 25, 0.08) 82%);
  }

  .hero-copy {
    align-self: end;
    margin-bottom: 4.5rem;
    padding-left: 0;
  }

  .hero-copy h1 {
    max-width: 650px;
  }

  .hero-lede {
    max-width: 500px;
  }

  .hero-note {
    display: none;
  }

  .section-intro,
  .feature-section {
    grid-template-columns: 1fr;
  }

  .section-intro > p:last-child {
    margin-top: 1.5rem;
  }

  .loop-step,
  .loop-step:nth-of-type(even) {
    width: 72%;
    margin-left: 0;
  }

  .loop-step:nth-of-type(even) {
    margin-left: 28%;
  }

  .loop-car {
    width: 44vw;
  }

  .daily-copy {
    padding-right: 34%;
  }

  .feature-heading {
    position: static;
  }

  .store-section {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .store-copy {
    padding-left: 2.5rem;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p:not(.fine-print) {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 2rem, var(--max));
  }

  .site-header.is-stuck {
    width: 100%;
    padding-inline: 1rem;
  }

  .site-header .nav-cta {
    padding: 0.58rem 0.75rem;
    font-size: 0.74rem;
  }

  .wordmark {
    flex-direction: column;
    gap: 0.08em;
    align-items: flex-start;
    font-size: 1.05rem;
  }

  .brand-logo-art {
    width: 150px;
  }

  .site-header.is-stuck .brand-logo-art {
    width: 116px;
  }

  .legal-header nav {
    gap: 0.8rem;
  }

  .legal-header nav a {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 920px;
    background-color: var(--ink);
    background-position: 20% 0;
    background-repeat: no-repeat;
    background-size: auto 520px;
  }

  .hero-scrim {
    background: linear-gradient(
      180deg,
      rgba(8, 7, 25, 0.04) 0%,
      rgba(8, 7, 25, 0.08) 22%,
      rgba(8, 7, 25, 0.72) 42%,
      rgba(8, 7, 25, 0.98) 59%,
      var(--ink) 76%
    );
  }

  .hero-copy {
    align-self: start;
    width: calc(100% - 2rem);
    margin-top: 285px;
    margin-bottom: 3rem;
  }

  h1 {
    font-size: clamp(3.55rem, 18vw, 5.1rem);
  }

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

  .hero-actions.store-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .store-badges.hero-store-badges {
    flex-direction: row;
    gap: 0.7rem;
    align-items: center;
  }

  .hero-store-badges .store-badge img {
    height: 44px;
  }

  .hero-store-badges .store-badge:nth-child(2) img {
    height: 65px;
    margin: -10px;
  }

  .hero-actions.store-cta .text-link,
  .hero-store-status {
    grid-column: 1;
  }

  .hero-actions.store-cta .text-link { grid-row: 3; }
  .hero-store-status { grid-row: 2; }

  .hero-actions.store-cta .text-link {
    text-align: left;
  }

  .text-link {
    text-align: center;
  }

  .loop-section,
  .feature-section {
    width: calc(100% - 2rem);
    padding-block: 5.5rem;
  }

  .section-intro {
    margin-bottom: 3rem;
  }

  .section-intro h2,
  .feature-heading h2,
  .store-copy h2,
  .daily-copy h2 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .loop-step,
  .loop-step:nth-of-type(even) {
    grid-template-columns: 54px 1fr;
    width: 100%;
    min-height: 440px;
    margin: 0;
    padding-top: 2rem;
  }

  .loop-step h3 {
    font-size: 2.3rem;
  }

  .loop-car {
    width: min(90vw, 410px);
  }

  .car-one { top: 13%; right: -16%; }
  .car-two { top: 45%; left: -18%; }
  .car-three { right: -18%; bottom: -1%; }

  .daily-section {
    min-height: 820px;
    align-items: end;
  }

  .daily-backdrop {
    background-position: 65% center;
  }

  .daily-section::after {
    background: linear-gradient(0deg, rgba(8, 7, 25, 0.98) 0%, rgba(8, 7, 25, 0.9) 56%, rgba(8, 7, 25, 0.1) 100%);
  }

  .daily-copy {
    width: calc(100% - 2rem);
    padding: 3rem 0;
  }

  .feature-line {
    grid-template-columns: 38px 1fr;
  }

  .feature-line span {
    grid-column: 2;
  }

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

  .store-art {
    min-height: 390px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  }

  .store-art img {
    width: min(56%, 260px);
  }

  .store-copy {
    width: calc(100% - 2rem);
    padding: 3rem 0 5rem;
  }

  .store-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    width: calc(100% - 2rem);
  }

  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .legal-main {
    width: calc(100% - 2rem);
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }
}

@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,
  .hero-copy > * {
    opacity: 1;
    transform: none;
  }
}
