:root {
  --blue: #4a77ff;
  --blue-deep: #12347d;
  --ink: #0b0d12;
  --muted: #666;
  --line: #e5e7eb;
  --paper: #f6f7f8;
  --white: #fff;
  --header-height: 76px;
  --shell: min(1180px, calc(100% - 48px));
  color-scheme: light;
  font-family:
    "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    system-ui, -apple-system, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: #000;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    background 240ms ease,
    color 240ms ease,
    height 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled {
  height: 64px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(10, 24, 56, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 20px;
  font-weight: 720;
  letter-spacing: 0.06em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
}

.site-header.is-scrolled .header-cta {
  color: #fff;
  background: var(--ink);
}

.header-cta:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: url("./assets/hero-shop.jpg?v=20260725-2") 62% center / cover no-repeat;
  transform: scale(1.035);
  animation: hero-image-in 1.6s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 34, 90, 0.98) 0%, rgba(15, 50, 120, 0.87) 35%, rgba(15, 50, 120, 0.16) 70%),
    linear-gradient(0deg, rgba(4, 11, 28, 0.34), transparent 46%);
}

.hero-copy {
  width: var(--shell);
  margin: var(--header-height) auto 0;
  padding: 52px 0 58px;
}

.eyebrow {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.eyebrow span {
  color: #8faeff;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 6.35vw, 98px);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero-intro {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.75;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.store-button {
  min-width: 184px;
  min-height: 58px;
  padding: 8px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 16px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.store-button:hover,
.store-button:focus-visible {
  transform: translateY(-3px);
}

.store-button svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  flex: 0 0 auto;
}

.store-button span {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 15px;
  font-weight: 680;
  line-height: 1.15;
}

.store-button small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.7;
}

.store-button-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

.store-button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.store-button-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.58);
}

.hero-note {
  margin: 16px 0 0 2px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.pc-login-link {
  width: fit-content;
  min-height: 44px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 620;
}

.pc-login-link span,
.download-pc-link span {
  transition: transform 180ms ease;
}

.pc-login-link:hover span,
.pc-login-link:focus-visible span,
.download-pc-link:hover span,
.download-pc-link:focus-visible span {
  transform: translateX(4px);
}

.hero-reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-copy-in 720ms cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.hero-reveal:nth-child(1) { animation-delay: 180ms; }
.hero-reveal:nth-child(2) { animation-delay: 280ms; }
.hero-reveal:nth-child(3) { animation-delay: 390ms; }
.hero-reveal:nth-child(4) { animation-delay: 500ms; }
.hero-reveal:nth-child(5) { animation-delay: 590ms; }
.hero-reveal:nth-child(6) { animation-delay: 660ms; }

.scroll-cue {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.scroll-cue svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  animation: scroll-cue 1.7s ease-in-out infinite;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.statement {
  padding: 132px 0 118px;
}

.section-kicker {
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.section-kicker span {
  color: var(--blue);
  font-weight: 720;
}

.section-kicker p {
  margin: 0;
}

.statement-grid {
  padding: 72px 0 84px;
  display: grid;
  grid-template-columns: 1.5fr 0.72fr;
  gap: 80px;
  align-items: end;
}

.statement h2,
.workflow h2,
.proof h2,
.download h2 {
  margin: 0;
  font-size: clamp(42px, 5.1vw, 76px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.lead {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.capability-list {
  border-top: 1px solid var(--ink);
}

.capability-row {
  min-height: 126px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition:
    padding 220ms ease,
    color 220ms ease;
}

.capability-row:hover {
  padding-left: 12px;
  padding-right: 12px;
  color: var(--blue-deep);
}

.capability-index {
  color: #a0a6b2;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.capability-row h3 {
  margin: 0 0 7px;
  font-size: 28px;
  font-weight: 670;
}

.capability-row p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.capability-tag {
  color: #8d8d8d;
  font-size: 13px;
}

.workflow {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 75% 45%, rgba(75, 120, 255, 0.32), transparent 31%),
    linear-gradient(135deg, #071a48, #123a89 64%, #173b80);
  overflow: hidden;
}

.workflow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 100% 120px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.workflow-inner {
  min-height: 830px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 96px;
  align-items: center;
}

.workflow-copy {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.68);
  border-color: rgba(255, 255, 255, 0.16);
  margin-bottom: 60px;
}

.section-kicker-light span {
  color: #8eacff;
}

.workflow-copy > p {
  max-width: 490px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.85;
}

.workflow-steps {
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.workflow-steps li {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.workflow-steps span {
  color: #87a8ff;
  font-size: 11px;
}

.phone-stage {
  position: relative;
  z-index: 2;
  height: 710px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.phone-glow {
  position: absolute;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 62px rgba(255, 255, 255, 0.035),
    0 0 0 124px rgba(255, 255, 255, 0.018);
}

.phone {
  position: relative;
  width: 326px;
  height: 664px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 48px;
  color: var(--ink);
  background: #080b12;
  box-shadow: 0 42px 90px rgba(1, 8, 29, 0.46);
  transform: rotateY(-7deg) rotateX(2deg);
  transition: transform 120ms linear;
}

.phone-top {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 20px;
  right: 20px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 700;
}

.phone-sensors {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 92px;
  height: 24px;
  background: #080b12;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-status {
  display: flex;
  align-items: end;
  gap: 2px;
}

.phone-status i {
  width: 3px;
  background: #111;
  border-radius: 2px;
}

.phone-status i:nth-child(1) { height: 5px; }
.phone-status i:nth-child(2) { height: 7px; }
.phone-status i:nth-child(3) { width: 12px; height: 6px; border-radius: 2px; }

.app-screen {
  width: 100%;
  height: 100%;
  padding: 48px 18px 20px;
  background: var(--paper);
  border-radius: 39px;
  overflow: hidden;
}

.app-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-heading > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-heading small,
.app-summary small,
.app-metrics small {
  color: #8d8d8d;
  font-size: 10px;
}

.app-heading strong {
  font-size: 17px;
}

.avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 12px;
}

.app-summary {
  margin-top: 20px;
  padding: 21px 19px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #fff;
}

.app-summary strong {
  margin-top: 6px;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.app-summary em {
  font-size: 14px;
  font-style: normal;
}

.app-summary span {
  margin-top: 6px;
  color: #2e9d63;
  font-size: 9px;
}

.app-metrics {
  margin-top: 10px;
  padding: 17px 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 18px;
  background: #fff;
}

.app-metrics div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-right: 1px solid #eee;
}

.app-metrics div:last-child {
  border: 0;
}

.app-metrics strong {
  font-size: 16px;
}

.app-section-title {
  margin: 20px 1px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}

.app-section-title span {
  color: #8d8d8d;
  font-size: 9px;
}

.app-shortcuts {
  padding: 16px 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 18px;
  background: #fff;
}

.app-shortcuts div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 8px;
}

.app-shortcuts i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eef2ff;
  border-radius: 10px;
  font-style: normal;
  font-weight: 700;
}

.chart {
  height: 118px;
  padding: 14px 12px 0;
  background: #fff;
  border-radius: 18px;
}

.chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-line {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.chart-fill {
  fill: url("#chart-fill");
}

.proof {
  padding: 132px 0;
}

.module-layout {
  padding-top: 72px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 92px;
}

.proof h2 {
  font-size: clamp(40px, 4.3vw, 66px);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.module-item {
  min-height: 174px;
  padding: 26px 24px 25px 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: start;
  column-gap: 12px;
  border-bottom: 1px solid var(--line);
}

.module-item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.module-item:nth-child(even) {
  padding-left: 24px;
}

.module-item > span {
  padding-top: 7px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.module-item h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 670;
}

.module-item p {
  grid-column: 2;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.download {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 100px 24px;
  text-align: center;
  background: #eef2ff;
  overflow: hidden;
}

.download-content {
  position: relative;
  z-index: 2;
}

.download-content > img {
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(34, 62, 138, 0.18);
}

.download-content > p {
  margin: 28px 0 12px;
  color: var(--blue-deep);
  font-size: 14px;
}

.download h2 {
  font-size: clamp(56px, 7vw, 96px);
}

.download-actions {
  justify-content: center;
  margin-top: 34px;
}

.store-button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(11, 13, 18, 0.14);
}

.store-button-dark:hover {
  background: var(--blue-deep);
}

.download-hint {
  display: block;
  margin-top: 18px;
  color: #7a8190;
  font-size: 11px;
}

.download-pc-link {
  width: fit-content;
  min-height: 44px;
  margin: 8px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 650;
}

.download-orbit {
  position: absolute;
  border: 1px solid rgba(74, 119, 255, 0.16);
  border-radius: 50%;
}

.download-orbit-a {
  width: 720px;
  height: 720px;
  animation: orbit-pulse 7s ease-in-out infinite;
}

.download-orbit-b {
  width: 1000px;
  height: 1000px;
  animation: orbit-pulse 7s 1.2s ease-in-out infinite;
}

.site-footer {
  min-height: 120px;
  width: var(--shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 30px;
  color: #8d8d8d;
  font-size: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  border-radius: 11px;
}

.footer-brand span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 15px;
}

.footer-brand small {
  font-size: 9px;
  letter-spacing: 0.1em;
}

.footer-record {
  text-underline-offset: 4px;
}

.footer-record:hover,
.footer-record:focus-visible {
  color: var(--ink);
  text-decoration: underline;
}

.toast {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom));
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  color: #fff;
  background: rgba(11, 13, 18, 0.92);
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  font-size: 13px;
  backdrop-filter: blur(12px);
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 720ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@keyframes hero-image-in {
  from { opacity: 0; transform: scale(1.1); }
  to { opacity: 1; transform: scale(1.035); }
}

@keyframes hero-copy-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-cue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes orbit-pulse {
  0%, 100% { transform: scale(0.96); opacity: 0.5; }
  50% { transform: scale(1.03); opacity: 1; }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
    --shell: min(100% - 32px, 680px);
  }

  .site-header {
    height: 64px;
    padding-inline: 16px;
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .brand {
    font-size: 17px;
  }

  .brand img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .header-actions {
    gap: 0;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero-media {
    background-image: url("./assets/hero-mobile.jpg?v=20260726-1");
    background-position: center top;
    transform: scale(1.015);
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(4, 19, 53, 0.99) 0%, rgba(7, 31, 76, 0.95) 43%, rgba(8, 31, 72, 0.18) 76%),
      linear-gradient(90deg, rgba(5, 20, 52, 0.22), rgba(10, 40, 87, 0.08));
  }

  .hero-copy {
    margin-top: 0;
    padding: 120px 0 52px;
  }

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

  .hero h1 {
    max-width: 530px;
    font-size: clamp(42px, 12.8vw, 64px);
    line-height: 1.05;
  }

  .hero-intro {
    max-width: 450px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.7;
  }

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

  .store-button {
    min-width: 0;
    min-height: 56px;
    padding: 8px 15px;
    flex: 1 1 150px;
    border-radius: 14px;
  }

  .scroll-cue {
    display: none;
  }

  .statement,
  .proof {
    padding: 90px 0;
  }

  .statement-grid {
    padding: 48px 0 58px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .statement h2,
  .workflow h2,
  .proof h2 {
    font-size: clamp(38px, 10vw, 55px);
  }

  .lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .capability-row {
    min-height: 0;
    padding: 24px 0;
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .capability-row:hover {
    padding-inline: 0;
  }

  .capability-row h3 {
    font-size: 23px;
  }

  .capability-row p {
    line-height: 1.65;
  }

  .capability-tag {
    grid-column: 2;
    margin-top: -5px;
    color: var(--blue);
  }

  .workflow-inner {
    min-height: 0;
    padding-bottom: 74px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .workflow-copy {
    padding: 84px 0 10px;
  }

  .section-kicker-light {
    margin-bottom: 46px;
  }

  .phone-stage {
    height: 610px;
  }

  .phone {
    width: 292px;
    height: 594px;
    border-radius: 43px;
    transform: none;
  }

  .app-screen {
    border-radius: 35px;
    padding-inline: 16px;
  }

  .phone-glow {
    width: 370px;
    height: 370px;
  }

  .module-layout {
    padding-top: 50px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .module-item,
  .module-item:nth-child(even) {
    min-height: 0;
    padding: 24px 0;
  }

  .module-item:nth-child(odd) {
    border-right: 0;
  }

  .download {
    min-height: 560px;
    padding: 80px 16px;
  }

  .download h2 {
    font-size: clamp(52px, 17vw, 76px);
  }

  .download-actions {
    width: min(100%, 390px);
    margin-inline: auto;
  }

  .site-footer {
    min-height: 190px;
    padding: 38px 0;
    grid-template-columns: 1fr;
    gap: 12px;
    align-content: center;
  }
}

@media (max-width: 410px) {
  .header-cta {
    font-size: 13px;
  }

  .hero-copy {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }

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

  .store-button span {
    font-size: 13px;
  }

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

  .phone-stage {
    height: 570px;
  }

  .phone {
    width: 276px;
    height: 560px;
  }

  .app-summary {
    margin-top: 14px;
  }

  .app-section-title {
    margin-top: 15px;
  }
}

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

  .reveal,
  .hero-reveal {
    opacity: 1;
    transform: none;
  }
}
