:root {
  color-scheme: dark;
  --bg: #07080f;
  --bg-deep: #02030a;
  --panel: #121524;
  --panel-strong: #1a1d30;
  --text: #fff9ea;
  --text-cool: #f3f7ff;
  --muted: #c8cfdd;
  --muted-dark: #8790a3;
  --line: rgba(255, 255, 255, 0.16);
  --gold: #ffd75b;
  --gold-deep: #a45a08;
  --red: #ff244d;
  --cyan: #35e8ff;
  --magenta: #ff4ddb;
  --green: #26f59d;
  --button-text: #140b00;
  --shadow-hot: 0 18px 60px rgba(255, 36, 77, 0.24), 0 10px 34px rgba(255, 215, 91, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 36, 77, 0.11), rgba(2, 3, 10, 0.88) 34%, #07080f 100%),
    #07080f;
  content: "";
}

a {
  color: var(--cyan);
}

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

.page-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.site-header {
  width: 100%;
  padding: 0 28px;
}

.site-header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand install"
    "nav nav";
  align-items: center;
  gap: 12px 20px;
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: 14px 0 18px;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 8, 15, 0.86);
  backdrop-filter: blur(18px);
}

.page-shell .site-header {
  width: 100%;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.page-shell .site-header-inner {
  width: 100%;
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24), 0 10px 26px rgba(0, 0, 0, 0.34);
  object-fit: cover;
}

.brand-name,
.brand-caption {
  display: block;
}

.brand-name {
  color: #fff;
  font-weight: 900;
  line-height: 1.1;
}

.brand-caption {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.nav-links {
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-install {
  grid-area: install;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  max-width: 100%;
  min-height: 40px;
  line-height: 0;
}

.header-install .app-store-badge {
  width: 118px;
  max-width: min(118px, 28vw);
}

.app-store-badge {
  display: block;
  width: 148px;
  height: auto;
}

.app-store-badge-large {
  width: 236px;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  min-height: 800px;
  padding: 58px 0 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #05050c;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(2, 3, 10, 0.18), rgba(2, 3, 10, 0.72) 64%, #07080f 100%),
    url("/assets/rainbow-burst-background.png") center top / cover no-repeat;
  filter: saturate(1.18) contrast(1.06);
}

.landing-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0, rgba(255, 255, 255, 0.055) 1px, transparent 1px, transparent 7px),
    linear-gradient(90deg, rgba(255, 36, 77, 0.28), transparent 28%, transparent 72%, rgba(53, 232, 255, 0.22));
  mix-blend-mode: screen;
  opacity: 0.82;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.hero-kicker,
.section-kicker,
.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero-title {
  margin: 0 auto;
  line-height: 1;
}

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

.hero-lead {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--text-cool);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.9;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.78);
}

.hero-actions,
.actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.app-store-button,
.install-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
}

.ghost-button {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(2, 3, 10, 0.58);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.3);
}

.gold-button {
  border-color: rgba(255, 245, 170, 0.88);
  background:
    linear-gradient(180deg, #fff6bd 0%, #ffd044 34%, #c77709 72%, #5f2a00 100%);
  color: #1a0b00;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -2px 0 rgba(62, 23, 0, 0.4),
    0 10px 28px rgba(255, 205, 56, 0.24),
    0 0 18px rgba(255, 245, 170, 0.28);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.46);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(760px, 100%);
  margin: 28px auto 0;
}

.hero-proof div {
  min-height: 76px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(4, 5, 14, 0.62);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.hero-proof dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-proof dd {
  margin: 2px 0 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.hero-device-stage {
  position: absolute;
  left: 50%;
  bottom: -500px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 300px));
  justify-content: center;
  align-items: end;
  gap: 22px;
  width: min(1040px, calc(100% - 32px));
  margin: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.phone-shot {
  width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: #090b10;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.58),
    0 0 30px rgba(53, 232, 255, 0.22);
}

.phone-shot-main {
  transform: translateY(-18px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.72),
    0 0 46px rgba(255, 215, 91, 0.42);
}

.phone-shot-left,
.phone-shot-right {
  opacity: 0.94;
}

.quick-install,
.section-wrap,
.comparison-section,
.final-cta,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.quick-install {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.quick-install h2,
.section-heading h2,
.comparison-copy h2,
.final-cta h2,
.document h1 {
  margin: 0;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.install-inline {
  flex: 0 0 auto;
}

.section-wrap {
  padding: 92px 0 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading.compact {
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading p,
.comparison-copy p,
.final-cta p,
.document p,
.document li {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.feature-card {
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.feature-card:nth-child(1) {
  border-top-color: rgba(255, 215, 91, 0.72);
}

.feature-card:nth-child(2) {
  border-top-color: rgba(255, 36, 77, 0.72);
}

.feature-card:nth-child(3) {
  border-top-color: rgba(53, 232, 255, 0.72);
}

.feature-card:nth-child(4) {
  border-top-color: rgba(38, 245, 157, 0.72);
}

.feature-index {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
}

.feature-card h3 {
  margin: 12px 0 10px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.screenshot-band {
  margin-top: 100px;
  padding: 74px 0;
  background:
    linear-gradient(90deg, rgba(255, 36, 77, 0.22), rgba(255, 215, 91, 0.11), rgba(53, 232, 255, 0.2)),
    #0a0b12;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.screen-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 310px));
  justify-content: center;
  gap: 26px;
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
}

.screen-showcase figure {
  margin: 0;
}

.screen-showcase img {
  width: 100%;
  border: 3px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.48);
}

.screen-showcase figcaption {
  min-height: 54px;
  margin-top: 12px;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 900;
  text-align: center;
}

.install-flow {
  padding-top: 88px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: var(--panel-strong);
}

.flow-list span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 215, 91, 0.76);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

.flow-list strong {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-size: 1.06rem;
  line-height: 1.4;
}

.flow-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.comparison-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 28px;
  padding: 100px 0 0;
}

.comparison-copy {
  max-width: 650px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.comparison-panel {
  display: grid;
  gap: 10px;
  align-content: start;
}

.comparison-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 74px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(18, 21, 36, 0.86);
}

.comparison-panel strong {
  color: #fff;
  white-space: nowrap;
}

.comparison-panel span {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

.machine-list-section {
  padding-bottom: 8px;
}

.machine-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.machine-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015)),
    var(--panel-strong);
  color: var(--muted);
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.machine-card:hover {
  border-color: rgba(255, 215, 91, 0.56);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 24px rgba(255, 215, 91, 0.13);
}

.machine-card.compact {
  min-height: 170px;
}

.machine-card-meta {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.machine-card strong {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.35;
}

.machine-card span:not(.machine-card-meta) {
  font-size: 0.9rem;
  line-height: 1.55;
}

.machine-card-action {
  margin-top: auto;
  align-self: flex-start;
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.86rem;
}

.machine-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 88px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0 24px;
  color: var(--muted-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #fff;
}

.machine-hero {
  padding: 42px 0 52px;
}

.machine-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: 3.35rem;
  line-height: 1.16;
  letter-spacing: 0;
  text-shadow: 0 0 24px rgba(255, 215, 91, 0.2);
}

.machine-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--text-cool);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.85;
}

.machine-hero-punch {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.machine-hero-punch span {
  padding: 6px 11px;
  border: 1px solid rgba(255, 215, 91, 0.45);
  border-radius: 999px;
  background: rgba(255, 215, 91, 0.1);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

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

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

.machine-detail-grid article,
.machine-copy-section,
.machine-related,
.machine-group {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(18, 21, 36, 0.82);
}

.machine-detail-grid article {
  padding: 20px;
}

.machine-detail-grid h2,
.machine-copy-section h2,
.machine-related h2,
.machine-group h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1.14rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.machine-specs {
  display: grid;
  gap: 12px;
  margin: 0;
}

.machine-specs div {
  display: grid;
  gap: 4px;
}

.machine-specs dt {
  color: var(--muted-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.machine-specs dd {
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.machine-chip-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.machine-chip-list li {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.machine-copy-section,
.machine-related,
.machine-group {
  margin-top: 16px;
  padding: 24px;
}

.machine-copy-section {
  border-color: rgba(255, 215, 91, 0.28);
  background:
    linear-gradient(120deg, rgba(255, 36, 77, 0.14), rgba(255, 215, 91, 0.09), rgba(53, 232, 255, 0.1)),
    rgba(18, 21, 36, 0.9);
}

.machine-copy-section p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.machine-install-card p {
  margin: 0;
  color: var(--muted);
}

.machine-related .machine-card-grid,
.machine-group .machine-card-grid {
  margin-top: 0;
}

.faq-section {
  padding-bottom: 94px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: var(--panel);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #fff;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 80px;
  padding: 34px;
  border: 1px solid rgba(255, 215, 91, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 36, 77, 0.26), rgba(255, 215, 91, 0.16), rgba(53, 232, 255, 0.18)),
    var(--panel-strong);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 24px 0 100px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer div,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer p {
  width: 100%;
  margin: 0;
  color: var(--muted-dark);
}

.sticky-install {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 36px);
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 215, 91, 0.46);
  border-radius: 999px;
  background: rgba(7, 8, 15, 0.9);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.44), 0 0 26px rgba(255, 215, 91, 0.22);
  backdrop-filter: blur(16px);
}

.sticky-install span {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
}

.sticky-install a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.hero,
.document {
  padding-top: 44px;
}

.document {
  max-width: 780px;
}

.document h1 {
  margin-bottom: 18px;
}

.document h2 {
  margin: 34px 0 10px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.document section {
  padding-top: 2px;
}

.hero {
  max-width: 760px;
}

.hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 3.4rem;
  line-height: 1.25;
  letter-spacing: 0;
}

ul {
  padding-left: 1.25rem;
}

@media (max-width: 980px) {
  .landing-hero {
    min-height: 0;
    padding-top: 56px;
  }

  .hero-title-art {
    width: min(640px, 100%);
  }

  .hero-device-stage {
    grid-template-columns: repeat(3, minmax(120px, 240px));
    bottom: -390px;
    gap: 12px;
  }

  .feature-grid,
  .flow-list,
  .machine-card-grid,
  .machine-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .final-cta,
  .quick-install {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0 16px;
  }

  .site-header-inner {
    gap: 12px 14px;
  }

  .landing-header {
    position: static;
  }

  .nav-links {
    width: 100%;
    gap: 10px 14px;
  }

  .landing-hero {
    min-height: 700px;
    padding: 42px 0 34px;
  }

  .hero-title-art {
    width: min(360px, 100%);
  }

  .hero-lead {
    max-width: 330px;
    font-size: 1rem;
    overflow-wrap: anywhere;
    line-break: strict;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .app-store-button,
  .ghost-button,
  .install-inline {
    width: 100%;
  }

  .app-store-badge-large {
    width: min(230px, 100%);
  }

  .nav-install .app-store-badge {
    width: 108px;
    max-width: min(108px, 34vw);
  }

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

  .hero-proof div {
    min-height: 66px;
    padding: 10px 8px;
  }

  .hero-proof dt {
    font-size: 0.68rem;
  }

  .hero-proof dd {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .hero-device-stage {
    display: none;
  }

  .quick-install h2,
  .section-heading h2,
  .comparison-copy h2,
  .final-cta h2,
  .document h1 {
    font-size: 2rem;
  }

  .feature-grid,
  .flow-list,
  .machine-card-grid,
  .machine-detail-grid,
  .screen-showcase {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .flow-list li {
    min-height: 0;
  }

  .screenshot-band {
    margin-top: 70px;
    padding: 54px 0;
  }

  .screen-showcase {
    width: min(360px, calc(100% - 32px));
  }

  .comparison-panel div {
    align-items: flex-start;
    flex-direction: column;
  }

  .comparison-panel strong {
    white-space: normal;
  }

  .comparison-panel span {
    text-align: left;
  }

  .machine-page {
    width: min(100% - 24px, 1120px);
    padding: 24px 0 70px;
  }

  .machine-hero {
    padding: 28px 0 36px;
  }

  .machine-hero h1 {
    font-size: 2.15rem;
  }

  .machine-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .machine-hero-actions .button {
    width: 100%;
  }

  .machine-card {
    min-height: 0;
  }

  .final-cta {
    padding: 24px;
  }

  .sticky-install {
    right: 10px;
    bottom: 10px;
    left: 10px;
    justify-content: center;
    padding: 8px;
  }

  .sticky-install span {
    display: none;
  }

  .sticky-install a {
    width: auto;
    flex: 1 1 auto;
    justify-content: center;
  }

  .sticky-install .app-store-badge {
    width: min(156px, 100%);
  }
}

@media (max-width: 420px) {
  .hero-title-art {
    width: min(320px, 100%);
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .sticky-install span {
    font-size: 0.78rem;
  }
}

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

  .button,
  .machine-card {
    transition: none;
  }
}
