:root {
  color-scheme: light;
  --brand: #c90032;
  --brand-bright: #ff2442;
  --brand-soft: #fff0f2;
  --ink: #1b1c1c;
  --ink-soft: #664f50;
  --muted: #735f60;
  --gold: #825500;
  --surface: #fffafa;
  --surface-pure: #ffffff;
  --surface-soft: #f8f3f3;
  --line: #eadfe0;
  --success: #008f48;
  --content: 1440px;
  --header-height: 76px;
  --radius: 16px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --z-sticky: 20;
  --z-toast: 40;
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface-pure);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

button {
  border: 0;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-140%);
}

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

:focus-visible {
  outline: 3px solid #8f001f;
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  height: var(--header-height);
  background: rgb(255 250 250 / 94%);
  border-bottom: 1px solid rgb(234 223 224 / 80%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
  width: min(calc(100% - 48px), var(--content));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--brand);
  flex: 0 0 auto;
}

.brand-mark__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand-bright);
  border-radius: 12px;
  font-size: 16px;
  letter-spacing: -0.06em;
}

.brand-mark__name {
  font-size: 24px;
  letter-spacing: -0.03em;
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  transition:
    transform 180ms var(--ease-out),
    background 180ms ease;
}

.header-cta:hover {
  background: #b4002b;
  transform: translateY(-1px);
}

.header-cta:active,
.button:active,
.platform-tabs button:active {
  transform: scale(0.96);
}

.header-cta[aria-disabled="true"] {
  color: #7d7475;
  background: #e7e1e2;
  cursor: not-allowed;
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 79% 28%, rgb(255 201 206 / 42%), transparent 28%),
    linear-gradient(180deg, var(--surface) 0%, #fff 100%);
}

.hero::before {
  position: absolute;
  top: 8%;
  right: -8%;
  width: 38vw;
  aspect-ratio: 1;
  content: "";
  background: rgb(255 36 66 / 8%);
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  width: min(calc(100% - 64px), var(--content));
  margin: 0 auto;
  padding: clamp(40px, 4vw, 64px) 0 clamp(32px, 3vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: clamp(36px, 4vw, 64px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__badge {
  width: max-content;
  max-width: 100%;
  margin: 0 0 20px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero__badge svg {
  width: 17px;
  fill: currentcolor;
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.25rem, 5vw, 4.75rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--brand);
}

.hero__lead {
  max-width: 34rem;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.75;
  text-wrap: pretty;
}

.download-picker {
  width: min(100%, 560px);
}

.platform-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  background: rgb(255 255 255 / 82%);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.platform-tabs button {
  min-width: 0;
  min-height: 44px;
  flex: 1;
  padding: 8px 12px;
  color: #4d5563;
  background: transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms var(--ease-out);
}

.platform-tabs button:hover {
  color: var(--brand);
}

.platform-tabs button[aria-selected="true"] {
  color: #fff;
  background: var(--brand-bright);
}

.download-picker__platform {
  display: none;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 7px 12px;
  color: var(--muted);
  background: var(--brand-soft);
  border-radius: 999px;
  font-size: 13px;
  text-wrap: pretty;
}

.download-picker__platform strong {
  color: var(--brand);
}

html[data-device-platform="android"] .platform-tabs,
html[data-device-platform="ios"] .platform-tabs {
  display: none;
}

html[data-device-platform="android"] .download-picker__platform,
html[data-device-platform="ios"] .download-picker__platform {
  display: block;
}

.download-panel {
  min-height: 128px;
  padding: 14px 0 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.download-panel__qr {
  width: 120px;
  height: 120px;
  padding: 8px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.download-panel__qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.download-panel__actions {
  min-width: 0;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.download-panel__status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.button {
  min-height: 48px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms var(--ease-out),
    background 180ms ease,
    color 180ms ease;
}

.button svg {
  width: 18px;
  fill: currentcolor;
}

.button--primary {
  color: #fff;
  background: var(--brand-bright);
}

.button--primary:hover {
  background: var(--brand);
  transform: translateY(-1px);
}

.button[aria-disabled="true"],
.button:disabled {
  color: #7d7475;
  background: #e7e1e2;
  cursor: not-allowed;
  pointer-events: none;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 680px);
  aspect-ratio: 0.88;
  min-height: 560px;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: var(--radius);
  box-shadow: 0 8px 8px rgb(74 20 30 / 10%);
  outline: 1px solid rgb(0 0 0 / 10%);
  outline-offset: -1px;
  cursor: pointer;
  transition: transform 180ms var(--ease-out);
}

.creator-chip,
.topic-chip,
.activity-chip,
.engagement-chip {
  position: absolute;
  background: rgb(255 255 255 / 94%);
  border: 1px solid rgb(255 255 255 / 72%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
}

.creator-chip {
  top: 3%;
  left: -7%;
  min-width: 250px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 14px;
}

.creator-chip img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.creator-chip span:nth-child(2) {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.creator-chip strong {
  font-size: 13px;
  line-height: 1.25;
}

.creator-chip small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 650;
}

.creator-chip__follow {
  padding: 4px 12px;
  color: #fff;
  background: var(--brand-bright);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
}

.topic-chip {
  top: 49%;
  right: -6%;
  padding: 9px 14px;
  color: var(--brand-bright);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.activity-chip {
  bottom: 14%;
  left: 3%;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 9px;
  font-size: 11px;
}

.activity-chip > span {
  width: 9px;
  height: 9px;
  background: var(--success);
  border-radius: 50%;
}

.engagement-chip {
  right: -3%;
  bottom: 7%;
  padding: 12px;
  display: grid;
  gap: 10px;
  border-radius: 12px;
}

.engagement-chip span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
}

.engagement-chip span:first-child {
  color: var(--brand);
}

.engagement-chip svg {
  width: 17px;
  fill: currentcolor;
}

.feature-section,
.scene-section {
  width: min(calc(100% - 64px), var(--content));
  margin: 0 auto;
  padding: clamp(64px, 6vw, 96px) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(32px, 3.5vw, 48px);
  text-align: center;
}

.section-heading h2,
.download-section h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-heading p,
.download-section__content > div:first-child p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.5vw, 18px);
  text-wrap: pretty;
}

.feature-section {
  width: auto;
  max-width: none;
  padding-top: clamp(24px, 2.5vw, 36px);
  padding-bottom: clamp(28px, 2.5vw, 36px);
  padding-inline: max(32px, calc((100vw - var(--content)) / 2));
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 34px);
}

.feature-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  background: #1d1718;
  border-radius: var(--radius);
  isolation: isolate;
}

.feature-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 1px solid rgb(0 0 0 / 10%);
  outline-offset: -1px;
  cursor: pointer;
  transition: transform 700ms var(--ease-out);
}

.feature-card:nth-child(1) > img {
  object-position: 50% 36%;
}

.feature-card:nth-child(2) > img {
  object-position: 50% 24%;
}

.feature-card:nth-child(3) > img {
  object-position: 50% 30%;
}

.feature-card:hover > img {
  transform: scale(1.035);
}

.feature-card__overlay {
  position: absolute;
  inset: 30% 0 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgb(0 0 0 / 82%));
  pointer-events: none;
}

.feature-card__content {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  pointer-events: none;
}

.feature-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.feature-card p {
  max-width: 32ch;
  margin: 10px 0 0;
  color: rgb(255 255 255 / 84%);
  font-size: 15px;
}

.content-pill {
  width: max-content;
  margin-bottom: 16px;
  padding: 7px 12px;
  display: block;
  color: #222;
  background: rgb(255 255 255 / 91%);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.play-button {
  position: absolute;
  top: 47%;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgb(25 15 16 / 34%);
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.play-button svg {
  width: 36px;
  fill: currentcolor;
}

.message-bubble {
  position: absolute;
  right: 8%;
  bottom: 24%;
  z-index: 2;
  max-width: 78%;
  padding: 10px 14px;
  color: #2e2728;
  background: rgb(255 255 255 / 91%);
  border-radius: 999px;
  font-size: 12px;
  pointer-events: none;
}

.scene-section {
  width: auto;
  max-width: none;
  padding-top: clamp(28px, 3vw, 44px);
  padding-bottom: clamp(32px, 3vw, 44px);
  padding-inline: max(32px, calc((100vw - var(--content)) / 2));
  background: linear-gradient(
    180deg,
    var(--surface-pure) 0,
    var(--surface) clamp(96px, 10vw, 160px)
  );
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
}

.scene-card {
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgb(0 0 0 / 6%),
    0 1px 2px -1px rgb(0 0 0 / 6%),
    0 8px 24px rgb(74 20 30 / 6%);
  transition: box-shadow 180ms ease-out;
}

.scene-card:hover {
  box-shadow:
    0 0 0 1px rgb(0 0 0 / 8%),
    0 2px 4px -1px rgb(0 0 0 / 8%),
    0 10px 28px rgb(74 20 30 / 9%);
}

.scene-card > img {
  width: 100%;
  height: clamp(300px, 28vw, 440px);
  object-fit: cover;
  outline: 1px solid rgb(0 0 0 / 10%);
  outline-offset: -1px;
  cursor: pointer;
  transition: transform 600ms var(--ease-out);
}

.scene-card:nth-child(1) > img {
  object-position: 50% 32%;
}

.scene-card:nth-child(2) > img,
.scene-card:nth-child(3) > img {
  object-position: 50% 25%;
}

.scene-card:nth-child(4) > img {
  object-position: 50% 22%;
}

.scene-card:hover > img {
  transform: scale(1.025);
}

.scene-card__body {
  padding: 20px;
}

.scene-card h3 {
  min-height: 3em;
  margin: 0;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.5;
  text-wrap: pretty;
}

.scene-card__meta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  white-space: nowrap;
}

.scene-card__meta span:last-child {
  color: var(--brand);
}

.download-band {
  padding: clamp(24px, 3vw, 36px) 0 clamp(32px, 4vw, 48px);
  background: linear-gradient(
    180deg,
    var(--surface) 0,
    #fff7f8 46%,
    var(--surface-pure) 100%
  );
}

.download-section {
  width: min(calc(100% - 64px), var(--content));
  min-height: 500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  background: #fff7f8;
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgb(0 0 0 / 6%),
    0 2px 4px -1px rgb(0 0 0 / 6%),
    0 18px 48px rgb(74 20 30 / 9%);
}

.download-section__visual {
  min-height: 500px;
  overflow: hidden;
}

.download-section__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  outline: 1px solid rgb(0 0 0 / 10%);
  outline-offset: -1px;
  cursor: pointer;
  transition: transform 180ms var(--ease-out);
}

img[data-app-download]:active,
.feature-card:hover > img[data-app-download]:active,
.scene-card:hover > img[data-app-download]:active {
  transform: scale(0.96);
}

.download-section__content {
  padding: clamp(36px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
}

.download-section h2 {
  max-width: none;
}

.download-picker--large {
  width: 100%;
}

.download-picker--large .download-panel {
  min-height: 178px;
}

.download-picker--large .button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
}

.download-picker--large .button--primary {
  box-shadow: 0 2px 6px rgb(201 0 50 / 18%);
}

.download-panel__qr--large {
  width: 160px;
  height: 160px;
}

.site-footer {
  padding: clamp(28px, 3vw, 40px) 24px max(32px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface-pure);
}

.brand-mark--footer .brand-mark__icon {
  width: 40px;
  height: 40px;
  font-size: 13px;
}

.brand-mark--footer .brand-mark__name {
  font-size: 22px;
}

.footer-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 30px;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #684200;
  font-size: 14px;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--brand);
}

.copyright {
  margin: 16px 0 0;
  color: #746e6f;
  font-size: 12px;
  text-align: center;
}

.toast {
  position: fixed;
  right: 50%;
  bottom: max(28px, env(safe-area-inset-bottom));
  z-index: var(--z-toast);
  padding: 11px 18px;
  color: #fff;
  background: rgb(27 28 28 / 94%);
  border-radius: 999px;
  font-size: 14px;
  transform: translate(50%, 12px);
  opacity: 0;
  transition:
    opacity 180ms ease,
    transform 180ms var(--ease-out);
}

.toast--visible {
  transform: translate(50%, 0);
  opacity: 1;
}

@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
    gap: 52px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
  }

  .creator-chip {
    left: -3%;
  }

  .topic-chip {
    right: -2%;
  }

  .scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scene-card > img {
    height: min(46vw, 440px);
  }

  .scene-card h3 {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .site-header__inner,
  .hero__inner,
  .feature-section,
  .scene-section,
  .download-section {
    width: min(calc(100% - 40px), 720px);
  }

  .site-header__inner {
    gap: 16px;
  }

  .brand-mark__icon {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .brand-mark__name {
    font-size: 21px;
  }

  .header-cta {
    padding-inline: 18px;
    font-size: 13px;
  }

  .hero__inner {
    min-height: auto;
    padding: 48px 0 24px;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .hero__copy,
  .download-picker,
  .download-panel,
  .download-panel__actions,
  .hero-visual {
    min-width: 0;
    max-width: 100%;
  }

  .hero__copy {
    width: 100%;
    text-align: center;
  }

  .hero h1 {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.25rem, 4vw, 4rem);
  }

  .hero h1 br {
    display: none;
  }

  .hero__lead {
    max-width: 42rem;
    margin-right: auto;
    margin-left: auto;
  }

  .hero__badge {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    order: -1;
    justify-self: center;
    width: min(92%, 580px);
  }

  .download-picker {
    max-width: 620px;
  }

  .feature-section {
    width: auto;
    padding-top: 20px;
    padding-inline: 20px;
  }

  .scene-section {
    width: auto;
    padding-inline: 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
  }

  .feature-card {
    min-height: min(78svh, 680px);
  }

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

  .download-section__visual {
    min-height: 380px;
    max-height: 480px;
  }

  .download-section__content {
    padding: 44px;
  }

  .download-section h2 {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .hero__inner,
  .site-header__inner,
  .scene-section,
  .download-section {
    width: min(calc(100% - 28px), 560px);
  }

  .hero {
    background:
      radial-gradient(
        circle at 84% 32%,
        rgb(255 201 206 / 36%),
        transparent 23%
      ),
      linear-gradient(180deg, var(--surface) 0%, #fff 100%);
  }

  .hero__inner {
    padding: 36px 0 24px;
    gap: 32px;
  }

  .hero__badge {
    margin-bottom: 20px;
  }

  .hero h1 {
    line-height: 1.08;
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.7;
  }

  .download-panel {
    min-height: auto;
    padding-top: 14px;
    align-items: flex-start;
    gap: 14px;
  }

  .platform-tabs {
    display: none;
  }

  .download-picker__platform {
    display: block;
  }

  .download-panel__qr {
    width: 112px;
    height: 112px;
    padding: 7px;
  }

  .download-panel__status {
    text-align: left;
  }

  .button {
    min-height: 48px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero-visual {
    width: 100%;
    min-height: 500px;
    aspect-ratio: 0.82;
  }

  .hero-visual > img {
    object-position: 50% 35%;
  }

  .creator-chip {
    top: 14px;
    left: 12px;
    min-width: min(240px, calc(100% - 52px));
    padding: 10px;
  }

  .topic-chip {
    top: 48%;
    right: 10px;
  }

  .engagement-chip {
    right: 10px;
    bottom: 18px;
  }

  .activity-chip {
    bottom: 22px;
    left: 10px;
  }

  .feature-section,
  .scene-section {
    padding-bottom: 56px;
  }

  .feature-section {
    padding-top: 20px;
    padding-bottom: 28px;
  }

  .scene-section {
    width: auto;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-inline: 14px;
  }

  .download-band {
    padding: 20px 0 32px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .hero h1,
  .section-heading h2,
  .download-section h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section-heading p,
  .download-section__content > div:first-child p {
    font-size: 14px;
  }

  .feature-card {
    min-height: 500px;
  }

  .feature-card__content {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .feature-card h3 {
    font-size: 26px;
  }

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

  .scene-card > img {
    height: clamp(184px, calc((100vw - 40px) * 0.658), 420px);
  }

  .scene-card__body {
    padding: 13px;
  }

  .scene-card h3 {
    min-height: 3.9em;
    font-size: 13px;
    line-height: 1.45;
  }

  .scene-card__meta {
    margin-top: 12px;
    gap: 5px;
    font-size: 10px;
  }

  .download-section {
    min-height: 0;
    margin: 0 auto;
  }

  .download-section__visual {
    min-height: 310px;
    max-height: 360px;
  }

  .download-section__visual img {
    object-position: 50% 31%;
  }

  .download-section__content {
    padding: 32px 22px 38px;
    gap: 26px;
  }

  .download-picker--large .download-panel {
    min-height: auto;
  }

  .site-footer {
    padding-top: 28px;
  }
}

@media (max-width: 390px) {
  .brand-mark__name {
    display: none;
  }

  .header-cta {
    padding-inline: 16px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .creator-chip {
    min-width: 220px;
  }

  .creator-chip__follow {
    display: none;
  }

  .activity-chip {
    display: none;
  }
}

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