:root {
  --ink: #073538;
  --ink-deep: #03282b;
  --ink-soft: #0f4b4a;
  --gold: #f4b93f;
  --gold-pale: #ffe6a3;
  --cream: #fff8e8;
  --paper: #fffcf4;
  --text: #0b3032;
  --muted: #607372;
  --line: rgba(7, 53, 56, .13);
  --shadow: 0 30px 80px rgba(4, 42, 44, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  padding: 0 max(5vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 252, 244, .92);
  border-bottom: 1px solid rgba(7, 53, 56, .08);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: 50% 47%;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.brand span { display: grid; line-height: 1.05; }
.brand b { font-size: 21px; letter-spacing: .04em; }
.brand small { margin-top: 6px; color: #9a7027; font-size: 10px; letter-spacing: .15em; }
nav { display: flex; gap: 38px; font-size: 14px; font-weight: 700; }
nav a { position: relative; padding: 28px 0 24px; }
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 18px;
  height: 2px;
  background: var(--gold);
  transition: right .25s ease;
}
nav a:hover::after { right: 0; }
.header-download {
  padding: 11px 21px;
  color: #fff8e8;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.header-download:hover { transform: translateY(-2px); background: var(--ink-soft); }

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  max-height: 880px;
  padding: clamp(38px, 5vh, 64px) max(5vw, 24px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(520px, .92fr);
  align-items: center;
  gap: clamp(36px, 5vw, 86px);
  overflow: hidden;
  background:
    linear-gradient(rgba(244,185,63,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,185,63,.055) 1px, transparent 1px),
    radial-gradient(circle at 83% 20%, #fff0bf 0, transparent 31%),
    var(--cream);
  background-size: 42px 42px, 42px 42px, auto, auto;
}
.hero::before {
  content: "";
  position: absolute;
  right: -110px;
  top: -130px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(244,185,63,.35);
  border-radius: 50%;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.glow-one { width: 16px; height: 16px; left: 47%; top: 18%; background: var(--gold); box-shadow: 0 0 30px var(--gold); }
.glow-two { width: 8px; height: 8px; left: 6%; bottom: 22%; background: var(--gold); box-shadow: 0 0 24px var(--gold); }
.hero-copy { position: relative; z-index: 5; max-width: 760px; }
.hero-copy, .hero-visual { min-width: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(7,53,56,.18);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255,255,255,.6);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}
.eyebrow i { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.hero h1 {
  margin: 24px 0 18px;
  font-size: clamp(48px, 4.4vw, 76px);
  line-height: 1.08;
  letter-spacing: -.045em;
  white-space: nowrap;
}
.hero h1 em { color: var(--ink); font-style: normal; position: relative; }
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 2%; right: 0; bottom: 1px;
  height: 13px;
  z-index: -1;
  background: var(--gold);
  border-radius: 999px;
  opacity: .68;
}
.hero-copy > p { width: 100%; max-width: 620px; margin: 0; color: #526563; font-size: 18px; line-height: 1.8; }
.hero-benefits { margin: 24px 0 0; padding: 0; display: grid; gap: 11px; list-style: none; color: var(--ink-deep); font-size: 16px; font-weight: 750; }
.hero-benefits li::before { content: "✓"; display: inline-grid; width: 23px; height: 23px; margin-right: 11px; place-items: center; color: #fff; background: #4d9a6f; border-radius: 50%; font-size: 13px; }
.hero-actions { margin-top: 28px; display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.primary-button, .secondary-button, .light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}
.primary-button {
  min-height: 56px;
  padding: 0 25px;
  color: #fff9eb;
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(3,40,43,.23);
}
.primary-button:hover, .secondary-button:hover, .light-button:hover { transform: translateY(-3px); }
.windows-mark { color: var(--gold); font-size: 26px; line-height: 1; }
.tutorial-button { min-height: 56px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(7,53,56,.23); border-radius: 14px; background: rgba(255,255,255,.66); font-size: 15px; font-weight: 850; transition: transform .2s ease, background .2s ease; }
.tutorial-button:hover { transform: translateY(-2px); background: #fff; }
.tutorial-button span { color: #b47c12; }
.hero-copy > .hero-note { margin-top: 15px; color: #70817f; font-size: 12px; line-height: 1.55; }

.hero-visual { position: relative; z-index: 2; width: min(100%, 690px); height: clamp(440px, 53vw, 570px); justify-self: end; isolation: isolate; }
.terminal-window { position: absolute; overflow: hidden; color: rgba(229,245,235,.73); background: #082d2f; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; box-shadow: 0 25px 55px rgba(3,40,43,.2); font: 12px/1.65 Consolas, monospace; }
.terminal-back { width: 82%; height: 42%; top: 2%; right: 2%; transform: rotate(4deg); }
.terminal-side { width: 62%; height: 31%; top: 25%; left: -2%; transform: rotate(-7deg); background: #132a2c; }
.terminal-title { height: 33px; padding: 0 12px; display: flex; align-items: center; gap: 6px; background: rgba(0,0,0,.24); }
.terminal-title span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.25); }
.terminal-title b { margin-left: 7px; color: rgba(255,255,255,.63); font-size: 10px; font-weight: 500; }
.terminal-content { padding: 14px 18px; }
.terminal-content p { margin: 2px 0; }
.terminal-error { color: #ef9188; }
.assistant-window { position: absolute; z-index: 4; width: 86%; right: 1%; top: 20%; overflow: hidden; border: 1px solid rgba(7,53,56,.15); border-radius: 19px; background: #fbfcfa; box-shadow: 0 34px 80px rgba(3,40,43,.26), 0 0 0 6px rgba(255,255,255,.36); transform: perspective(1100px) rotateY(-3deg) rotateZ(.3deg); }
.assistant-titlebar { height: 52px; padding: 0 15px; display: flex; align-items: center; justify-content: space-between; color: #fff; background: var(--ink-deep); }
.assistant-brand { display: flex; align-items: center; gap: 10px; }
.assistant-logo { width: 25px; height: 25px; display: grid; place-items: center; color: var(--ink-deep); background: var(--gold); border-radius: 8px; font-size: 12px; font-weight: 950; }
.assistant-brand b { font-size: 13px; }
.window-controls { display: flex; gap: 18px; color: rgba(255,255,255,.7); font-size: 12px; }
.assistant-body { padding: 25px 28px 24px; }
.assistant-heading { display: flex; align-items: center; gap: 13px; }
.complete-icon { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; background: #4f9f72; border-radius: 15px; box-shadow: 0 10px 24px rgba(79,159,114,.23); font-size: 25px; font-weight: 900; }
.assistant-heading small { color: var(--muted); font-size: 10px; }
.assistant-heading h2 { margin: 3px 0 0; color: var(--ink-deep); font-size: 25px; }
.progress-track { height: 7px; margin: 20px 0; overflow: hidden; background: #e9eee9; border-radius: 99px; }
.progress-track span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, #59aa78, #f0b438); }
.completion-list { margin: 0; padding: 0; display: grid; gap: 9px; list-style: none; }
.completion-list li { padding: 10px 12px; display: flex; align-items: center; gap: 11px; border: 1px solid #e2e8e1; border-radius: 11px; background: #fff; }
.completion-list li > span { width: 25px; height: 25px; flex: 0 0 25px; display: grid; place-items: center; color: #fff; background: #4f9f72; border-radius: 50%; font-size: 12px; font-weight: 900; }
.completion-list div { display: grid; gap: 2px; }
.completion-list b { color: #183e3c; font-size: 12px; }
.completion-list small { color: #7a8986; font-size: 9px; }
.ready-bar { margin-top: 16px; padding: 11px 13px; display: flex; align-items: center; gap: 8px; color: #41685e; background: #eaf5ed; border-radius: 10px; font-size: 10px; }
.ready-bar i { width: 7px; height: 7px; background: #4f9f72; border-radius: 50%; }
.ready-bar b { margin-left: auto; color: var(--ink-deep); font-size: 10px; }
.hero-mascot { position: absolute; z-index: 6; width: 34%; height: auto; right: -5%; bottom: 0; filter: drop-shadow(0 18px 20px rgba(3,40,43,.18)); }

.brand-strip {
  padding: 26px max(5vw, 24px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #fff6de;
  background: var(--ink-deep);
  border-top: 3px solid var(--gold);
}
.brand-strip div { padding: 9px 5vw; display: grid; gap: 5px; border-right: 1px solid rgba(255,230,163,.2); }
.brand-strip div:first-child { padding-left: 0; }
.brand-strip div:last-child { border-right: 0; }
.brand-strip b { color: var(--gold-pale); font-size: 17px; }
.brand-strip span { color: rgba(255,255,255,.62); font-size: 12px; }

.companion-section {
  padding: 110px max(5vw, 24px);
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 8vw;
  background: #fffdf8;
}
.companion-visual {
  position: relative;
  aspect-ratio: 1 / .92;
  overflow: hidden;
  border: 1px solid rgba(221,153,38,.28);
  border-radius: 32px;
  background: #fff8e9;
  box-shadow: var(--shadow);
}
.companion-visual img { width: 100%; height: 100%; padding: 7%; object-fit: contain; }
.companion-copy > span { color: #c98217; font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.companion-copy h2 { margin: 17px 0 20px; font-size: clamp(40px, 4.7vw, 68px); line-height: 1.12; letter-spacing: -.045em; }
.companion-copy > p { max-width: 620px; color: var(--muted); font-size: 17px; line-height: 1.9; }
.companion-values { margin-top: 33px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.companion-values div { padding: 20px 16px; display: grid; gap: 7px; border: 1px solid rgba(221,153,38,.25); border-radius: 17px; background: #fff8e9; }
.companion-values b { color: #a9680c; font-size: 17px; }
.companion-values small { color: #7c7f76; font-size: 11px; line-height: 1.55; }

.product-section, .features-section { padding: 120px max(5vw, 24px); }
.section-heading > span, .steps-copy > span, .download-section > div > span {
  color: #b57b10;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-heading h2, .steps-copy h2, .download-section h2 {
  margin: 18px 0 14px;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.15;
  letter-spacing: -.045em;
}
.section-heading p, .steps-copy p { color: var(--muted); font-size: 16px; }
.product-card {
  margin-top: 52px;
  min-height: 520px;
  padding: 56px;
  display: grid;
  grid-template-columns: 160px minmax(280px, .8fr) minmax(390px, 1.2fr);
  align-items: center;
  gap: 45px;
  border: 1px solid rgba(7,53,56,.12);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.product-icon img { width: 154px; height: 154px; object-fit: cover; border: 5px solid var(--gold); border-radius: 35px; box-shadow: 0 18px 40px rgba(3,40,43,.18); }
.version { color: #af7510; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.product-info h3 { margin: 12px 0 14px; font-size: 32px; line-height: 1.2; }
.product-info > p { color: var(--muted); line-height: 1.8; }
.product-info ul { margin: 22px 0 28px; padding: 0; display: grid; gap: 10px; list-style: none; font-size: 14px; }
.product-info li::before { content: "✓"; margin-right: 10px; color: #b5790d; font-weight: 900; }
.secondary-button { padding: 13px 18px; color: var(--ink-deep); background: var(--gold); }
.app-preview { border: 1px solid rgba(7,53,56,.13); border-radius: 18px; background: #f7f8f5; box-shadow: 0 24px 70px rgba(3,40,43,.18); transform: rotate(-1.5deg); }
.preview-bar { height: 46px; padding: 0 15px; display: flex; align-items: center; gap: 7px; color: #fff; background: var(--ink-deep); border-radius: 17px 17px 0 0; }
.preview-bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); }
.preview-bar b { margin-left: 7px; font-size: 10px; letter-spacing: .04em; }
.preview-body { padding: 31px; }
.preview-badge { padding: 5px 8px; color: #9d6a0c; background: #fff0c4; border-radius: 7px; font-size: 10px; font-weight: 800; }
.preview-body h4 { margin: 14px 0 22px; font-size: 20px; }
.preview-option { margin-top: 10px; padding: 14px 16px; display: grid; grid-template-columns: 1fr auto; gap: 4px 20px; border: 1px solid #e0e5df; border-radius: 11px; background: #fff; }
.preview-option strong { font-size: 13px; }
.preview-option small { color: #77827f; font-size: 10px; }
.preview-option b { grid-row: 1 / 3; grid-column: 2; align-self: center; color: #b67c12; }
.preview-option.active { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(244,185,63,.13); }
.preview-status { margin-top: 20px; color: #507067; font-size: 10px; }
.preview-status i { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: #48a36b; }

.features-section { color: #fff6e2; background: var(--ink-deep); }
.centered { text-align: center; }
.centered > span { color: var(--gold); }
.feature-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-grid article { position: relative; min-height: 330px; padding: 34px; border: 1px solid rgba(255,230,163,.17); border-radius: 23px; background: rgba(255,255,255,.035); }
.feature-grid article.featured { color: var(--ink-deep); background: var(--gold); border-color: var(--gold); transform: translateY(-12px); }
.feature-number { color: rgba(255,255,255,.35); font-size: 12px; font-weight: 900; }
.featured .feature-number { color: rgba(3,40,43,.47); }
.feature-symbol { margin-top: 48px; width: 57px; height: 57px; display: grid; place-items: center; color: var(--gold); border: 1px solid currentColor; border-radius: 17px; font-size: 28px; }
.featured .feature-symbol { color: var(--ink-deep); }
.feature-grid h3 { margin: 25px 0 13px; font-size: 24px; }
.feature-grid p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.8; font-size: 14px; }
.featured p { color: rgba(3,40,43,.72); }

.steps-section { padding: 120px max(5vw, 24px); display: grid; grid-template-columns: .78fr 1.22fr; gap: 9vw; align-items: center; background: var(--cream); }
.steps-list { margin: 0; padding: 0; display: grid; list-style: none; }
.steps-list li { padding: 29px 0; display: grid; grid-template-columns: 58px 1fr; gap: 22px; border-bottom: 1px solid var(--line); }
.steps-list li:first-child { border-top: 1px solid var(--line); }
.steps-list li > b { width: 48px; height: 48px; display: grid; place-items: center; color: var(--ink-deep); background: var(--gold); border-radius: 50%; font-size: 18px; }
.steps-list h3 { margin: 2px 0 8px; font-size: 20px; }
.steps-list p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 14px; }

.download-section { margin: 0 max(3vw, 18px) 30px; padding: 60px max(4vw, 30px); display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 50px; color: #fff7e4; background: var(--ink-deep); border-radius: 32px; overflow: hidden; }
.download-mascot { align-self: stretch; position: relative; min-height: 210px; }
.download-mascot img { position: absolute; width: 260px; max-width: none; left: -50px; top: -62px; border-radius: 50%; }
.download-section h2 { margin-bottom: 0; font-size: clamp(34px, 4vw, 57px); }
.download-section > div > span { color: var(--gold); }
.download-section p { color: rgba(255,255,255,.62); }
.light-button { min-height: 58px; padding: 0 24px; color: var(--ink-deep); background: var(--gold-pale); white-space: nowrap; }

.site-footer { padding: 48px max(5vw, 24px) 28px; background: #fffcf4; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { width: 55px; height: 55px; object-fit: cover; border-radius: 50%; border: 2px solid var(--gold); }
.footer-brand div { display: grid; gap: 4px; }
.footer-brand b { font-size: 20px; }
.footer-brand span { color: var(--muted); font-size: 12px; }
.footer-links { margin: 34px 0; display: flex; gap: 28px; font-size: 13px; font-weight: 800; }
.legal { padding-top: 22px; display: flex; gap: 12px 20px; flex-wrap: wrap; border-top: 1px solid var(--line); color: #768482; font-size: 11px; }
.legal a:hover { color: #a66f0c; }

@media (max-width: 1050px) {
  .hero { max-height: none; grid-template-columns: 1fr; padding-top: 58px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(720px, 94%); height: 560px; justify-self: center; margin-top: 8px; }
  .product-card { grid-template-columns: 120px 1fr; }
  .product-icon img { width: 120px; height: 120px; }
  .app-preview { grid-column: 1 / -1; }
  .download-section { grid-template-columns: 130px 1fr; }
  .download-section .light-button { grid-column: 2; justify-self: start; }
  .companion-section { grid-template-columns: 1fr 1fr; gap: 5vw; }
  .companion-values { grid-template-columns: 1fr; }
}

@media (max-width: 740px) {
  .site-header { height: 66px; padding: 0 17px; }
  .brand img { width: 38px; height: 38px; }
  .brand b { font-size: 18px; }
  .brand small { font-size: 8px; }
  nav { display: none; }
  .header-download { display: none; }
  .hero { width: 100%; max-width: 100vw; min-height: auto; padding: 38px 20px 56px; grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .hero > * { width: 100%; max-width: calc(100vw - 40px); }
  .hero-copy > p { width: auto; max-width: none; }
  .hero h1 { margin-top: 19px; font-size: clamp(36px, 10.8vw, 48px); line-height: 1.14; white-space: normal; }
  .hero-copy > p { font-size: 16px; line-height: 1.75; }
  .hero-benefits { margin-top: 20px; gap: 9px; font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .primary-button, .tutorial-button { width: 100%; }
  .hero-copy > .hero-note { font-size: 11px; text-align: center; }
  .hero-visual { width: 100%; max-width: calc(100vw - 40px); height: clamp(330px, 92vw, 360px); margin-top: 0; }
  .terminal-back { width: 84%; height: 34%; right: 2%; }
  .terminal-side { display: none; }
  .terminal-content { padding: 9px 12px; font-size: 8px; }
  .terminal-title { height: 25px; }
  .assistant-window { width: 94%; right: 2%; top: 18%; border-radius: 14px; }
  .assistant-titlebar { height: 39px; padding: 0 11px; }
  .assistant-brand b { font-size: 10px; }
  .assistant-logo { width: 21px; height: 21px; border-radius: 6px; font-size: 9px; }
  .window-controls { gap: 10px; font-size: 9px; }
  .assistant-body { padding: 15px 16px; }
  .complete-icon { width: 36px; height: 36px; border-radius: 10px; font-size: 18px; }
  .assistant-heading h2 { font-size: 19px; }
  .progress-track { margin: 12px 0; height: 5px; }
  .completion-list { gap: 6px; }
  .completion-list li { padding: 7px 9px; gap: 8px; }
  .completion-list li > span { width: 20px; height: 20px; flex-basis: 20px; font-size: 9px; }
  .completion-list b { font-size: 10px; }
  .completion-list small { display: none; }
  .ready-bar { margin-top: 9px; padding: 8px 9px; }
  .hero-mascot { width: 34%; right: -4%; bottom: -1%; }
  .brand-strip { grid-template-columns: 1fr 1fr; padding: 20px; }
  .brand-strip div { padding: 16px; border-bottom: 1px solid rgba(255,230,163,.16); }
  .brand-strip div:nth-child(2) { border-right: 0; }
  .brand-strip div:nth-child(3), .brand-strip div:nth-child(4) { border-bottom: 0; }
  .companion-section { padding: 72px 20px; grid-template-columns: 1fr; gap: 35px; }
  .companion-visual { aspect-ratio: 1 / 1.03; border-radius: 23px; }
  .companion-copy h2 { font-size: 41px; }
  .companion-copy > p { font-size: 15px; }
  .companion-values { grid-template-columns: 1fr; }
  .product-section, .features-section { padding: 78px 20px; }
  .section-heading h2, .steps-copy h2 { font-size: 40px; }
  .product-card { margin-top: 38px; padding: 28px 22px; grid-template-columns: 1fr; gap: 26px; border-radius: 23px; }
  .product-icon img { width: 92px; height: 92px; border-radius: 23px; }
  .product-info h3 { font-size: 26px; }
  .app-preview { grid-column: auto; }
  .preview-body { padding: 22px 17px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article, .feature-grid article.featured { min-height: 280px; transform: none; }
  .feature-symbol { margin-top: 30px; }
  .steps-section { padding: 78px 20px; grid-template-columns: 1fr; gap: 35px; }
  .steps-list li { grid-template-columns: 46px 1fr; gap: 15px; }
  .steps-list li > b { width: 42px; height: 42px; }
  .download-section { margin: 0 12px 18px; padding: 42px 25px; grid-template-columns: 1fr; gap: 24px; border-radius: 24px; }
  .download-mascot { min-height: 120px; }
  .download-mascot img { width: 185px; left: -21px; top: -48px; }
  .download-section .light-button { grid-column: auto; width: 100%; }
  .site-footer { padding: 40px 20px 24px; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy { animation: rise .7s ease both; }
  .hero-visual { animation: rise .8s .08s ease both; }
  @keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
}

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