:root {
  --navy: #030e2a;
  --navy-deep: #020919;
  --panel: #0a1f4a;
  --panel-light: #102b62;
  --cyan: #61d9ff;
  --blue: #2e68ff;
  --coral: #ff6657;
  --yellow: #fad659;
  --green: #5ddc9a;
  --paper: #f6f8f1;
  --muted: #a1d1f0;
  --line: rgba(97, 217, 255, 0.32);
  --max-width: 1240px;
  --header-height: 76px;
  --depth-x: 0;
  --depth-y: 0;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--navy);
  color: var(--paper);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

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

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: -10000px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--navy);
}

.skip-link:focus-visible {
  left: 12px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid rgba(97, 217, 255, 0.12);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  line-height: 1;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 8px;
}

.brand span {
  font-size: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(246, 248, 241, 0.82);
  font-size: 14px;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  transition: color 180ms ease;
}

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

.site-nav .nav-action {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--cyan);
  border-radius: 6px;
  color: var(--cyan);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--paper);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: clamp(720px, 92svh, 860px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--navy);
}

.hero::after {
  position: absolute;
  top: 124px;
  right: -90px;
  width: 420px;
  height: 420px;
  border: 2px solid rgba(46, 104, 255, 0.56);
  border-radius: 88px;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 48px), 1340px);
  min-height: clamp(650px, calc(92svh - 70px), 790px);
  margin-inline: auto;
  padding-top: 130px;
  grid-template-columns: minmax(350px, 0.82fr) minmax(620px, 1.18fr);
  align-items: center;
  gap: 16px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: start;
  padding-top: 32px;
}

.signal {
  display: flex;
  height: 34px;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.signal span {
  width: 8px;
  height: 30px;
  border-radius: 5px;
  background: var(--coral);
}

.signal i {
  width: 72px;
  height: 4px;
  margin-top: 1px;
  border-radius: 2px;
  background: var(--cyan);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  color: var(--paper);
  font-size: 64px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-tagline {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 27px;
  line-height: 1.4;
}

.hero-description {
  max-width: 470px;
  margin: 20px 0 0 3px;
  color: rgba(246, 248, 241, 0.84);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 21px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  background: var(--coral);
  color: #08132c;
  box-shadow: 0 8px 26px rgba(255, 102, 87, 0.18);
}

.button-primary:hover {
  background: #ff7b6e;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 102, 87, 0.26);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid rgba(97, 217, 255, 0.6);
  color: var(--cyan);
  font-size: 14px;
}

.hero-art {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 610px;
  transform: translate(calc(var(--depth-x) * 6px), calc(var(--depth-y) * 6px));
  transition: transform 160ms ease-out;
}

.app-mark {
  position: absolute;
  z-index: 2;
  top: -20px;
  right: 2px;
  width: 116px;
  height: 116px;
  border-radius: 22px;
  box-shadow: 0 0 36px rgba(46, 104, 255, 0.28);
}

.app-mark img {
  width: 100%;
  height: 100%;
}

.playfield {
  position: absolute;
  top: 90px;
  right: -34px;
  width: min(760px, 100%);
  height: 470px;
  border: 2px solid var(--cyan);
  border-radius: 32px;
  background: rgba(10, 31, 74, 0.92);
  box-shadow: inset 0 0 0 1px rgba(97, 217, 255, 0.06), 0 22px 60px rgba(1, 5, 18, 0.42);
}

.playfield-label {
  position: absolute;
  top: 18px;
  left: 32px;
  margin: 0;
  color: var(--cyan);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.bottle-stage {
  position: absolute;
  inset: 56px 4px 0;
}

.bottle {
  position: absolute;
  bottom: 10px;
  width: 27%;
  max-height: 370px;
  filter: drop-shadow(0 9px 14px rgba(1, 5, 18, 0.45));
  transform-origin: 50% 100%;
}

.bottle-yellow {
  left: 2%;
  width: 25%;
  transform: rotate(7deg) translateY(14px);
  animation: bottle-float 5.4s ease-in-out infinite;
}

.bottle-green {
  left: 25%;
  width: 25%;
  transform: translateY(-12px);
  animation: bottle-float 5.8s 0.5s ease-in-out infinite;
}

.bottle-selected {
  z-index: 2;
  left: 48%;
  width: 28%;
  transform: translateY(-44px);
  animation: selected-float 5.2s 0.2s ease-in-out infinite;
}

.bottle-blue {
  right: -2%;
  width: 27%;
  transform: rotate(-7deg) translateY(5px);
  animation: bottle-float 5.6s 0.85s ease-in-out infinite;
}

.playfield-marker {
  position: absolute;
  bottom: 24px;
  left: 32px;
  width: 72px;
  height: 5px;
  border-radius: 3px;
  background: var(--coral);
}

.hero-footer {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  width: min(calc(100% - 48px), 1340px);
  align-items: center;
  gap: 34px;
  margin-inline: auto;
  color: var(--yellow);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.hero-footer i {
  flex: 1;
  height: 1px;
  background: var(--line);
}

@keyframes bottle-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

@keyframes selected-float {
  0%, 100% { translate: 0 0; filter: drop-shadow(0 0 10px rgba(97, 217, 255, 0.28)); }
  50% { translate: 0 -11px; filter: drop-shadow(0 0 20px rgba(97, 217, 255, 0.42)); }
}

.hero-enter {
  animation: hero-enter 700ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-enter-1 { animation-delay: 90ms; }
.hero-enter-2 { animation-delay: 160ms; }
.hero-enter-3 { animation-delay: 250ms; }
.hero-enter-4 { animation-delay: 340ms; }

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

.play-section,
.feature-section,
.collection-section {
  padding: 120px 0;
}

.play-section {
  background: #071636;
}

.play-layout,
.collection-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(600px, 1.18fr);
  align-items: center;
  gap: 70px;
}

.section-copy h2,
.feature-heading h2,
.collection-copy h2,
.closing-copy h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-copy > p:not(.eyebrow),
.collection-copy > p:not(.eyebrow),
.closing-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin: 24px 0 0;
  color: rgba(246, 248, 241, 0.72);
}

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

.rule-list li {
  display: grid;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 78px 1fr;
}

.rule-list strong {
  color: var(--cyan);
}

.rule-list span {
  color: rgba(246, 248, 241, 0.76);
}

.sort-demo {
  position: relative;
  min-height: 570px;
  padding: 44px 36px;
  border-left: 1px solid var(--line);
  background: rgba(10, 31, 74, 0.52);
}

.demo-group {
  position: relative;
  display: flex;
  height: 224px;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}

.demo-group + .demo-group {
  margin-top: 42px;
}

.liquid-bottle {
  position: relative;
  flex: 0 0 auto;
  width: 112px;
  height: 200px;
  isolation: isolate;
}

.liquid-bottle.liquid-selected {
  width: 128px;
  height: 220px;
}

.liquid-bottle.liquid-selected > img {
  filter: drop-shadow(0 0 12px rgba(97, 217, 255, 0.62));
}

.liquid-bottle > img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.liquid-stack {
  position: absolute;
  z-index: 3;
  top: 21%;
  bottom: 10%;
  left: 27%;
  display: flex;
  width: 56%;
  overflow: hidden;
  border-radius: 10px 10px 17px 17px;
  flex-direction: column;
  mix-blend-mode: screen;
  opacity: 0.88;
}

.liquid-layer {
  min-height: 0;
  flex: 1;
}

.liquid-layer:first-child {
  border-radius: 8px 8px 0 0;
}

.liquid-yellow { background: #f6a510; }
.liquid-green { background: #70c91f; }
.liquid-blue { background: #2962ff; }
.liquid-coral { background: var(--coral); }

.demo-label {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
}

.feature-section {
  border-block: 1px solid rgba(97, 217, 255, 0.1);
  background: var(--navy);
}

.feature-section .section-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1.28fr);
  gap: 100px;
}

.feature-list {
  border-top: 1px solid var(--line);
}

.feature-list article {
  position: relative;
  display: grid;
  padding: 28px 0 30px 40px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 170px 1fr;
  align-items: baseline;
  gap: 28px;
}

.feature-list h3 {
  margin: 0;
  font-size: 22px;
}

.feature-list p {
  margin: 0;
  color: rgba(246, 248, 241, 0.68);
}

.feature-mark {
  position: absolute;
  top: 39px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mark-coral { background: var(--coral); }
.mark-yellow { background: var(--yellow); }
.mark-cyan { background: var(--cyan); }

.collection-section {
  overflow: hidden;
  background: #061331;
}

.collection-note {
  color: var(--yellow) !important;
  font-size: 14px;
}

.color-shelf {
  position: relative;
  display: grid;
  min-height: 520px;
  padding: 74px 34px 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--panel);
  box-shadow: 0 30px 70px rgba(1, 5, 18, 0.32);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
  transform: translate(calc(var(--depth-x) * 8px), calc(var(--depth-y) * 8px));
  transition: transform 160ms ease-out;
}

.shelf-label {
  position: absolute;
  top: 26px;
  right: 34px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

.shelf-label i {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.color-shelf figure {
  margin: 0;
}

.color-shelf img {
  width: 100%;
  height: 330px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.color-shelf figure:nth-of-type(even) img {
  transform: translateY(14px);
}

.color-shelf figure:hover img {
  transform: translateY(-8px);
}

.color-shelf figcaption {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  color: rgba(246, 248, 241, 0.7);
  font-size: 13px;
}

.color-shelf figcaption i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-yellow { background: var(--yellow); }
.dot-green { background: var(--green); }
.dot-blue { background: var(--cyan); }
.dot-coral { background: var(--coral); }

.closing-section {
  position: relative;
  display: grid;
  min-height: 650px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--panel);
  color: var(--paper);
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.closing-section::before {
  position: absolute;
  top: 82px;
  right: 8%;
  width: 86px;
  height: 6px;
  border-radius: 3px;
  background: var(--coral);
  content: "";
}

.closing-art {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  background: var(--navy);
}

.closing-art img {
  position: absolute;
  bottom: -70px;
  width: 32%;
  max-height: 620px;
  filter: drop-shadow(0 18px 28px rgba(1, 5, 18, 0.5));
}

.closing-art img:nth-child(1) { left: 4%; transform: rotate(8deg); }
.closing-art img:nth-child(2) { z-index: 2; left: 34%; bottom: -20px; }
.closing-art img:nth-child(3) { right: 2%; transform: rotate(-8deg); }

.closing-copy {
  position: relative;
  z-index: 2;
  width: min(460px, calc(100% - 48px));
  margin-inline: auto;
  padding: 90px 0;
}

.closing-copy .eyebrow {
  color: var(--cyan);
}

.closing-copy > p:not(.eyebrow) {
  color: rgba(246, 248, 241, 0.72);
}

.site-footer {
  padding: 46px 0;
  border-top: 1px solid var(--line);
  background: var(--navy-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 32px;
}

.home-footer .footer-inner {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 4px;
  text-align: center;
}

.home-footer .footer-inner > p {
  display: block;
}

.footer-inner > p {
  margin: 0;
  color: rgba(246, 248, 241, 0.56);
  font-size: 13px;
}

.home-footer .footer-advisory {
  color: rgba(246, 248, 241, 0.42);
  line-height: 1.8;
}

.home-footer .footer-advisory strong {
  color: rgba(246, 248, 241, 0.64);
}

.home-footer .footer-record {
  color: rgba(246, 248, 241, 0.36);
}

.home-footer .footer-record a {
  text-decoration: none;
  text-underline-offset: 3px;
}

.home-footer .footer-record a:hover {
  color: rgba(246, 248, 241, 0.64);
  text-decoration: underline;
}

.footer-inner nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
}

.home-footer .footer-inner nav {
  justify-content: center;
}

.footer-inner nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted);
}

.footer-inner nav a:hover {
  color: var(--paper);
}

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

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

.legal-page {
  background: #071636;
}

.legal-header {
  display: flex;
  width: min(calc(100% - 48px), 920px);
  height: 84px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid var(--cyan);
  color: var(--cyan);
  font-size: 14px;
}

.legal-main {
  width: min(calc(100% - 48px), 760px);
  margin-inline: auto;
  padding: 86px 0 110px;
}

.legal-main h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.2;
}

.legal-date {
  margin: 16px 0 0;
  color: var(--yellow);
  font-size: 14px;
}

.legal-lead {
  margin: 40px 0 72px;
  padding-left: 22px;
  border-left: 4px solid var(--coral);
  color: var(--muted);
  font-size: 18px;
}

.legal-main section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

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

.legal-main h2 {
  margin: 0;
  font-size: 21px;
}

.legal-main section p {
  margin: 14px 0 0;
  color: rgba(246, 248, 241, 0.7);
}

.legal-main a,
.legal-footer a {
  text-decoration: underline;
  text-decoration-color: rgba(97, 217, 255, 0.5);
  text-underline-offset: 4px;
}

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

.legal-footer [aria-current="page"] {
  color: var(--paper);
}

@media (max-width: 1280px) {
  .hero h1 {
    font-size: 54px;
  }
}

@media (max-width: 1120px) {
  .hero-inner {
    grid-template-columns: minmax(330px, 0.78fr) minmax(560px, 1.22fr);
  }

  .hero h1 {
    font-size: 46px;
  }

  .play-layout,
  .collection-layout {
    gap: 40px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    position: absolute;
  }

  .hero {
    min-height: 1010px;
  }

  .hero-inner {
    display: block;
    min-height: 950px;
    padding-top: 112px;
  }

  .hero-copy {
    max-width: 610px;
    padding-top: 0;
  }

  .hero-description {
    max-width: 540px;
  }

  .hero-art {
    width: min(100%, 760px);
    height: 500px;
    margin: 18px auto 0;
  }

  .playfield {
    top: 32px;
    right: 0;
    height: 440px;
  }

  .app-mark {
    top: -52px;
    right: 12px;
    width: 92px;
    height: 92px;
  }

  .hero-footer {
    bottom: 14px;
  }

  .play-layout,
  .collection-layout,
  .feature-section .section-inner {
    grid-template-columns: 1fr;
  }

  .play-layout,
  .collection-layout {
    gap: 64px;
  }

  .section-copy,
  .collection-copy,
  .feature-heading {
    max-width: 620px;
  }

  .sort-demo {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .feature-section .section-inner {
    gap: 60px;
  }

  .color-shelf {
    width: min(100%, 760px);
    margin-inline: auto;
  }

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

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

  .footer-inner > p {
    display: none;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 36px), var(--max-width));
  }

  .brand span {
    font-size: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 61px;
    right: 18px;
    display: none;
    width: min(280px, calc(100vw - 36px));
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(3, 14, 42, 0.98);
    box-shadow: 0 18px 40px rgba(1, 5, 18, 0.45);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav a {
    padding-inline: 12px;
  }

  .site-nav .nav-action {
    margin-top: 4px;
    justify-content: center;
  }

  .hero {
    min-height: 710px;
  }

  .hero::after {
    top: 390px;
    right: -190px;
    width: 340px;
    height: 340px;
    border-radius: 68px;
  }

  .hero-inner {
    width: min(calc(100% - 36px), 1340px);
    min-height: 690px;
    padding-top: 94px;
  }

  .signal {
    height: 22px;
    margin-bottom: 14px;
  }

  .signal span {
    width: 6px;
    height: 22px;
  }

  .signal i {
    width: 50px;
    height: 3px;
  }

  .eyebrow {
    margin-bottom: 11px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-tagline {
    margin-top: 10px;
    font-size: 20px;
  }

  .hero-description {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-art {
    height: 330px;
    margin-top: 22px;
  }

  .playfield {
    top: 8px;
    height: 302px;
    border-radius: 20px;
  }

  .playfield-label {
    top: 12px;
    left: 18px;
    font-size: 10px;
  }

  .bottle-stage {
    inset: 42px 4px 0;
  }

  .bottle {
    bottom: 8px;
    max-height: 246px;
  }

  .bottle-green {
    display: none;
  }

  .bottle-yellow {
    left: 1%;
    width: 32%;
  }

  .bottle-selected {
    left: 34%;
    width: 35%;
  }

  .bottle-blue {
    right: 0;
    width: 34%;
  }

  .app-mark {
    display: none;
  }

  .playfield-marker {
    bottom: 15px;
    left: 18px;
    width: 48px;
    height: 4px;
  }

  .hero-footer {
    display: none;
  }

  .play-section,
  .feature-section,
  .collection-section {
    padding: 82px 0;
  }

  .play-section {
    padding-top: 24px;
  }

  .section-copy h2,
  .feature-heading h2,
  .collection-copy h2,
  .closing-copy h2 {
    font-size: 36px;
  }

  .sort-demo {
    min-height: 470px;
    padding: 34px 18px;
  }

  .demo-group {
    height: 180px;
  }

  .liquid-bottle {
    width: 90px;
    height: 160px;
  }

  .liquid-bottle.liquid-selected {
    width: 100px;
    height: 176px;
  }

  .demo-group + .demo-group {
    margin-top: 38px;
  }

  .feature-list article {
    display: block;
    padding: 24px 0 24px 30px;
  }

  .feature-list p {
    margin-top: 8px;
  }

  .feature-mark {
    top: 34px;
  }

  .color-shelf {
    min-height: 520px;
    padding: 70px 20px 20px;
    border-radius: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 14px;
  }

  .color-shelf img {
    height: 180px;
  }

  .color-shelf figure:nth-of-type(even) img {
    transform: none;
  }

  .color-shelf figcaption {
    margin-top: 0;
  }

  .closing-section {
    display: block;
    min-height: 0;
  }

  .closing-art {
    height: 380px;
  }

  .closing-copy {
    width: min(calc(100% - 36px), 460px);
    padding: 76px 0 84px;
  }

  .closing-section::before {
    top: 420px;
    right: 18px;
  }

  .footer-inner,
  .legal-footer .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner nav {
    flex-wrap: wrap;
    gap: 6px 22px;
  }

  .legal-header,
  .legal-main {
    width: min(calc(100% - 36px), 760px);
  }

  .legal-header .brand span {
    display: none;
  }

  .legal-main {
    padding: 62px 0 84px;
  }

  .legal-main h1 {
    font-size: 44px;
  }

  .legal-lead {
    margin: 30px 0 56px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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