:root {
  color-scheme: dark;
  --bg: #06070c;
  --bg-2: #090d14;
  --panel: rgba(12, 18, 28, 0.76);
  --panel-2: rgba(18, 24, 36, 0.72);
  --line: rgba(212, 232, 255, 0.13);
  --line-strong: rgba(212, 232, 255, 0.24);
  --text: #f5f7fb;
  --muted: #aeb7c7;
  --dim: #667085;
  --coral: #ff6d78;
  --orange: #ff8a56;
  --teal: #35e0d0;
  --cyan: #59b7ff;
  --violet: #9f77ff;
  --pink: #e95bb8;
  --green: #45dc88;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --max: 1280px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    linear-gradient(180deg, #06070c 0%, #08101a 38%, #06070c 100%);
  color: var(--muted);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 109, 120, 0.055), transparent 24%, transparent 76%, rgba(53, 224, 208, 0.05)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 104px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 80%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(86, 183, 255, 0.08), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 30%);
  z-index: -1;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  background: var(--text);
  color: #061018;
  padding: 10px 14px;
  border-radius: 10px;
  transform: translateY(-140%);
}

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

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 72px;
  z-index: 100;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(6, 7, 12, 0.78);
  border-color: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px);
}

.nav-shell {
  width: min(100%, calc(var(--max) + 48px));
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 16px 40px rgba(159, 119, 255, 0.2);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: #c7ccd8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 12px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
}

.language-switcher select {
  min-height: 40px;
  max-width: 92px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(8, 13, 21, 0.76);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  padding: 0 10px;
}

.nav-cta,
.button,
.pricing-faders a,
.store-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  color: var(--text);
  background: rgba(6, 7, 12, 0.48);
  padding: 0 18px;
  font-size: 13px;
  border: 1px solid rgba(119, 214, 255, 0.5);
}

.app-store-nav {
  min-width: 184px;
  min-height: 56px;
  gap: 12px;
  border-color: rgba(255, 109, 120, 0.62);
  box-shadow: inset 0 0 0 1px rgba(89, 183, 255, 0.28);
}

.app-store-nav svg {
  width: 28px;
  height: 28px;
}

.app-store-nav span {
  display: grid;
  line-height: 1.05;
  text-align: left;
  font-size: 18px;
}

.app-store-nav small {
  font-size: 11px;
  font-weight: 700;
  color: #d7deea;
}

.nav-cta:hover,
.button:hover,
.pricing-faders a:hover,
.store-button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.section {
  position: relative;
  padding: 112px 24px;
}

.hero {
  min-height: auto;
  padding-top: 106px;
  padding-bottom: 0;
  overflow: visible;
}

.soundfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(650px, 0.98fr) minmax(470px, 1.02fr);
  gap: 28px;
  align-items: start;
  min-width: 0;
}

.hero-copy {
  padding-top: 70px;
  min-width: 0;
}

.hero h1 {
  margin: 0;
  color: var(--text);
  font-size: 72px;
  line-height: 0.98;
  font-weight: 700;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  background: linear-gradient(100deg, var(--coral), var(--pink), var(--cyan), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  overflow-wrap: break-word;
}

.hero-copy p {
  max-width: 610px;
  margin: 30px 0 0;
  font-size: 20px;
  color: #c3c9d5;
  font-weight: 400;
}

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

.button {
  padding: 0 24px;
  font-size: 15px;
}

.button svg {
  width: 20px;
  height: 20px;
}

.button-primary {
  color: #041013;
  background: linear-gradient(135deg, var(--coral), var(--violet) 52%, var(--teal));
  box-shadow: 0 18px 70px rgba(233, 91, 184, 0.2);
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(190, 215, 255, 0.24);
}

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: #bec7d5;
  font-size: 13px;
  font-weight: 700;
}

.hero-signals {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 660px;
}

.hero-signals article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.hero-signals svg {
  width: 38px;
  height: 38px;
  color: var(--coral);
}

.hero-signals article:nth-child(2) svg {
  color: var(--cyan);
}

.hero-signals article:nth-child(3) svg {
  color: var(--teal);
}

.hero-signals article:nth-child(4) svg {
  color: var(--violet);
}

.hero-signals strong,
.hero-signals span {
  display: block;
}

.hero-signals strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.hero-signals span {
  color: #9faabd;
  font-size: 12px;
  margin-top: 2px;
}

.hero-platforms span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-platforms i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(69, 220, 136, 0.7);
}

.hero-platforms .muted {
  color: #778196;
}

.hero-platforms .muted i {
  background: #657084;
  box-shadow: none;
}

.hero-stage {
  position: relative;
  min-height: 640px;
}

.wave-stack {
  position: absolute;
  right: 0;
  top: 118px;
  width: 360px;
  display: grid;
  gap: 22px;
  color: #9bffe8;
}

.wave-stack div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}

.wave-stack span {
  height: 30px;
  background:
    linear-gradient(90deg, transparent, currentColor, transparent) 0 50% / var(--w) 2px no-repeat,
    repeating-linear-gradient(90deg, transparent 0 6px, currentColor 6px 8px, transparent 8px 16px);
  opacity: 0.8;
  clip-path: polygon(0 44%, 8% 65%, 14% 30%, 22% 58%, 31% 20%, 39% 70%, 51% 38%, 62% 62%, 72% 26%, 84% 74%, 100% 48%);
}

.wave-stack div:nth-child(2) {
  color: var(--orange);
}

.wave-stack div:nth-child(3) {
  color: var(--violet);
}

.wave-stack div:nth-child(4) {
  color: var(--cyan);
}

.wave-stack b {
  color: currentColor;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.phone {
  position: absolute;
  left: 54px;
  top: 0;
  width: 332px;
  min-height: 610px;
  padding: 22px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 46px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), transparent 28%),
    rgba(4, 8, 14, 0.92);
  box-shadow: var(--shadow), inset 0 0 0 7px #111520;
}

.phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;
  width: 108px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #03050a;
  z-index: 2;
}

.phone-top {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.mini-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.phone-top button {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #dfe7f4;
  padding: 0;
}

.phone-top button span,
.phone-top button::before,
.phone-top button::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.touch-pad {
  position: relative;
  width: calc(100% - 66px);
  aspect-ratio: 1 / 1.12;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(170, 219, 255, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at var(--tap-x, 56%) var(--tap-y, 62%), rgba(255, 109, 120, 0.7), rgba(233, 91, 184, 0.34) 10%, rgba(53, 224, 208, 0.18) 22%, transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent),
    #07111c;
  cursor: pointer;
}

.touch-pad:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(111, 203, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 203, 255, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: perspective(500px) rotateX(24deg) translateY(20px);
}

.heat {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  transform: translate(-50%, -50%);
  animation: touchPulse 2200ms ease-out infinite;
}

.heat-one {
  left: var(--tap-x, 56%);
  top: var(--tap-y, 62%);
  width: 110px;
  height: 110px;
}

.heat-two {
  left: var(--tap-x, 56%);
  top: var(--tap-y, 62%);
  width: 180px;
  height: 180px;
  animation-delay: 400ms;
}

.finger-print {
  position: absolute;
  left: var(--tap-x, 56%);
  top: var(--tap-y, 62%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #fff7f7;
  box-shadow: 0 0 22px rgba(255, 109, 120, 0.9), 0 0 80px rgba(233, 91, 184, 0.45);
}

.tap-label {
  position: absolute;
  left: 18px;
  bottom: 14px;
  color: #d7fef7;
  font-size: 12px;
  font-weight: 600;
}

@keyframes touchPulse {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.65);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

.mode-rail {
  position: absolute;
  right: 18px;
  top: 108px;
  width: 54px;
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.mode-rail button {
  min-height: 58px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.06);
  color: #b9c3d5;
  font-size: 9px;
  font-weight: 600;
}

.mode-rail button.is-active {
  color: #071018;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
}

.phone-tabs {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: #8590a4;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  pointer-events: none;
}

.phone-tabs .is-active {
  color: var(--teal);
}

.now-playing {
  position: absolute;
  right: 0;
  bottom: 66px;
  width: 350px;
  min-height: 150px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(10, 14, 22, 0.82);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.np-art {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background:
    linear-gradient(150deg, rgba(255, 109, 120, 0.4), transparent 38%),
    linear-gradient(20deg, #17223a, #3b6e8b 45%, #ffbd78);
}

.now-playing strong {
  display: block;
  color: var(--text);
  font-size: 15px;
}

.now-playing span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #a4afc2;
}

.now-playing i {
  display: block;
  height: 22px;
  margin-top: 14px;
  background: repeating-linear-gradient(90deg, var(--coral) 0 3px, transparent 3px 12px);
  clip-path: polygon(0 55%, 8% 30%, 14% 65%, 24% 42%, 34% 74%, 44% 38%, 54% 62%, 66% 28%, 76% 70%, 88% 40%, 100% 54%);
}

.now-playing button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  display: grid;
  place-items: center;
}

.now-playing svg {
  width: 22px;
  height: 22px;
}

.hero-feature-strip {
  position: relative;
  width: min(100%, var(--max));
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
  overflow: hidden;
  z-index: 3;
}

.hero-feature-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  padding: 24px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-feature-strip article:last-child {
  border-right: 0;
}

.hero-feature-strip svg {
  grid-row: span 2;
  width: 44px;
  color: var(--violet);
}

.hero-feature-strip article:nth-child(1) svg {
  color: var(--coral);
}

.hero-feature-strip article:nth-child(2) svg {
  color: var(--cyan);
}

.hero-feature-strip article:nth-child(3) svg {
  color: var(--teal);
}

.hero-feature-strip h3 {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.hero-feature-strip p {
  margin: 3px 0 0;
  color: #9ca7ba;
  font-size: 13px;
}

.hero-next-preview {
  position: relative;
  min-height: 244px;
  padding: 44px 78px;
  display: grid;
  grid-template-columns: minmax(230px, 0.45fr) minmax(0, 0.55fr);
  align-items: center;
  width: min(100%, 1440px);
  margin: 56px auto 0;
  border-radius: 50% 50% 0 0 / 42% 42% 0 0;
  background:
    linear-gradient(180deg, rgba(255, 109, 120, 0.07), rgba(6, 7, 12, 0.72) 45%, rgba(6, 7, 12, 0.96)),
    rgba(6, 7, 12, 0.72);
  overflow: hidden;
  z-index: 1;
}

.hero-next-preview::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--violet), var(--teal));
  opacity: 0.95;
  pointer-events: none;
}

.hero-next-preview img {
  width: 230px;
  justify-self: center;
  align-self: center;
  margin-bottom: 0;
  filter: drop-shadow(0 18px 55px rgba(255, 109, 120, 0.24));
}

.hero-next-preview div {
  align-self: center;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  padding-left: 34px;
  max-width: 560px;
}

.hero-next-preview span {
  display: block;
  color: var(--teal);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-next-preview strong {
  display: block;
  color: #dce5f4;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 600;
}

.section-intro {
  width: min(100%, var(--max));
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 32px;
  align-items: end;
}

.section-intro.narrow {
  display: block;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-intro.narrow p:last-child {
  max-width: 520px;
  margin: 14px auto 0;
  color: #aeb8c9;
  font-size: 18px;
}

.section-index {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-index.coral {
  color: var(--coral);
}

.section-index.teal {
  color: var(--teal);
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: 48px;
  line-height: 1.08;
  font-weight: 700;
}

.section-intro > p,
.progress-copy > p {
  margin: 0;
  color: #b2bdcd;
  font-size: 17px;
}

.reset-stack,
.day-flow,
.together,
.progress-section,
.compare-section,
.platform-section,
.proof-section,
.pricing-section {
  width: min(calc(100% - 32px), 1440px);
  margin: 28px auto 0;
  scroll-margin-top: 92px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(53, 224, 208, 0.04), transparent 30%, rgba(255, 109, 120, 0.035)),
    rgba(5, 11, 18, 0.55);
}

.reset-stack {
  margin-top: 48px;
}

.stack-scene {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  min-height: auto;
  padding: 4px 0 10px;
}

.stack-scene::before {
  content: "";
  position: absolute;
  left: 80px;
  right: 90px;
  top: 28px;
  height: 52px;
  background: repeating-linear-gradient(90deg, transparent 0 8px, rgba(53, 224, 208, 0.38) 8px 10px, transparent 10px 18px);
  clip-path: polygon(0 50%, 6% 30%, 12% 62%, 19% 28%, 28% 72%, 38% 34%, 48% 58%, 58% 24%, 68% 68%, 78% 36%, 88% 62%, 100% 45%);
  opacity: 0.55;
}

.stack-console {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  overflow: hidden;
  max-width: 100%;
  contain: layout paint;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(255, 109, 120, 0.09), transparent 20%, transparent 80%, rgba(53, 224, 208, 0.09)),
    rgba(8, 13, 21, 0.76);
}

.stack-mascot {
  display: none;
  position: absolute;
  right: 0;
  top: -112px;
  width: 132px;
  filter: drop-shadow(0 20px 42px rgba(255, 109, 120, 0.24));
}

.mix-note {
  position: relative;
  right: auto;
  bottom: auto;
  width: max-content;
  max-width: 100%;
  margin: 18px 0 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--orange);
  font-weight: 600;
  line-height: 1.35;
}

.stack-feature {
  min-width: 0;
}

.stack-feature button {
  width: 100%;
  min-height: 230px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #c3ccdc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 10px;
  cursor: pointer;
}

.stack-feature:last-child button {
  border-right: 0;
}

.stack-feature button:hover,
.stack-feature.is-active button {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02));
}

.stack-feature strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
}

.stack-feature small {
  min-height: 44px;
  color: #96a2b4;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.stack-feature i {
  position: relative;
  width: 4px;
  height: 62px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.11);
}

.stack-feature i::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 0;
  height: var(--level);
  border-radius: 99px;
  background: linear-gradient(180deg, var(--coral), var(--teal));
  box-shadow: 0 0 18px rgba(53, 224, 208, 0.5);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 109, 120, 0.25), rgba(53, 224, 208, 0.12)),
    rgba(255, 255, 255, 0.05);
  position: relative;
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 99px;
  border: 2px solid currentColor;
  color: var(--teal);
}

.touch-icon::before {
  inset: 13px 20px 12px 20px;
  border-radius: 999px;
}

.touch-icon::after {
  inset: auto 13px 11px auto;
  width: 14px;
  height: 14px;
  border-left: 0;
  border-bottom: 0;
}

.puzzle-icon::before {
  inset: 15px;
  border-radius: 8px;
}

.ear-icon::before {
  border-radius: 65% 45% 55% 45%;
}

.wind-icon::before {
  inset: 18px 10px;
  border-width: 0;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.moon-icon::before {
  inset: 15px auto auto 16px;
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  box-shadow: 0 0 14px rgba(159, 119, 255, 0.34);
}

.moon-icon::after {
  inset: 11px auto auto 24px;
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 22, 33, 0.96);
  box-shadow: none;
}

.tempo-icon::before {
  inset: 12px 19px 12px 19px;
  transform: skew(-7deg);
}

.book-icon::before {
  inset: 14px 10px;
  border-radius: 4px;
}

.beat-icon::before {
  inset: 15px 10px;
  border-width: 0;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.day-flow {
  padding-top: 92px;
}

.timeline {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 0;
  overflow-x: auto;
  max-width: 100%;
  contain: paint;
  padding: 26px 0 74px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--violet), var(--cyan));
  opacity: 0.48;
}

.timeline article {
  position: relative;
  min-width: 180px;
  min-height: 266px;
  padding: 20px 18px 72px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 109, 120, 0.12), transparent 62%),
    rgba(255, 255, 255, 0.035);
}

.timeline article::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: -44px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--teal);
  box-shadow: 0 0 22px rgba(53, 224, 208, 0.42);
}

.timeline article:nth-child(2)::after,
.timeline article:nth-child(5)::after {
  border-color: var(--coral);
}

.timeline article:nth-child(3)::after,
.timeline article:nth-child(6)::after {
  border-color: var(--violet);
}

.timeline time {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 99px;
  color: var(--teal);
  border: 1px solid rgba(53, 224, 208, 0.25);
  background: rgba(53, 224, 208, 0.08);
  font-size: 12px;
  font-weight: 600;
}

.timeline h3 {
  margin: 18px 0 8px;
  color: var(--text);
  font-size: 19px;
  font-weight: 600;
}

.timeline p {
  margin: 0;
  color: #a8b3c5;
  font-size: 14px;
}

.timeline-control {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
}

.social-panels {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.social-panels article,
.analytics-grid article,
.unlock-panel,
.pricing-faders,
.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.075), transparent 36%),
    rgba(9, 14, 23, 0.72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
}

.social-panels article {
  min-height: 320px;
  padding: 24px;
  border-radius: 24px;
}

.social-panels h3,
.analytics-grid h3,
.unlock-panel h3,
.pricing-faders h3 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
}

.social-panels p {
  margin: 10px 0 22px;
  color: #a9b4c5;
}

.room-list {
  display: grid;
  gap: 10px;
}

.room-list span {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.room-list b {
  color: #eaf0fb;
  font-size: 13px;
}

.room-list small {
  color: var(--teal);
  font-size: 12px;
}

.bubble {
  max-width: 86%;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  color: #dce6f4;
  font-size: 14px;
}

.bubble.mine {
  margin-left: auto;
  background: rgba(159, 119, 255, 0.24);
}

.bubble.theirs {
  background: rgba(255, 255, 255, 0.08);
}

.music-invite {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(53, 224, 208, 0.22);
  border-radius: 14px;
  color: var(--teal);
  background: rgba(53, 224, 208, 0.08);
  font-weight: 600;
  font-size: 13px;
}

.music-invite svg {
  width: 20px;
  height: 20px;
}

.muted-mic {
  width: 92px;
  height: 92px;
  margin: 34px auto 18px;
  border-radius: 50%;
  border: 1px solid rgba(89, 183, 255, 0.2);
  background:
    linear-gradient(135deg, transparent 45%, rgba(89, 183, 255, 0.5) 46% 49%, transparent 50%),
    radial-gradient(circle, rgba(89, 183, 255, 0.12), transparent 62%);
  position: relative;
}

.muted-mic::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 20px;
  width: 24px;
  height: 42px;
  border: 2px solid rgba(164, 222, 255, 0.74);
  border-radius: 14px;
}

.no-voice-panel small {
  display: block;
  text-align: center;
  color: #91a0b8;
}

.safety-panel ul,
.quiet-list,
.unlock-panel ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.safety-panel li,
.quiet-list li,
.unlock-panel li {
  position: relative;
  padding-left: 22px;
  color: #c0cad9;
  font-size: 14px;
}

.safety-panel li::before,
.quiet-list li::before,
.unlock-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--teal));
}

.progress-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 34px;
  align-items: center;
}

.progress-copy h2 {
  margin-bottom: 20px;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.analytics-grid article {
  min-height: 190px;
  border-radius: 20px;
  padding: 20px;
}

.analytics-grid strong {
  display: block;
  margin: 18px 0 14px;
  color: var(--text);
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
}

.platform-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.platform-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.075), transparent 42%),
    rgba(9, 14, 23, 0.72);
  overflow: hidden;
}

.platform-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 224, 208, 0.18), transparent 68%);
  pointer-events: none;
}

.platform-card.is-coming::after {
  background: radial-gradient(circle, rgba(159, 119, 255, 0.2), transparent 68%);
}

.platform-card span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(69, 220, 136, 0.28);
  border-radius: 999px;
  color: var(--green);
  background: rgba(69, 220, 136, 0.08);
  font-size: 11px;
  font-weight: 600;
}

.platform-card.is-coming span {
  color: var(--violet);
  border-color: rgba(159, 119, 255, 0.32);
  background: rgba(159, 119, 255, 0.1);
}

.platform-card h3 {
  margin: 48px 0 10px;
  color: var(--text);
  font-size: 25px;
  font-weight: 600;
}

.platform-card p {
  margin: 0;
  color: #a9b4c5;
  font-size: 14px;
}

.heatmap {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  margin-top: 22px;
}

.heatmap span {
  aspect-ratio: 1;
  border-radius: 5px;
  background: rgba(53, 224, 208, 0.15);
}

.heatmap span:nth-child(3n) {
  background: rgba(159, 119, 255, 0.42);
}

.heatmap span:nth-child(5n) {
  background: rgba(53, 224, 208, 0.55);
}

.heatmap span:nth-child(7n) {
  background: rgba(255, 109, 120, 0.42);
}

.bars {
  height: 70px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.bars i {
  width: 12px;
  height: var(--h);
  border-radius: 99px 99px 0 0;
  background: linear-gradient(180deg, var(--violet), var(--teal));
}

.badge-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.badge-row span {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 50% 40%, rgba(53, 224, 208, 0.26), transparent 48%),
    rgba(255, 255, 255, 0.06);
}

.badge-row span:nth-child(2) {
  background:
    radial-gradient(circle at 50% 40%, rgba(159, 119, 255, 0.34), transparent 48%),
    rgba(255, 255, 255, 0.06);
}

.badge-row span:nth-child(3) {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 109, 120, 0.3), transparent 48%),
    rgba(255, 255, 255, 0.06);
}

.analytics-grid p {
  color: #aab5c6;
  font-size: 15px;
}

.comparison-table {
  width: min(100%, var(--max));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(53, 224, 208, 0.04), transparent 42%, rgba(255, 109, 120, 0.05)),
    rgba(8, 13, 21, 0.74);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(280px, 1.28fr) repeat(4, minmax(120px, 0.68fr));
  min-width: 840px;
}

.comparison-row span,
.comparison-row strong {
  min-height: 62px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #aeb8c9;
  font-size: 14px;
}

.comparison-row span:last-child,
.comparison-row strong:last-child {
  border-right: 0;
}

.comparison-row:last-child span,
.comparison-row:last-child strong {
  border-bottom: 0;
}

.comparison-head span {
  min-height: 54px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.035);
}

.comparison-row strong {
  color: var(--teal);
  font-weight: 700;
  background: rgba(53, 224, 208, 0.055);
}

.comparison-note {
  width: min(100%, var(--max));
  margin: 16px auto 0;
  color: #8793a7;
  font-size: 13px;
}

.proof-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.proof-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.075), transparent 42%),
    rgba(9, 14, 23, 0.72);
}

.proof-grid span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(53, 224, 208, 0.28);
  color: var(--teal);
  background: rgba(53, 224, 208, 0.08);
  font-size: 11px;
  font-weight: 600;
}

.proof-grid p {
  margin: 38px 0 0;
  color: #d6deec;
  font-size: 17px;
  line-height: 1.55;
}

.pricing-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
}

.unlock-panel {
  border-radius: 22px;
  padding: 24px;
}

.pricing-faders {
  border-radius: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
}

.pricing-faders article {
  position: relative;
  min-height: 430px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  padding: 30px 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-faders article:last-child {
  border-right: 0;
}

.pricing-faders .is-popular {
  background: linear-gradient(180deg, rgba(159, 119, 255, 0.2), transparent 68%);
}

.pricing-faders .lifetime {
  background: linear-gradient(180deg, rgba(255, 109, 120, 0.14), transparent 68%);
}

.pricing-faders strong {
  margin-top: 10px;
  color: var(--text);
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
}

.pricing-note {
  width: min(100%, var(--max));
  margin: 18px auto 0;
  color: #8f9bae;
  font-size: 13px;
  text-align: center;
}

.pricing-faders small {
  color: #95a0b3;
  font-weight: 500;
}

.fader {
  position: relative;
  width: 56px;
  height: 190px;
  margin: 24px 0 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.fader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0 12px, rgba(255, 255, 255, 0.18) 12px 14px, transparent 14px 24px);
}

.fader span {
  position: absolute;
  left: 50%;
  bottom: var(--level);
  width: 38px;
  height: 48px;
  transform: translate(-50%, 50%);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, var(--teal) 26%, #145d64);
  box-shadow: 0 0 26px rgba(53, 224, 208, 0.45);
}

.is-popular .fader span {
  background: linear-gradient(180deg, #ffffff, var(--violet) 26%, #352064);
  box-shadow: 0 0 26px rgba(159, 119, 255, 0.5);
}

.lifetime .fader span {
  background: linear-gradient(180deg, #ffffff, var(--coral) 26%, #67252d);
  box-shadow: 0 0 26px rgba(255, 109, 120, 0.48);
}

.pricing-faders a {
  margin-top: auto;
  width: 100%;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
}

.pricing-faders .is-popular a {
  background: linear-gradient(135deg, var(--violet), var(--pink));
}

.faq-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 40px;
  align-items: center;
}

.faq-section.section {
  padding-left: 0;
  padding-right: 0;
}

.faq-art img {
  width: min(100%, 360px);
  filter: drop-shadow(0 30px 65px rgba(255, 109, 120, 0.2));
}

.faq-copy h2 {
  margin-bottom: 28px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  min-height: 62px;
  padding: 18px 22px;
  color: var(--text);
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: #aeb8c9;
  font-size: 15px;
}

.final-download-section {
  width: min(calc(100% - 32px), 1440px);
  margin: 28px auto 0;
  padding: 58px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(110deg, rgba(255, 109, 120, 0.09), transparent 36%, rgba(53, 224, 208, 0.08)),
    rgba(8, 13, 21, 0.78);
}

.final-download-section h2 {
  max-width: 760px;
}

.final-download-section p:not(.section-index) {
  max-width: 650px;
  margin: 16px 0 0;
  color: #aeb8c9;
  font-size: 17px;
}

.site-footer {
  padding: 0 24px 44px;
}

.footer-cta,
.footer-bottom {
  width: min(100%, var(--max));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 14, 23, 0.72);
}

.footer-cta {
  border-radius: 28px 28px 0 0;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer-logo {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  float: left;
  margin-right: 18px;
}

.footer-cta h2 {
  font-size: 34px;
}

.footer-cta p {
  margin: 4px 0 0;
}

.store-button {
  color: var(--text);
  min-width: 260px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.045);
}

.store-button svg {
  width: 30px;
  height: 30px;
}

.store-button span {
  display: grid;
  line-height: 1.1;
  font-size: 21px;
}

.store-button small {
  font-size: 11px;
  font-weight: 500;
  color: #c3ccd9;
}

.footer-bottom {
  border-top: 0;
  border-radius: 0 0 28px 28px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
}

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

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
}

.footer-bottom p {
  margin: 12px 0 0;
  color: #9ba6b8;
  font-size: 13px;
}

.footer-bottom nav {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-content: start;
  gap: 14px 22px;
}

.footer-bottom a {
  color: #c0c9d9;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

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

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 560px;
  }

  .phone {
    left: 50%;
    transform: translateX(-50%);
  }

  .wave-stack {
    right: 4%;
    top: 68px;
    width: 300px;
  }

  .now-playing {
    right: 5%;
  }

  .social-panels,
  .progress-layout,
  .platform-grid,
  .proof-grid,
  .pricing-layout,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .social-panels {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-layout {
    gap: 18px;
  }

  .unlock-panel {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 66px;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 54px;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    grid-template-columns: 1fr;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(8, 11, 18, 0.94);
    backdrop-filter: blur(22px);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-cta {
    display: none;
  }

  .brand {
    font-size: 21px;
  }

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

  .section {
    padding: 82px 18px;
  }

  .hero {
    padding-top: 104px;
    padding-bottom: 76px;
    min-height: auto;
  }

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

  .hero-copy p {
    font-size: 17px;
  }

  .hero-stage {
    min-height: 720px;
  }

  .hero-signals {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    overflow: hidden;
  }

  .phone {
    width: min(100%, 330px);
  }

  .touch-pad {
    width: 100%;
  }

  .mode-rail {
    position: static;
    width: auto;
    margin-top: 14px;
    grid-template-columns: repeat(4, 1fr);
  }

  .mode-rail button {
    min-height: 42px;
    font-size: 11px;
  }

  .wave-stack {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 22px;
    padding: 0 8px;
  }

  .now-playing {
    left: 50%;
    right: auto;
    bottom: 0;
    width: min(100%, 350px);
    transform: translateX(-50%);
  }

  .hero-feature-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero-next-preview {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 360px;
    margin-top: 34px;
    padding: 46px 28px 52px;
    grid-template-columns: 1fr;
    align-items: start;
    border-radius: 48% 48% 0 0 / 18% 18% 0 0;
  }

  .hero-next-preview img {
    width: 190px;
    justify-self: start;
    align-self: start;
    margin-left: 8px;
  }

  .hero-next-preview div {
    align-self: start;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding: 22px 0 0;
    margin-top: 10px;
    max-width: 520px;
  }

  .hero-next-preview strong {
    max-width: 420px;
    font-size: 32px;
  }

  .hero-feature-strip article:nth-child(2) {
    border-right: 0;
  }

  .hero-feature-strip article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .section-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .reset-stack,
  .day-flow,
  .together,
  .progress-section,
  .compare-section,
  .platform-section,
  .proof-section,
  .pricing-section {
    width: min(calc(100% - 16px), 1440px);
    border-radius: 20px;
  }

  .reset-stack {
    margin-top: 0;
  }

  .stack-console {
    width: 100%;
    margin-top: 32px;
    grid-template-columns: repeat(8, minmax(142px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .stack-feature {
    min-width: 142px;
    scroll-snap-align: start;
  }

  .stack-mascot,
  .mix-note {
    display: none;
  }

  h2 {
    font-size: 38px;
  }

  .pricing-faders {
    grid-template-columns: 1fr 1fr;
  }

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

  .comparison-table {
    overflow-x: auto;
  }

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

  .final-download-section {
    width: min(calc(100% - 16px), 1440px);
    padding: 42px 28px;
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .pricing-faders article:nth-child(2) {
    border-right: 0;
  }

  .pricing-faders article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-cta,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .faq-section {
    width: min(calc(100% - 16px), 1440px);
  }

  .faq-section.section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .faq-art img {
    margin: 0 auto;
  }

  .footer-bottom nav {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    gap: 10px;
    padding: 0 18px;
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .brand {
    gap: 8px;
    font-size: 20px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .nav-actions {
    grid-column: 2;
    margin-right: 0;
  }

  .language-switcher select {
    max-width: 76px;
    min-height: 38px;
    padding: 0 8px;
  }

  .menu-button {
    grid-column: 3;
    width: 40px;
    height: 40px;
  }

  .hero-grid,
  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.06;
  }

  .hero-copy p {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .hero-signals {
    grid-template-columns: 1fr 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 700px;
  }

  .phone {
    border-radius: 34px;
    min-height: 560px;
  }

  .mode-rail {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    grid-template-columns: repeat(6, minmax(100%, 1fr));
    scroll-snap-type: x mandatory;
  }

  .timeline article {
    min-width: 100%;
    scroll-snap-align: start;
  }

  .stack-console {
    grid-template-columns: repeat(8, minmax(calc((100vw - 54px) / 2), 1fr));
  }

  .stack-feature {
    min-width: calc((100vw - 54px) / 2);
  }

  .hero-feature-strip,
  .analytics-grid,
  .platform-grid,
  .proof-grid,
  .pricing-faders {
    grid-template-columns: 1fr;
  }

  .hero-next-preview {
    min-height: 410px;
    padding: 40px 22px 46px;
    border-radius: 42% 42% 0 0 / 12% 12% 0 0;
  }

  .hero-next-preview img {
    width: 188px;
    margin-left: 0;
  }

  .hero-next-preview strong {
    font-size: 30px;
    line-height: 1.08;
  }

  .hero-feature-strip article,
  .pricing-faders article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hero-feature-strip article:last-child,
  .pricing-faders article:last-child {
    border-bottom: 0;
  }

  h2 {
    font-size: 32px;
  }

  .social-panels article {
    min-height: 280px;
    padding: 22px;
  }

  .social-panels {
    grid-template-columns: 1fr;
  }

  .store-button {
    width: 100%;
    min-width: 0;
  }
}
