/* Live Captions 实时字幕 — soft glass design system (taro purple -> sakura pink) */

:root {
  --taro: #b8a9c9;
  --sakura: #f8c8dc;
  --peach: #fbd9c9;
  --cream: #fbf7fa;
  --ink: #4a3b52;
  --muted: #7a6b83;
  --deep: #6f5b86;
  --rose: #c7739a;
  --glass: rgba(255, 255, 255, 0.55);
  --glass-soft: rgba(255, 255, 255, 0.38);
  --line: rgba(255, 255, 255, 0.75);
  --inner: inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -10px 18px rgba(184, 169, 201, 0.12);
  --shadow: 0 24px 48px rgba(111, 91, 134, 0.14);
  --shadow-soft: 0 12px 28px rgba(111, 91, 134, 0.1);
  --radius: 28px;
  --font: ui-rounded, "SF Pro Rounded", "Yuanti SC", "YouYuan", "Hiragino Maru Gothic ProN", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { overflow-x: clip; scrollbar-width: thin; scrollbar-color: #c9b6d4 transparent; }

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--taro), var(--sakura));
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
}

::selection { background: rgba(248, 200, 220, 0.65); }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background: linear-gradient(160deg, #fbf7fa 0%, #f6eff6 48%, #fbf2f6 100%);
  color: var(--ink);
  font: 16px/1.7 var(--font);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(199, 115, 154, 0.7);
  outline-offset: 3px;
  border-radius: 14px;
}

/* ---- neon glow backdrop ---- */

.aura {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.aura i {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.68;
}

.aura i:nth-child(1) {
  width: 46vw; height: 46vw;
  top: -8vw; left: -10vw;
  background: radial-gradient(circle at 35% 35%, var(--taro), transparent 70%);
  animation: drift 26s ease-in-out infinite alternate;
}

.aura i:nth-child(2) {
  width: 42vw; height: 42vw;
  top: 6vh; right: -12vw;
  background: radial-gradient(circle at 60% 40%, var(--sakura), transparent 70%);
  animation: drift 32s ease-in-out infinite alternate-reverse;
}

.aura i:nth-child(3) {
  width: 36vw; height: 36vw;
  bottom: -10vw; left: 28vw;
  background: radial-gradient(circle at 50% 50%, var(--peach), transparent 70%);
  animation: drift 38s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4vw, 3vh, 0) scale(1.08); }
}

/* ---- shared glass surface ---- */

.glass,
.facts > div,
.item,
.price,
.sheet,
.install-panel,
.browser-card,
.install-journey li,
.faq details,
.steps li {
  background: var(--glass);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  backdrop-filter: blur(18px) saturate(1.5);
  border: 1px solid var(--line);
  box-shadow: var(--inner), var(--shadow);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass,
  .facts > div,
  .item,
  .price,
  .sheet,
  .install-panel,
  .browser-card,
  .install-journey li,
  .faq details,
  .nav,
  .button,
  .cue {
    background: rgba(255, 255, 255, 0.94);
  }
}

.wrap { max-width: 1120px; margin: auto; padding: 0 24px; }

/* ---- header ---- */

.nav {
  position: sticky;
  top: 16px;
  z-index: 20;
  margin-top: 22px;
  padding: 10px 12px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-radius: 999px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  backdrop-filter: blur(18px) saturate(1.5);
  border: 1px solid var(--line);
  box-shadow: var(--inner), var(--shadow-soft);
}

.brand { font-weight: 800; font-size: 18px; text-decoration: none; letter-spacing: 0.01em; }

.nav nav { display: flex; gap: 26px; font-size: 14.5px; }

.nav nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  transition: color 0.4s ease;
}

.nav nav a:hover { color: var(--rose); }

/* ---- buttons: transparent glass, fill on hover ---- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--glass-soft);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  backdrop-filter: blur(12px) saturate(1.4);
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 22px rgba(111, 91, 134, 0.12);
  transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
}

.button:hover {
  background: linear-gradient(120deg, var(--taro), var(--sakura));
  border-color: transparent;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 14px 30px rgba(199, 115, 154, 0.35);
  transform: translateY(-2px);
}

.button.ghost { background: rgba(255, 255, 255, 0.22); }

.button:focus-visible { border-radius: 999px; }

/* ---- typography ---- */

.eyebrow {
  margin: 0;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep);
}

.eyebrow::before { content: "\2726\00a0"; color: var(--rose); }

h1, h2, h3 { font-weight: 800; letter-spacing: 0.01em; }

.hero h1, .page-title { font-size: 52px; line-height: 1.16; margin: 16px 0 22px; }

h2 { font-size: 30px; line-height: 1.3; margin: 0 0 14px; }

.hero p, .lede { font-size: 18px; color: var(--muted); max-width: 640px; }

.marker {
  padding: 0 0.08em;
  white-space: nowrap;
  background: linear-gradient(120deg, rgba(184, 169, 201, 0.55), rgba(248, 200, 220, 0.7)) no-repeat bottom / 100% 0.4em;
  border-radius: 6px;
}

/* ---- hero ---- */

.hero {
  padding: 96px 0 64px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

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

.stage { position: relative; }

.doodle { position: absolute; z-index: 2; pointer-events: none; }

.doodle.star { width: 54px; top: -28px; right: -16px; transform: rotate(12deg); }

.doodle.squiggle { width: 116px; bottom: -26px; left: -32px; transform: rotate(-6deg); }

/* subtitle demo card */
.screen {
  padding: 16px;
  border-radius: 30px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  backdrop-filter: blur(18px) saturate(1.5);
  border: 1px solid var(--line);
  box-shadow: var(--inner), var(--shadow);
  transform: rotate(1.2deg);
  font-size: 14px;
}

.screen-top { display: flex; gap: 7px; padding: 2px 4px 14px; }

.screen-top i { width: 10px; height: 10px; border-radius: 50%; background: var(--sakura); }
.screen-top i:nth-child(2) { background: var(--taro); }
.screen-top i:nth-child(3) { background: var(--peach); }

.video {
  position: relative;
  overflow: hidden;
  height: 280px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 20px;
  background: linear-gradient(160deg, #7e6a94 0%, #5c4a70 55%, #3e324b 100%);
  color: #fff;
}

.video::before {
  content: "";
  position: absolute;
  width: 60%; height: 60%;
  top: -22%; right: -12%;
  background: radial-gradient(circle, rgba(248, 200, 220, 0.4), transparent 70%);
  filter: blur(30px);
}

.cue {
  position: relative;
  max-width: 92%;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(30, 22, 38, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 18px rgba(20, 12, 28, 0.25);
}

.cue b { display: block; color: var(--sakura); font-weight: 700; }

/* ---- fact cards ---- */

.facts {
  padding: 40px 24px 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.facts > div { border-radius: 22px; padding: 26px 28px; box-shadow: var(--inner), var(--shadow-soft); }

.facts strong { display: block; font-size: 19px; margin-bottom: 6px; }

.facts span { font-size: 14.5px; color: var(--muted); }

/* ---- sections & feature grid ---- */

section { padding: 96px 0 0; }

section:last-of-type { padding-bottom: 96px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 34px; }

.item { border-radius: var(--radius); padding: 32px 28px; }

.item .icon { width: 64px; height: 64px; display: block; margin-bottom: 18px; }

.item h3 { margin: 0 0 8px; font-size: 19px; }

.item p { margin: 0; color: var(--muted); }

.install-panel { border-radius: 34px; padding: 64px; text-align: center; }

.install-panel .lede { margin-left: auto; margin-right: auto; }

.install-panel .actions { justify-content: center; }

/* ---- download and installation guide ---- */

.download-page { max-width: 1120px; }

.download-section { padding: 76px 0 0; }

.download-section:last-child { padding-bottom: 0; }

.browser-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 34px; }

.browser-card { border-radius: var(--radius); padding: 34px 32px; }

.browser-card svg { width: 68px; height: 68px; display: block; margin-bottom: 18px; }

.browser-card h3 { margin: 0 0 12px; font-size: 21px; }

.browser-card ol { margin: 0 0 24px; padding-left: 1.35em; color: var(--muted); }

.browser-card li + li { margin-top: 8px; }

.browser-card .button { width: 100%; }

.direct-download-panel { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 34px; padding: 32px 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--glass); box-shadow: var(--inner), var(--shadow); }

.direct-download-panel h3 { margin: 14px 0 8px; font-size: 21px; }

.direct-download-panel p { max-width: 680px; margin: 0; color: var(--muted); }

.direct-download-panel .button { flex: none; }

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

.direct-install-grid .item { min-height: 100%; }

.direct-install-grid code { font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 0.88em; overflow-wrap: anywhere; }

.install-intro { max-width: 680px; margin: 0; }

.install-guide { list-style: none; counter-reset: install-guide-step; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin: 30px 0 0; padding: 0; }

.install-guide li { counter-increment: install-guide-step; overflow: hidden; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--line); box-shadow: var(--inner), var(--shadow); }

.install-guide figure { position: relative; margin: 0; background: #f7f1f8; }

.install-guide figure::before { content: counter(install-guide-step); position: absolute; z-index: 1; top: 18px; left: 18px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: #fff; font-weight: 800; background: linear-gradient(135deg, var(--taro), var(--sakura)); box-shadow: 0 6px 14px rgba(199, 115, 154, 0.3); }

.install-guide img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.install-guide figcaption { position: absolute; right: 18px; bottom: 14px; padding: 3px 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.82); color: var(--deep); font-size: 12px; font-weight: 800; }

.install-guide li > div { padding: 26px 28px 30px; }

.install-guide h3 { margin: 0 0 9px; font-size: 20px; }

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

.install-guide code { font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 0.88em; overflow-wrap: anywhere; }

.install-journey { list-style: none; counter-reset: install-step; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }

.install-journey li { counter-increment: install-step; position: relative; border-radius: var(--radius); padding: 30px 28px; }

.install-journey li::before { content: counter(install-step); position: absolute; top: 22px; right: 22px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--taro), var(--sakura)); color: #fff; font-size: 14px; font-weight: 800; }

.install-journey svg { width: 72px; height: 72px; display: block; margin-bottom: 18px; }

.install-journey strong { display: block; margin-bottom: 7px; font-size: 18px; }

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

/* ---- inner pages ---- */

.page { padding: 80px 0 110px; max-width: 820px; }

.page.wide { max-width: 1120px; }

.page h2 { margin-top: 48px; }

.page p, .page li { color: var(--muted); }

.page .sheet { border-radius: 32px; padding: 56px 64px; margin-top: 36px; }

.page .sheet h2:first-child { margin-top: 0; }

.duo { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.illu-card {
  border-radius: 34px;
  padding: 44px;
  display: grid;
  place-items: center;
  transform: rotate(-1deg);
}

.illu-card svg { width: 100%; max-width: 320px; height: auto; }

/* ---- pricing ---- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(248, 200, 220, 0.35);
  border: 1px solid rgba(248, 200, 220, 0.65);
  color: var(--deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price { border-radius: var(--radius); padding: 36px 32px; display: flex; flex-direction: column; gap: 10px; }

.price h2 { margin: 0; font-size: 22px; }

.price strong {
  font-size: 34px;
  background: linear-gradient(120deg, #8e7ba6, var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price p { margin: 0; color: var(--muted); }

/* ---- faq accordion ---- */

.faq details { border-radius: 22px; padding: 2px 24px; margin: 0 0 16px; box-shadow: var(--inner), var(--shadow-soft); }

.faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-weight: 800;
  cursor: pointer;
}

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

.faq summary::after {
  content: "";
  flex: none;
  width: 11px; height: 11px;
  margin-right: 4px;
  border-right: 2.5px solid var(--deep);
  border-bottom: 2.5px solid var(--deep);
  transform: rotate(45deg);
  transition: transform 0.35s ease;
}

.faq details[open] summary::after { transform: rotate(225deg); }

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

/* ---- steps, chips, honesty list, text links ---- */

.steps { list-style: none; counter-reset: step; margin: 36px 0 0; padding: 0; display: grid; gap: 18px; }

.steps li {
  counter-increment: step;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-radius: 22px;
  padding: 24px 26px;
  box-shadow: var(--inner), var(--shadow-soft);
}

.steps li::before {
  content: counter(step);
  flex: none;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--taro), var(--sakura));
  color: #fff;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 6px 14px rgba(199, 115, 154, 0.3);
}

.steps strong { display: block; margin-bottom: 4px; font-size: 17.5px; }

.steps p { margin: 0; color: var(--muted); }

.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 28px 0 4px; }

.chips li {
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(248, 200, 220, 0.28);
  border: 1px solid rgba(248, 200, 220, 0.6);
  color: var(--deep);
  font-weight: 700;
  font-size: 14.5px;
}

.chips li:nth-child(even) {
  background: rgba(184, 169, 201, 0.22);
  border-color: rgba(184, 169, 201, 0.5);
}

.sorry-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }

.sorry-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }

.sorry-list li::before { content: "\00d7"; flex: none; color: var(--rose); font-weight: 800; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 800;
  color: var(--rose);
  text-decoration: none;
}

.text-link::after { content: "\2192"; transition: transform 0.4s ease; }

.text-link:hover::after { transform: translateX(4px); }

/* ---- content extensions ---- */

.section-intro { max-width: 700px; }

.section-intro p { color: var(--muted); }

.status-line { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 14px 0 0; }

.badge.pending {
  background: rgba(251, 217, 201, 0.52);
  border-color: rgba(251, 217, 201, 0.8);
  letter-spacing: 0.04em;
  text-transform: none;
}

.badge.local {
  background: rgba(184, 169, 201, 0.28);
  border-color: rgba(184, 169, 201, 0.62);
  letter-spacing: 0.04em;
  text-transform: none;
}

.notice {
  margin: 26px 0 0;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(251, 217, 201, 0.34);
  border: 1px solid rgba(251, 217, 201, 0.72);
  color: var(--deep);
}

.notice strong { color: var(--ink); }

.release-note {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(248, 200, 220, 0.22);
  border: 1px dashed rgba(199, 115, 154, 0.55);
  color: var(--muted);
  font-size: 14px;
}

.release-note strong { color: var(--rose); }

.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 34px; }

.path-grid .item { min-height: 100%; }

.path-label { margin: 0 0 12px; color: var(--rose); font-size: 13px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }

.compare-wrap { overflow-x: auto; margin-top: 30px; border-radius: 24px; box-shadow: var(--inner), var(--shadow-soft); }

.compare-table,
.data-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  background: var(--glass);
  color: var(--muted);
}

.compare-table th,
.compare-table td,
.data-table th,
.data-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(184, 169, 201, 0.2);
  text-align: left;
  vertical-align: top;
}

.compare-table th,
.data-table th {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.28);
}

.compare-table tr:last-child td,
.data-table tr:last-child td { border-bottom: 0; }

.compare-table td:first-child,
.data-table td:first-child { color: var(--ink); font-weight: 700; }

.table-wrap { overflow-x: auto; margin: 24px 0 0; border-radius: 22px; box-shadow: var(--inner), var(--shadow-soft); }

.table-note { margin: 12px 0 0; color: var(--muted); font-size: 14px; }

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 0;
}

.legal-nav a { color: var(--rose); font-weight: 800; text-decoration: none; }

.legal-nav a:hover { text-decoration: underline; }

.mobile-nav { display: none; }

.mobile-nav summary {
  list-style: none;
  min-height: 38px;
  padding: 5px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass-soft);
  color: var(--deep);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.mobile-nav summary::-webkit-details-marker { display: none; }

.mobile-nav nav {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 8;
  min-width: 170px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.mobile-nav nav a {
  display: block;
  padding: 8px 12px;
  border-radius: 12px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav nav a:hover { background: rgba(248, 200, 220, 0.35); }

.button[aria-disabled="true"] {
  cursor: default;
  opacity: 0.78;
}

.button[aria-disabled="true"]:hover {
  background: var(--glass-soft);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 22px rgba(111, 91, 134, 0.12);
  transform: none;
}

/* ---- footer ---- */

.footer { padding: 48px 0 56px; font-size: 14px; color: var(--muted); }

.footer nav { display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: center; }

.footer a { text-decoration: none; font-weight: 700; transition: color 0.4s ease; }

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

/* ---- reduced motion & responsive ---- */

@media (prefers-reduced-motion: reduce) {
  .aura i { animation: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 760px) {
  .wrap { padding: 0 18px; }
  .nav { padding: 10px 10px 10px 20px; }
  .nav nav { display: none; }
  .mobile-nav { display: block; position: relative; margin-left: auto; }
  .mobile-nav nav { display: block; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 56px 0 40px; }
  .hero h1, .page-title { font-size: 36px; }
  h2 { font-size: 25px; }
  .facts { grid-template-columns: 1fr; }
  section { padding-top: 72px; }
  .install-panel { padding: 40px 26px; }
  .page { padding: 56px 0 80px; }
  .page .sheet { padding: 34px 24px; }
  .duo { grid-template-columns: 1fr; gap: 40px; }
  .browser-grid,
  .install-journey,
  .install-guide { grid-template-columns: 1fr; }
  .direct-download-panel { align-items: flex-start; flex-direction: column; }
  .direct-download-panel .button { width: 100%; }
  .direct-install-grid { grid-template-columns: 1fr; }
  .download-section { padding-top: 56px; }
  .video { height: 230px; }
  .path-grid { grid-template-columns: 1fr; }
  .compare-table,
  .data-table { min-width: 600px; }
  .doodle.star { right: -6px; }
  .doodle.squiggle { left: -12px; }
}
