:root {
  color-scheme: dark;
  --bg: #151018;
  --bg-2: #21161a;
  --panel: #f6efe4;
  --panel-2: #fff9ef;
  --text: #f8efe3;
  --muted: #cdbfb0;
  --ink: #251a1a;
  --ink-soft: #654c44;
  --line: rgba(246, 239, 228, 0.18);
  --gold: #d3a05a;
  --gold-2: #efcb83;
  --wine: #7a2232;
  --rose: #c45267;
  --teal: #66cdd0;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(180deg, #151018 0%, #20131a 34%, #171114 100%);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.08em;
  height: 1.08em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  font-size: 52px;
  font-weight: 800;
}

h2 {
  font-size: 34px;
  font-weight: 760;
}

h3 {
  font-size: 20px;
  font-weight: 720;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 34px;
  border-bottom: 1px solid rgba(246, 239, 228, 0.12);
  background: rgba(21, 16, 24, 0.82);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand {
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
  opacity: 0.94;
  outline: none;
}

.brand img,
.footer-brand img {
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(214, 164, 95, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.brand:hover img,
.brand:focus-visible img {
  transform: rotate(-2deg) scale(1.04);
  box-shadow: 0 12px 30px rgba(211, 160, 90, 0.32);
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

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

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: rgba(248, 239, 227, 0.86);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(246, 239, 228, 0.1);
  outline: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a:hover .icon,
.site-nav a:focus-visible .icon {
  transform: translateY(-1px);
}

.site-nav .nav-download {
  margin-left: 8px;
  color: #21160f;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-weight: 800;
}

.site-nav .nav-download:hover,
.site-nav .nav-download:focus-visible {
  color: #21160f;
  background: linear-gradient(135deg, #ecc884, #f8d896);
}

.site-nav .nav-download::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 239, 228, 0.22);
  border-radius: var(--radius);
  background: rgba(246, 239, 228, 0.08);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(246, 239, 228, 0.14);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.98) contrast(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 10, 13, 0.92) 0%, rgba(19, 13, 16, 0.76) 38%, rgba(19, 13, 16, 0.34) 72%, rgba(19, 13, 16, 0.7) 100%),
    linear-gradient(180deg, rgba(21, 16, 24, 0.34) 0%, rgba(21, 16, 24, 0.86) 100%);
}

.hero-inner {
  position: relative;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 96px 0 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
  align-items: center;
}

.hero-copy {
  max-width: 740px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 800;
}

.hero-subtitle {
  margin-top: 14px;
  color: var(--teal);
  font-size: 20px;
  font-weight: 700;
}

.hero-text {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(248, 239, 227, 0.88);
  font-size: 18px;
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid rgba(246, 239, 228, 0.2);
  border-radius: var(--radius);
  font-weight: 800;
  overflow: hidden;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 45%, transparent 65%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 0.26s ease, transform 0.46s ease;
}

.btn span,
.btn .icon {
  position: relative;
  z-index: 1;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px) scale(1.015);
  outline: none;
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: translateX(120%);
}

.btn:hover .icon,
.btn:focus-visible .icon {
  transform: translateX(1px);
}

.btn.primary {
  color: #21160f;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: transparent;
  box-shadow: 0 14px 36px rgba(214, 164, 95, 0.24);
}

.btn.secondary {
  background: rgba(246, 239, 228, 0.08);
}

.btn.large {
  min-width: 150px;
  min-height: 52px;
}

.hero-facts {
  border: 1px solid rgba(240, 202, 130, 0.52);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(240, 202, 130, 0.16), rgba(114, 215, 217, 0.08)),
    rgba(0, 0, 0, 0.34);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 38px rgba(214, 164, 95, 0.18);
}

.hero-preview {
  position: relative;
  overflow: hidden;
  height: clamp(320px, 47vh, 370px);
  padding: 12px;
}

.hero-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 1px rgba(246, 239, 228, 0.12);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.hero-preview::before,
.hero-preview::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  pointer-events: none;
}

.hero-preview::before {
  left: 10px;
  top: 10px;
  border-left: 2px solid var(--gold-2);
  border-top: 2px solid var(--gold-2);
}

.hero-preview::after {
  right: 10px;
  bottom: 10px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
}

.hero-preview:hover img {
  transform: scale(1.018);
  filter: saturate(1.04) contrast(1.03);
}

.hero-preview:hover::before {
  transform: translate(5px, 5px);
}

.hero-preview:hover::after {
  transform: translate(-5px, -5px);
}

.hero-preview::before,
.hero-preview::after {
  transition: transform 0.24s ease;
}

.section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 92px 0;
}

.section-head {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-head.compact {
  max-width: 760px;
}

.section-head p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.intro-grid,
.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.text-panel,
.feature-card,
.timeline-item,
.faq-list details {
  border: 1px solid rgba(246, 239, 228, 0.14);
  border-radius: var(--radius);
  background: rgba(246, 239, 228, 0.065);
}

.text-panel {
  padding: 30px;
}

.text-panel p {
  margin-top: 15px;
  color: var(--muted);
}

.media-panel {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(246, 239, 228, 0.12);
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.media-panel.tall img {
  object-position: 48% center;
}

.media-panel figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  background: rgba(13, 10, 12, 0.72);
}

.media-panel:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.03);
}

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

.feature-card {
  min-height: 230px;
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 164, 95, 0.38);
  background: rgba(246, 239, 228, 0.095);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #20140d;
  background: var(--gold);
  font-weight: 900;
  font-size: 14px;
}

.feature-card p {
  margin-top: 12px;
  color: var(--muted);
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  min-height: 560px;
  border-top: 1px solid rgba(246, 239, 228, 0.12);
  border-bottom: 1px solid rgba(246, 239, 228, 0.12);
  background: var(--panel);
  color: var(--ink);
}

.story-image {
  min-height: 560px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px 56px;
}

.story-copy .eyebrow {
  color: var(--wine);
}

.story-copy p {
  margin-top: 18px;
  color: var(--ink-soft);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 3px;
  border-radius: 4px;
  background: var(--rose);
}

.guide-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
}

.guide-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: guide;
}

.guide-steps li {
  position: relative;
  min-height: 130px;
  padding: 22px 24px 22px 78px;
  border: 1px solid rgba(246, 239, 228, 0.14);
  border-radius: var(--radius);
  background: rgba(246, 239, 228, 0.065);
  counter-increment: guide;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.guide-steps li::before {
  content: counter(guide, decimal-leading-zero);
  position: absolute;
  left: 22px;
  top: 23px;
  color: var(--teal);
  font-weight: 900;
}

.guide-steps p {
  margin-top: 9px;
  color: var(--muted);
}

.guide-steps li:hover {
  transform: translateX(4px);
  border-color: rgba(102, 205, 208, 0.38);
  background: rgba(246, 239, 228, 0.09);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.guide-shot img {
  object-position: 50% center;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--rose), var(--teal));
}

.timeline-item {
  position: relative;
  margin-left: 48px;
  padding: 22px 24px;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 27px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--bg);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(214, 164, 95, 0.5);
}

.timeline-item time {
  color: var(--teal);
  font-weight: 800;
}

.timeline-item h3 {
  margin-top: 8px;
}

.timeline-item p {
  margin-top: 10px;
  color: var(--muted);
}

.timeline-item:hover {
  transform: translateX(5px);
  border-color: rgba(211, 160, 90, 0.38);
  background: rgba(246, 239, 228, 0.09);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.timeline-item:hover::before {
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(102, 205, 208, 0.14);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.faq-list summary {
  min-height: 58px;
  padding: 17px 22px;
  cursor: pointer;
  font-weight: 820;
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.faq-list p {
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(211, 160, 90, 0.34);
  background: rgba(246, 239, 228, 0.09);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.download-band {
  width: min(100% - 48px, var(--max));
  margin: 20px auto 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(246, 239, 228, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(122, 34, 50, 0.58), rgba(114, 215, 217, 0.12)),
    rgba(246, 239, 228, 0.07);
}

.download-band p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 12px;
  color: var(--muted);
}

.friend-links {
  margin-top: -42px;
  padding: 54px 24px 62px;
  border-top: 1px solid rgba(246, 239, 228, 0.1);
  background:
    radial-gradient(circle at 50% 34%, rgba(102, 205, 208, 0.12), transparent 28%),
    linear-gradient(180deg, #151018 0%, #121116 100%);
}

.friend-links-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  text-align: center;
}

.friend-links h2 {
  color: var(--text);
  font-size: 28px;
}

.friend-links nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.friend-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 28px;
  border: 1px solid rgba(246, 239, 228, 0.18);
  border-radius: 999px;
  color: rgba(248, 239, 227, 0.82);
  background:
    linear-gradient(180deg, rgba(246, 239, 228, 0.11), rgba(246, 239, 228, 0.05)),
    rgba(246, 239, 228, 0.04);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, color 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.friend-links a:hover,
.friend-links a:focus-visible {
  color: #fff;
  border-color: rgba(239, 203, 131, 0.48);
  background:
    linear-gradient(180deg, rgba(211, 160, 90, 0.22), rgba(102, 205, 208, 0.08)),
    rgba(246, 239, 228, 0.08);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(211, 160, 90, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.site-footer {
  border-top: 1px solid rgba(246, 239, 228, 0.12);
  background: #100c12;
}

.footer-inner {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  font-weight: 820;
}

.footer-inner p {
  max-width: 660px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  max-width: 360px;
}

.footer-inner nav a {
  padding: 6px 10px;
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(246, 239, 228, 0.05);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.footer-inner nav a:hover,
.footer-inner nav a:focus-visible {
  color: var(--text);
  background: rgba(246, 239, 228, 0.1);
  transform: translateY(-1px);
  outline: none;
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(246, 239, 228, 0.22);
  border-radius: var(--radius);
  color: #21160f;
  background: var(--gold);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top .icon {
  width: 20px;
  height: 20px;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (max-width: 980px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .site-header {
    padding: 12px 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(246, 239, 228, 0.16);
    border-radius: var(--radius);
    background: rgba(21, 16, 24, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav .nav-download {
    margin-left: 0;
  }

  .hero-inner,
  .intro-grid,
  .guide-layout,
  .story-band {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    width: min(100% - 36px, var(--max));
    gap: 28px;
  }

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

  .story-image,
  .story-image img {
    min-height: 390px;
  }

  .story-copy {
    padding: 46px 32px;
  }

  .footer-inner,
  .download-band {
    grid-template-columns: 1fr;
  }

  .download-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .friend-links {
    margin-top: -28px;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 19px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    object-position: 62% center;
  }

  .hero-inner {
    width: min(100% - 28px, var(--max));
    padding: 76px 0 34px;
  }

  .hero-facts {
    display: none;
  }

  .hero-text,
  .section-head p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

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

  .section {
    width: min(100% - 28px, var(--max));
    padding: 66px 0;
  }

  .text-panel,
  .feature-card,
  .timeline-item,
  .download-band {
    padding: 22px;
  }

  .media-panel img {
    min-height: 300px;
  }

  .story-image,
  .story-image img {
    min-height: 320px;
  }

  .story-copy {
    padding: 34px 22px;
  }

  .guide-steps li {
    padding: 52px 20px 20px;
  }

  .guide-steps li::before {
    left: 20px;
    top: 20px;
  }

  .download-band {
    width: min(100% - 28px, var(--max));
    margin-bottom: 66px;
  }

  .friend-links {
    margin-top: -34px;
    padding: 44px 14px 52px;
  }

  .friend-links h2 {
    font-size: 25px;
  }

  .friend-links nav {
    gap: 10px;
    margin-top: 22px;
  }

  .friend-links a {
    min-height: 42px;
    padding: 9px 18px;
  }

  .footer-inner {
    width: min(100% - 28px, var(--max));
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
