:root {
  color-scheme: dark;
  --bg: #060608;
  --ink: #fffaf4;
  --muted: #c9c3d0;
  --quiet: #8b8494;
  --line: rgba(255, 250, 244, 0.16);
  --panel: rgba(255, 250, 244, 0.075);
  --red: #ff304f;
  --pink: #ff0f8a;
  --violet: #6e44ff;
  --cyan: #44d9ff;
  --acid: #dfff58;
  --amber: #ffbd4a;
  --green: #42e68a;
  --radius: 8px;
  --display: "Space Grotesk", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 100px;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, #050507 0%, #0f0c17 42%, #05070a 100%),
    linear-gradient(118deg, rgba(255, 48, 79, 0.22), transparent 34%),
    linear-gradient(242deg, rgba(68, 217, 255, 0.16), transparent 38%),
    var(--bg);
  color: var(--ink);
  font-family: var(--body);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(104deg, transparent 0 18%, rgba(255, 250, 244, 0.08) 18.2%, transparent 18.9%),
    linear-gradient(74deg, transparent 0 57%, rgba(68, 217, 255, 0.08) 57.2%, transparent 58.1%),
    linear-gradient(138deg, transparent 0 69%, rgba(255, 48, 79, 0.1) 69.2%, transparent 70.2%),
    repeating-linear-gradient(90deg, rgba(255, 250, 244, 0.035) 0 1px, transparent 1px 112px);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.72) 48%, transparent 100%);
}

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

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

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1160px, calc(100% - 32px));
  min-height: 62px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: var(--radius);
  background: rgba(6, 6, 8, 0.66);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  width: 142px;
  min-width: 112px;
}

.main-nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.main-nav a,
.footer-links a,
.secondary-link {
  transition: color 180ms ease, opacity 180ms ease;
}

.main-nav a:hover,
.footer-links a:hover,
.secondary-link:hover {
  color: var(--ink);
}

.header-cta,
.secondary-link,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 600;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  background: var(--ink);
  color: #09090d;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  gap: 13px;
  width: 236px;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  background: #fff;
  color: #000;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
  font-family: var(--body);
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1;
}

.store-button small {
  display: block;
  margin-bottom: 4px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  opacity: 1;
}

.store-mark {
  flex: 0 0 auto;
  width: 28px;
  height: 32px;
  object-fit: contain;
}

.play-mark {
  width: 34px;
  height: 32px;
}

.secondary-link {
  padding: 0 18px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.section-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  width: min(1220px, calc(100% - 32px));
  min-height: calc(100svh - 26px);
  margin: 13px auto 24px;
  padding: 120px clamp(18px, 5vw, 58px) 72px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 10px;
  background: #050507;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.92) 0%, rgba(5, 5, 7, 0.72) 34%, rgba(5, 5, 7, 0.2) 66%, rgba(5, 5, 7, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 5, 7, 0.68) 0%, transparent 24%, rgba(5, 5, 7, 0.38) 100%);
}

.hero::after {
  z-index: 2;
  background:
    linear-gradient(104deg, transparent 0 28%, rgba(255, 250, 244, 0.1) 28.15%, transparent 28.8%),
    linear-gradient(76deg, transparent 0 72%, rgba(68, 217, 255, 0.08) 72.1%, transparent 72.8%);
  opacity: 0.6;
}

.hero-photo {
  position: absolute;
  inset: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.route-line {
  position: absolute;
  width: 48vw;
  max-width: 720px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 244, 0.9), transparent);
  opacity: 0.24;
}

.line-one {
  top: 26%;
  right: -12%;
  transform: rotate(-17deg);
}

.line-two {
  right: 10%;
  bottom: 19%;
  transform: rotate(12deg);
}

.route-dot {
  display: none;
}

.dot-one {
  top: 21%;
  right: 24%;
}

.dot-two {
  right: 9%;
  bottom: 29%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(68, 217, 255, 0.14);
}

.dot-three {
  right: 41%;
  bottom: 17%;
  background: var(--acid);
  box-shadow: 0 0 0 8px rgba(223, 255, 88, 0.12);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(570px, 100%);
  min-width: 0;
  max-width: 570px;
}

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

h1 {
  max-width: 690px;
  margin: 15px 0 20px;
  font-size: clamp(3.7rem, 6.9vw, 6.4rem);
  font-weight: 500;
  line-height: 0.94;
}

.hero-line {
  max-width: 560px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  font-weight: 500;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.phone {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 32px;
  background: transparent;
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.46);
}

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

.phone-main {
  top: 50%;
  left: 50%;
  z-index: 3;
  width: min(330px, 60vw);
  aspect-ratio: 1023 / 1633;
  transform: translate(-50%, -50%) rotate(2deg);
}

.phone-left,
.phone-right {
  width: min(250px, 46vw);
  aspect-ratio: 1049 / 1685;
  opacity: 0.92;
}

.phone-right {
  aspect-ratio: 1934 / 3636;
}

.phone-left {
  top: 11%;
  left: 1%;
  transform: rotate(-9deg);
}

.phone-right {
  right: 1%;
  bottom: 9%;
  transform: rotate(8deg);
}

.tonight-ticket {
  position: absolute;
  right: 8%;
  top: 18%;
  z-index: 4;
  display: grid;
  gap: 5px;
  width: 190px;
  padding: 14px;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 48, 79, 0.88);
  box-shadow: 0 18px 50px rgba(255, 48, 79, 0.32);
  transform: rotate(4deg);
}

.tonight-ticket span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tonight-ticket strong {
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 0.98;
}

.scroll-cue {
  position: absolute;
  bottom: 31px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 6px;
  height: 12px;
  border-radius: 999px;
  background: var(--acid);
  animation: scrollCue 1.4s ease-in-out infinite;
}

.quick-steps,
.nyx-section,
.app-story,
.download {
  padding: 92px 0;
}

.quick-steps {
  padding-top: 58px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading h2,
.nyx-copy h2,
.story-copy h2,
.download h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.3rem, 4.9vw, 5.2rem);
  font-weight: 500;
  line-height: 0.96;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.step-grid article,
.nyx-result,
.plan-marquee article,
.mini-feed {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.step-grid article {
  display: grid;
  align-content: space-between;
  min-height: 225px;
  padding: 20px;
}

.step-grid span {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 600;
}

.step-grid h3 {
  margin: 40px 0 8px;
  font-size: clamp(1.45rem, 2.25vw, 2.1rem);
  font-weight: 600;
  line-height: 1.02;
}

.step-grid p,
.nyx-copy p,
.nyx-result p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

.step-grid article:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 48, 79, 0.25), rgba(255, 250, 244, 0.055));
}

.step-grid article:nth-child(2) {
  background: linear-gradient(135deg, rgba(68, 217, 255, 0.2), rgba(255, 250, 244, 0.055));
}

.step-grid article:nth-child(3) {
  background: linear-gradient(135deg, rgba(223, 255, 88, 0.18), rgba(255, 250, 244, 0.055));
}

.nyx-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.7fr) minmax(340px, 0.9fr);
  gap: clamp(20px, 3vw, 38px);
  align-items: center;
  position: relative;
  isolation: isolate;
}

.nyx-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 20px;
  font-size: 1.12rem;
}

.nyx-character {
  position: relative;
  align-self: end;
  min-height: 560px;
  margin: 0;
}

.nyx-character::before {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 5%;
  left: 12%;
  height: 42%;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(68, 217, 255, 0.26), transparent 64%),
    linear-gradient(240deg, rgba(255, 48, 79, 0.24), transparent 62%);
  filter: blur(28px);
  opacity: 0.9;
  transform: skewY(-8deg);
}

.nyx-character img {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: min(420px, 42vw);
  max-width: none;
  transform: translateX(50%);
  filter: drop-shadow(0 34px 58px rgba(0, 0, 0, 0.48));
}

.nyx-character figcaption {
  position: absolute;
  right: 0;
  bottom: 28px;
  display: grid;
  gap: 6px;
  width: min(250px, 78%);
  padding: 14px;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 8, 12, 0.68);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.nyx-character figcaption span {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nyx-character figcaption strong {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.05;
}

.nyx-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.vibe-chip {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.07);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.vibe-chip:hover,
.vibe-chip.active {
  border-color: rgba(255, 48, 79, 0.88);
  background: rgba(255, 48, 79, 0.22);
  transform: translateY(-2px);
}

.nyx-result {
  grid-column: 1 / -1;
  min-height: 330px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 48, 79, 0.32), transparent 42%),
    linear-gradient(245deg, rgba(68, 217, 255, 0.22), transparent 48%),
    rgba(255, 250, 244, 0.075);
}

.nyx-result span {
  color: var(--acid);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nyx-result h3 {
  max-width: 560px;
  margin: 54px 0 16px;
  font-size: clamp(1.8rem, 3.7vw, 3.45rem);
  font-weight: 600;
  line-height: 0.98;
}

.plans-section {
  padding: 88px 0;
  overflow: hidden;
}

.plan-marquee {
  display: flex;
  gap: 12px;
  width: max-content;
  min-width: 100%;
  padding: 8px max(16px, calc((100vw - 1160px) / 2));
  animation: planFloat 34s linear infinite;
}

.plan-marquee:hover {
  animation-play-state: paused;
}

.plan-marquee article {
  display: grid;
  align-content: space-between;
  width: clamp(220px, 26vw, 370px);
  min-height: 230px;
  padding: 20px;
  flex: 0 0 auto;
}

.plan-marquee article:nth-child(1) {
  background: #ff304f;
}

.plan-marquee article:nth-child(2) {
  background: #fffaf4;
  color: #09090d;
}

.plan-marquee article:nth-child(3) {
  background: #6e44ff;
}

.plan-marquee article:nth-child(4) {
  background: #dfff58;
  color: #09090d;
}

.plan-marquee article:nth-child(5) {
  background: #44d9ff;
  color: #09090d;
}

.plan-marquee span {
  color: currentColor;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.72;
  text-transform: uppercase;
}

.plan-marquee strong {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  font-weight: 600;
  line-height: 0.96;
}

.app-story {
  display: grid;
  grid-template-columns: minmax(270px, 0.52fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.story-phone {
  overflow: hidden;
  width: min(340px, 100%);
  margin: 0 auto;
  border: 0;
  border-radius: 32px;
  background: transparent;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
  transform: rotate(-4deg);
}

.story-phone img {
  width: 100%;
}

.story-copy {
  min-width: 0;
}

.story-copy h2 {
  margin-top: 12px;
}

.mini-feed {
  display: grid;
  gap: 8px;
  max-width: 430px;
  margin-top: 26px;
  padding: 18px;
  background: rgba(255, 250, 244, 0.08);
}

.mini-feed span {
  color: var(--muted);
  font-weight: 600;
}

.mini-feed strong {
  color: var(--acid);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1;
}

.download {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.download img {
  width: 52px;
  height: 52px;
  margin-bottom: 0;
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(255, 48, 79, 0.22);
}

.download h2 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(1.9rem, 2.75vw, 3rem);
  font-weight: 500;
  line-height: 1.04;
}

.download .store-links {
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.download .store-button {
  width: 196px;
  min-height: 54px;
  gap: 10px;
  padding: 0 15px;
  border-radius: 12px;
  font-size: 1.06rem;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

.download .store-button small {
  margin-bottom: 3px;
  font-size: 0.52rem;
}

.download .store-mark {
  width: 22px;
  height: 26px;
}

.download .play-mark {
  width: 27px;
  height: 26px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  width: 130px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(-7px);
    opacity: 0.55;
  }
  50% {
    transform: translateY(7px);
    opacity: 1;
  }
}

@keyframes planFloat {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-28%);
  }
}

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

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

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .nyx-section,
  .app-story {
    grid-template-columns: 1fr;
  }

  .nyx-character {
    min-height: 520px;
    order: 2;
  }

  .nyx-board {
    order: 3;
  }

  .nyx-character img {
    width: min(380px, 58vw);
  }

  .story-phone {
    width: min(300px, 78vw);
  }
}

@media (max-width: 760px) {
  .site-header,
  .section-shell,
  .site-footer,
  .hero {
    width: min(1160px, calc(100% - 24px));
  }

  .site-header {
    top: 10px;
  }

  .main-nav {
    display: none;
  }

  .brand {
    width: 118px;
    min-width: 100px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    max-width: 350px;
    font-size: clamp(2.45rem, 9.8vw, 3.25rem);
    line-height: 1.02;
  }

  .hero-line {
    max-width: 350px;
    font-size: 1rem;
  }

  .hero {
    min-height: 92svh;
    padding-top: 112px;
    padding-bottom: 34px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 7, 0.72) 0%, rgba(5, 5, 7, 0.54) 34%, rgba(5, 5, 7, 0.9) 100%),
      linear-gradient(90deg, rgba(5, 5, 7, 0.78), rgba(5, 5, 7, 0.18) 100%);
  }

  .hero-photo img {
    object-position: 72% center;
  }

  .hero-actions {
    display: grid;
    align-items: stretch;
    width: min(100%, 286px);
    max-width: 100%;
  }

  .store-links {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .store-button,
  .secondary-link {
    width: 100%;
  }

  .store-button {
    min-height: 54px;
    padding: 0 15px;
    border-radius: 13px;
    font-size: 1.12rem;
    gap: 10px;
  }

  .store-button small {
    margin-bottom: 3px;
    font-size: 0.54rem;
  }

  .store-mark {
    width: 23px;
    height: 27px;
  }

  .play-mark {
    width: 28px;
    height: 27px;
  }

  .scroll-cue {
    display: none;
  }

  .quick-steps,
  .nyx-section,
  .app-story,
  .download,
  .plans-section {
    padding: 72px 0;
  }

  .quick-steps {
    padding-top: 54px;
  }

  .section-heading h2,
  .nyx-copy h2,
  .story-copy h2,
  .download h2 {
    font-size: clamp(1.95rem, 8.6vw, 3rem);
    line-height: 1;
  }

  .download h2 {
    max-width: 330px;
    font-size: clamp(1.8rem, 7.2vw, 2.55rem);
  }

  .download .store-links {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 240px);
  }

  .download .store-button {
    width: 100%;
    min-height: 48px;
    padding: 0 13px;
    border-radius: 12px;
    font-size: 0.98rem;
    gap: 10px;
  }

  .download .store-button small {
    margin-bottom: 2px;
    font-size: 0.5rem;
  }

  .download .store-mark {
    width: 21px;
    height: 25px;
  }

  .download .play-mark {
    width: 26px;
    height: 25px;
  }

  .step-grid,
  .nyx-board {
    grid-template-columns: 1fr;
  }

  .nyx-character {
    min-height: 430px;
    margin-top: -18px;
  }

  .nyx-character img {
    right: 48%;
    width: min(310px, 78vw);
  }

  .nyx-character figcaption {
    right: 0;
    bottom: 18px;
    width: min(230px, 74%);
  }

  .step-grid article {
    min-height: 168px;
  }

  .step-grid h3 {
    margin-top: 22px;
  }

  .nyx-result {
    min-height: 270px;
  }

  .nyx-result h3 {
    margin-top: 34px;
  }

  .plan-marquee {
    animation-duration: 44s;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .header-cta {
    min-height: 42px;
    padding: 0 12px;
  }

  .store-button {
    min-height: 50px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 1.02rem;
    gap: 10px;
  }

  .store-button small {
    margin-bottom: 2px;
    font-size: 0.52rem;
  }

  .store-mark {
    width: 22px;
    height: 26px;
  }

  .play-mark {
    width: 27px;
    height: 26px;
  }

  .hero-actions {
    width: min(100%, 260px);
  }

  .hero .store-links,
  .hero .store-button {
    width: 260px;
    max-width: 100%;
  }
}
