:root {
  --ink: #17201d;
  --ink-soft: #53605a;
  --paper: #f8f5ed;
  --paper-deep: #eee8da;
  --white: #fffdf8;
  --sage: #526a5d;
  --sage-dark: #31473d;
  --copper: #a66b3d;
  --line: rgba(42, 58, 51, 0.16);
  --shadow: 0 26px 70px rgba(46, 54, 47, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 14px; background: var(--ink); color: white; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 237, 0.9);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(1240px, calc(100% - 48px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 180px; }
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--sage-dark);
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: .08em;
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 17px; font-weight: 600; }
.brand small { margin-top: 2px; color: var(--ink-soft); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 28px; }
.desktop-nav a { color: var(--ink-soft); font-size: 13px; font-weight: 600; }
.desktop-nav a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.language-switch { display: inline-flex; min-width: 42px; min-height: 40px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 999px; color: var(--sage-dark); font-size: 12px; font-weight: 800; }
.language-switch:hover { border-color: var(--sage); background: rgba(255, 253, 248, .7); }
.language-suggestion { position: relative; z-index: 40; padding: 12px 24px; color: var(--white); background: var(--sage-dark); }
.language-suggestion[hidden] { display: none; }
.language-suggestion-inner { width: min(1120px, 100%); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 14px; font-size: 13px; }
.language-suggestion a { padding-bottom: 2px; border-bottom: 1px solid currentColor; font-weight: 800; }
.language-suggestion button { padding: 4px 8px; border: 0; color: rgba(255,255,255,.72); background: transparent; cursor: pointer; }
html[lang="zh-CN"] body { font-family: "PingFang SC", "Microsoft YaHei", Inter, ui-sans-serif, sans-serif; }
html[lang="zh-CN"] h1, html[lang="zh-CN"] h2, html[lang="zh-CN"] h3, html[lang="zh-CN"] .brand strong, html[lang="zh-CN"] .asset-placeholder strong, html[lang="zh-CN"] .definition-box strong { font-family: "Songti SC", "STSong", Georgia, serif; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  background: var(--sage-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); background: #23372f; }
.button-small { min-height: 40px; padding: 0 17px; font-size: 12px; }
.text-link { padding: 12px 4px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 700; }

.hero {
  position: relative;
  isolation: isolate;
  width: min(1240px, calc(100% - 48px));
  min-height: 690px;
  margin: 0 auto;
  padding: 86px 0 74px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 68px;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 540px;
  height: 540px;
  left: -300px;
  top: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 179, 163, .28), transparent 66%);
}
.launch-note { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 27px; color: var(--sage-dark); font-size: 12px; font-weight: 700; }
.launch-note span { padding: 5px 8px; border-radius: 999px; background: var(--copper); color: white; font-size: 9px; letter-spacing: .12em; }
.eyebrow { margin: 0 0 18px; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero h1 {
  margin: 0;
  max-width: 660px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 5.7vw, 82px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}
.hero h1 em { color: var(--sage); font-weight: 400; }
.hero-lead { max-width: 600px; margin: 29px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 31px; }
.hero > .hero-copy > .hero-actions { flex-wrap: wrap; }
.hero > .hero-copy > .hero-actions .microcopy { flex: 1 0 100%; }
html[lang="zh-CN"] .hero > .hero-copy > .hero-actions .button,
html[lang="zh-CN"] .hero > .hero-copy > .hero-actions .text-link { min-width: 250px; box-sizing: border-box; white-space: nowrap; }
.offer-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 43px 0 0; border-top: 1px solid var(--line); }
.offer-facts div { padding: 18px 14px 0 0; }
.offer-facts div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.offer-facts dt { font-family: Georgia, serif; font-size: 20px; }
.offer-facts dd { margin: 5px 0 0; color: var(--ink-soft); font-size: 11px; line-height: 1.4; }

.hero-stage {
  position: relative;
  min-height: 510px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(50, 66, 58, .28);
  border-radius: 26px;
  background: linear-gradient(145deg, #dce1d7, #9caea1);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.window-chrome { height: 38px; display: flex; align-items: center; gap: 7px; padding: 0 4px 12px; }
.window-chrome span { width: 9px; height: 9px; border-radius: 50%; background: rgba(33, 48, 40, .28); }
.window-chrome small { margin-left: auto; color: rgba(25, 41, 33, .58); font-size: 9px; letter-spacing: .08em; }
.hero-stage-video { min-height: 0; }
.hero-video-shell {
  position: relative;
  z-index: 2;
  aspect-ratio: 1200 / 932;
  overflow: hidden;
  border: 1px solid rgba(39, 56, 47, .34);
  border-radius: 16px;
  background: #15201b;
}
.hero-video { display: block; width: 100%; height: 100%; object-fit: cover; background: #15201b; }
.asset-placeholder {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 430px;
  padding: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(39, 56, 47, .46);
  border-radius: 16px;
  background: rgba(255, 253, 248, .68);
  text-align: center;
}
.asset-placeholder strong { max-width: 420px; font-family: Georgia, serif; font-size: 22px; line-height: 1.3; }
.asset-placeholder p { max-width: 430px; margin: 14px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.asset-placeholder small { margin-top: 18px; color: var(--sage-dark); font-size: 9px; font-weight: 700; letter-spacing: .06em; }
.asset-number { margin-bottom: 14px; padding: 6px 9px; border: 1px solid var(--sage); border-radius: 999px; color: var(--sage-dark); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.sage-orbit { position: absolute; z-index: 1; border: 1px solid rgba(255,255,255,.56); border-radius: 50%; }
.orbit-one { width: 300px; height: 300px; right: -100px; bottom: -110px; }
.orbit-two { width: 470px; height: 470px; right: -180px; bottom: -190px; }

.recognition-strip {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(6, auto);
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 72px);
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}
.recognition-strip p { margin: 0; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .05em; }
.section { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 120px 0; }
.intro-section { text-align: center; }
.section-kicker { margin: 0 0 17px; color: var(--copper); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section h2 { max-width: 800px; margin: 0 auto; font-family: Georgia, serif; font-size: clamp(38px, 5vw, 62px); font-weight: 500; line-height: 1.08; letter-spacing: -.035em; }
.section-intro { max-width: 720px; margin: 24px auto 0; color: var(--ink-soft); font-size: 17px; line-height: 1.75; }

.section-heading-row { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; }
.section-heading-row h2 { margin: 0; font-size: clamp(38px, 4vw, 58px); }
.section-heading-row > p { margin: 0 0 4px; color: var(--ink-soft); font-size: 15px; line-height: 1.75; }
.moment-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 55px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.moment-grid article { min-height: 280px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.moment-grid span { color: var(--copper); font-family: Georgia, serif; font-size: 12px; }
.moment-grid h3 { margin: 44px 0 13px; font-family: Georgia, serif; font-size: 22px; font-weight: 500; line-height: 1.25; }
.moment-grid p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.rest-section { padding: 110px 24px; color: var(--white); background: var(--sage-dark); }
.rest-section-inner { width: min(1120px, 100%); margin: 0 auto; }
.rest-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; }
.rest-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -48px; color: #d8b794; }
.rest-heading h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(38px, 4.5vw, 60px); font-weight: 500; line-height: 1.08; letter-spacing: -.035em; }
.rest-heading > p:last-child { margin: 0 0 5px; color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.75; }
.rest-experiences { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 58px; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 22px; background: rgba(255,255,255,.2); }
.rest-experiences article { display: grid; grid-template-columns: 48px 1fr; gap: 24px; min-height: 220px; padding: 38px; background: rgba(255,255,255,.055); }
.rest-experiences span { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #e6c5a3; font-family: Georgia, serif; font-size: 11px; }
.rest-experiences h3 { margin: 4px 0 16px; font-family: Georgia, serif; font-size: 30px; font-weight: 500; }
.rest-experiences p { margin: 0; color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.75; }
.center-heading { max-width: 820px; margin: 0 auto 55px; text-align: center; }
.center-heading > p:last-child { max-width: 640px; margin: 22px auto 0; color: var(--ink-soft); line-height: 1.7; }
@media (min-width: 981px) {
  html[lang="zh-CN"] .intro-section h2,
  html[lang="zh-CN"] .center-heading h2 {
    max-width: none;
    white-space: nowrap;
  }
  html[lang="zh-CN"] .center-heading { max-width: 1120px; }
}
.form-factors { padding-top: 50px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-grid-app { grid-template-columns: minmax(0, 820px); justify-content: center; }
.form-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: 0 18px 50px rgba(45,55,48,.07); }
.form-card-dark { color: var(--white); background: var(--sage-dark); }
.mac-screenshot-gallery {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, #d9e0d8, #a9b9ae);
}
.mac-shot {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(27, 43, 35, .24);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(29, 43, 36, .22);
}
.mac-shot-main { z-index: 1; inset: 5% 12% 5% 3%; width: 85%; height: 90%; }
.mac-shot-resting, .mac-shot-menu { z-index: 2; right: 3%; width: 43%; height: auto; }
.mac-shot-resting { top: 8%; transform: rotate(2deg); }
.mac-shot-menu { bottom: 7%; transform: rotate(-2deg); }
.asset-placeholder-card { min-height: 360px; border: 0; border-bottom: 1px dashed var(--line); border-radius: 0; background: linear-gradient(145deg, rgba(122, 145, 130, .2), rgba(237,232,220,.7)); }
.asset-placeholder-dark { border-color: rgba(255,255,255,.25); color: var(--white); background: linear-gradient(145deg, rgba(124,146,132,.72), rgba(38,61,50,.9)); }
.asset-placeholder-dark p, .asset-placeholder-dark small { color: rgba(255,255,255,.7); }
.asset-placeholder-dark .asset-number { border-color: rgba(255,255,255,.65); color: white; }
.form-copy { padding: 34px; }
.card-label { margin: 0 0 13px; color: var(--copper); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.form-card-dark .card-label { color: #d8b794; }
.form-copy h3 { margin: 0; font-family: Georgia, serif; font-size: 34px; font-weight: 500; }
.form-copy > p:not(.card-label) { min-height: 72px; margin: 17px 0 25px; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.form-card-dark .form-copy > p:not(.card-label) { color: rgba(255,255,255,.72); }
.form-card-dark .text-link { border-color: rgba(255,255,255,.8); }

.feature-band { padding: 110px 24px; color: var(--white); background: var(--sage-dark); }
.feature-band-inner { width: min(1120px, 100%); margin: 0 auto; display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.feature-heading { position: sticky; top: 120px; align-self: start; }
.feature-heading h2 { margin: 0; font-family: Georgia, serif; font-size: 52px; font-weight: 500; line-height: 1.05; }
.feature-heading > p:last-child { margin: 24px 0 0; color: rgba(255,255,255,.65); line-height: 1.7; }
.feature-list { border-top: 1px solid rgba(255,255,255,.2); }
.feature-list article { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.feature-list article > span { display: grid; width: 45px; height: 45px; place-items: center; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; font-family: Georgia, serif; }
.feature-list h3 { margin: 0 0 10px; font-family: Georgia, serif; font-size: 24px; font-weight: 500; }
.feature-list p { margin: 0; color: rgba(255,255,255,.64); font-size: 13px; line-height: 1.7; }

.founding-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.35fr .65fr; align-items: center; gap: 60px; padding: 70px; border-radius: 30px; background: #dce3d9; }
.founding-panel::after { content: ""; position: absolute; width: 360px; height: 360px; right: -130px; bottom: -180px; border: 1px solid rgba(49,71,61,.28); border-radius: 50%; box-shadow: 0 0 0 55px rgba(49,71,61,.04), 0 0 0 110px rgba(49,71,61,.035); }
.founding-copy { position: relative; z-index: 2; }
.founding-copy h2 { margin: 0; max-width: 720px; font-size: clamp(40px, 5vw, 62px); }
.founding-copy > p:not(.section-kicker) { max-width: 660px; margin: 23px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.75; }
.microcopy { max-width: 560px; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.founding-number { position: relative; z-index: 2; text-align: center; }
.founding-number strong { display: block; color: var(--sage-dark); font-family: Georgia, serif; font-size: 130px; font-weight: 400; line-height: .82; letter-spacing: -.08em; }
.founding-number span { display: block; margin-top: 17px; color: var(--sage-dark); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.founding-capacity { position: relative; z-index: 2; overflow: hidden; padding: 30px; border: 1px solid rgba(49,71,61,.2); border-radius: 24px; background: rgba(255,253,248,.72); box-shadow: 0 22px 60px rgba(45,55,48,.1); backdrop-filter: blur(12px); }
.founding-capacity::after { content: "100"; position: absolute; right: -11px; bottom: -34px; color: rgba(49,71,61,.045); font-family: Georgia, serif; font-size: 130px; line-height: 1; pointer-events: none; }
.capacity-heading { position: relative; z-index: 1; display: flex; align-items: center; gap: 9px; color: var(--sage-dark); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.capacity-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #5f8b6c; box-shadow: 0 0 0 4px rgba(95,139,108,.13); }
.capacity-values { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 26px 0 24px; background: var(--line); }
.capacity-values div { padding-right: 22px; background: #f8f7f1; }
.capacity-values div + div { padding-left: 24px; padding-right: 0; }
.capacity-values strong { display: block; color: var(--sage-dark); font-family: Georgia, serif; font-size: clamp(54px, 6vw, 76px); font-weight: 400; line-height: .95; letter-spacing: -.055em; }
.capacity-values span { display: block; margin-top: 8px; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .06em; }
.capacity-progress { position: relative; z-index: 1; overflow: hidden; height: 7px; border-radius: 999px; background: rgba(49,71,61,.12); }
.capacity-progress span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--sage), var(--sage-dark)); transition: width 500ms ease; }
.founding-capacity p { position: relative; z-index: 1; margin: 13px 0 0; color: var(--ink-soft); font-size: 10px; line-height: 1.55; }
.founding-capacity.capacity-unavailable .capacity-live-dot { background: var(--copper); box-shadow: 0 0 0 4px rgba(166,107,61,.13); }
.founding-capacity.capacity-full .capacity-live-dot { background: var(--copper); }
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.privacy-grid h2 { margin: 0; font-size: clamp(40px, 5vw, 58px); }
.privacy-copy p { margin: 0 0 18px; color: var(--ink-soft); font-size: 15px; line-height: 1.8; }
.privacy-copy .text-link { display: inline-block; margin-top: 10px; }

.evidence-section { padding: 115px 24px; background: var(--paper-deep); }
.evidence-inner { width: min(1120px, 100%); margin: 0 auto; }
.evidence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.asset-placeholder-evidence { min-height: 310px; padding: 26px; background: rgba(255,253,248,.48); }
.asset-placeholder-evidence strong { font-size: 18px; }
.evidence-links { display: flex; justify-content: space-between; gap: 20px; margin-top: 32px; color: var(--sage-dark); font-size: 12px; font-weight: 700; }
.evidence-links a { border-bottom: 1px solid var(--sage-dark); }
.faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 27px 50px 27px 0; cursor: pointer; list-style: none; font-family: Georgia, serif; font-size: 20px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 26px; color: var(--sage); font-family: sans-serif; font-size: 20px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; margin: -10px 0 26px; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.final-cta { width: min(1120px, calc(100% - 48px)); margin: 0 auto 100px; padding: 62px; display: flex; align-items: center; justify-content: space-between; gap: 50px; border: 1px solid var(--line); border-radius: 28px; background: var(--white); }
.final-cta h2 { max-width: 700px; margin: 0; font-family: Georgia, serif; font-size: 45px; font-weight: 500; line-height: 1.1; }
.site-footer { padding: 58px max(24px, calc((100vw - 1120px) / 2)); color: rgba(255,255,255,.78); background: #17221d; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-mark { border-color: rgba(255,255,255,.45); color: white; }
.footer-brand p { margin: 0; line-height: 1.5; }
.footer-brand span { color: rgba(255,255,255,.5); font-size: 11px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 14px 28px; margin: 40px 0; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); font-size: 12px; }
.site-footer nav a:hover { color: white; }
.footer-note { max-width: 820px; color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.65; }
.copyright { margin: 25px 0 0; color: rgba(255,255,255,.36); font-size: 10px; }
.site-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.site-legal a { color: inherit; text-decoration: none; transition: color 160ms ease; }
.site-legal a:hover { color: rgba(255,255,255,.76); }

/* Static detail pages */
.subpage-hero { padding: 82px 24px 90px; border-bottom: 1px solid var(--line); background: linear-gradient(145deg, var(--paper), #e9eee7); }
.subpage-hero-inner { width: min(1120px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 72px; }
.subpage-hero .breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.subpage-hero h1 { margin: 0; font-family: Georgia, serif; font-size: clamp(52px, 6vw, 78px); font-weight: 500; line-height: 1; letter-spacing: -.045em; }
.subpage-hero .lead { max-width: 650px; margin: 26px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.75; }
.subpage-hero .hero-actions { margin-top: 30px; }
.founding-hero-actions .button, .founding-hero-actions .text-link { flex: 0 0 auto; white-space: nowrap; }
.founding-hero-actions { flex-wrap: wrap; }
.founding-hero-actions .microcopy { flex: 1 0 100%; margin-top: 2px; }
html[lang="zh-CN"] .founding-hero-actions { gap: 18px; }
html[lang="zh-CN"] .founding-hero-actions .button { min-width: 170px; justify-content: center; }
html[lang="zh-CN"] .founding-hero-actions .text-link { min-width: 190px; }
.subpage-hero .asset-placeholder { min-height: 390px; }
.experience-video-shell {
  overflow: hidden;
  border: 1px solid rgba(50, 66, 58, .25);
  border-radius: 22px;
  background: #15201b;
  box-shadow: var(--shadow);
}
.experience-video { display: block; width: 100%; aspect-ratio: 1200 / 932; object-fit: cover; background: #15201b; }
.article-shell { width: min(920px, calc(100% - 48px)); margin: 0 auto; padding: 90px 0 120px; }
.article-shell.wide { width: min(1120px, calc(100% - 48px)); }
.article-shell > section + section { margin-top: 92px; }
.article-shell h2 { margin: 0 0 20px; font-family: Georgia, serif; font-size: clamp(34px, 4vw, 48px); font-weight: 500; line-height: 1.12; }
.article-shell h3 { margin: 34px 0 12px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.article-shell p, .article-shell li { color: var(--ink-soft); font-size: 15px; line-height: 1.8; }
.article-shell a:not(.button) { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 3px; }
.article-shell ul, .article-shell ol { padding-left: 22px; }
.definition-box { padding: 34px; border-left: 3px solid var(--copper); background: var(--white); }
.definition-box strong { display: block; margin-bottom: 9px; font-family: Georgia, serif; font-size: 22px; }
.definition-box p { margin: 0; }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--line); }
.spec-grid div { min-height: 130px; padding: 25px; background: var(--white); }
.spec-grid dt { margin-bottom: 10px; color: var(--copper); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.spec-grid dd { margin: 0; font-family: Georgia, serif; font-size: 20px; line-height: 1.35; }
.detail-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.detail-feature-grid article { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,253,248,.55); }
.detail-feature-grid h3 { margin: 0 0 11px; font-size: 23px; }
.detail-feature-grid p { margin: 0; font-size: 13px; }
.product-shot-grid { align-items: start; }
.product-shot-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(45,55,48,.08);
}
.product-shot-image {
  display: block;
  width: 100%;
  height: clamp(220px, 29vw, 345px);
  object-fit: contain;
  background: #d9e0d8;
}
.product-shot-card figcaption { padding: 20px 22px 22px; border-top: 1px solid var(--line); }
.product-shot-card figcaption span { display: block; color: var(--ink); font-family: Georgia, serif; font-size: 19px; }
.product-shot-card figcaption p { margin: 7px 0 0; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
html[lang="zh-CN"] .product-shot-card figcaption span { font-family: "Songti SC", "STSong", Georgia, serif; }
.page-callout { padding: 45px; border-radius: 22px; color: white; background: var(--sage-dark); }
.page-callout h2, .page-callout h3, .page-callout p { color: white; }
.page-callout p { color: rgba(255,255,255,.7); }
.page-callout .button { border-color: var(--white); background: var(--white); color: var(--sage-dark); }
.privacy-note { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; padding: 38px 42px; }
.privacy-note .section-kicker { margin-bottom: 10px; color: rgba(255,255,255,.58); }
.privacy-note h2 { margin-bottom: 12px; font-size: clamp(30px, 3.5vw, 42px); }
.privacy-note p:not(.section-kicker) { max-width: 720px; margin: 0; font-size: 14px; line-height: 1.75; }
.article-shell a.privacy-note-link { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.55); color: var(--white); font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.privacy-note-link span { margin-left: 6px; }
.steps { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--line); counter-reset: launch-steps; }
.steps article { position: relative; padding: 34px 34px 34px 88px; background: var(--white); counter-increment: launch-steps; }
.steps article::before { content: counter(launch-steps, decimal-leading-zero); position: absolute; left: 30px; top: 37px; color: var(--copper); font-family: Georgia, serif; font-size: 18px; }
.steps h3 { margin: 0 0 8px; font-size: 23px; }
.steps p { margin: 0; }
.application-tracker { scroll-margin-top: 100px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 40px 56px; padding: 38px 40px; border: 1px solid rgba(49,71,61,.2); border-radius: 22px; background: linear-gradient(145deg, #e6ece4, rgba(255,253,248,.78)); box-shadow: 0 20px 55px rgba(45,55,48,.07); }
.tracker-copy .section-kicker { margin-bottom: 10px; }
.application-tracker .tracker-copy h2 { margin-bottom: 12px; font-size: clamp(30px, 3.5vw, 42px); }
.application-tracker .tracker-copy > p:last-child { margin: 0; font-size: 13px; line-height: 1.7; }
.status-query-form { align-self: center; min-width: 0; }
.status-query-form > label { display: block; margin-bottom: 9px; color: var(--ink); font-size: 13px; font-weight: 750; }
.status-query-controls { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.status-query-controls input { width: 100%; min-height: 48px; box-sizing: border-box; padding: 0 14px; border: 1px solid #b9c3bb; border-radius: 10px; outline: none; background: rgba(255,253,250,.9); color: var(--ink); font: inherit; font-size: 15px; transition: border-color 160ms ease, box-shadow 160ms ease; }
.status-query-controls input:focus { border-color: var(--sage-dark); box-shadow: 0 0 0 3px rgba(49,71,61,.12); }
.status-query-controls .button { min-width: 128px; border: 0; cursor: pointer; }
.status-query-controls .button:disabled { cursor: wait; opacity: .65; }
.status-query-form > small { display: block; margin-top: 8px; color: var(--ink-soft); font-size: 10px; line-height: 1.5; }
.status-query-result { grid-column: 1 / -1; padding: 26px; border: 1px solid rgba(49,71,61,.18); border-radius: 16px; outline: none; background: rgba(255,253,248,.84); }
.status-result-heading { display: grid; grid-template-columns: 44px 1fr; gap: 15px; align-items: start; }
.status-result-symbol { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--sage-dark); color: white; font-family: Georgia, serif; font-size: 24px; }
.status-result-copy { min-width: 0; }
.status-result-kicker { display: block; margin-bottom: 4px; color: var(--copper); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.status-result-copy > strong { display: block; color: var(--ink); font-family: Georgia, serif; font-size: 23px; font-weight: 500; }
html[lang="zh-CN"] .status-result-copy > strong { font-family: "Songti SC", "STSong", Georgia, serif; }
.status-result-copy > p { margin: 7px 0 0; font-size: 12px; line-height: 1.65; }
.status-result-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 22px 0; padding: 16px 18px; border: 1px solid var(--line); border-radius: 10px; background: rgba(237,232,220,.42); }
.status-result-meta div { min-width: 0; }
.status-result-meta dt { margin-bottom: 4px; color: var(--ink-soft); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.status-result-meta dd { overflow-wrap: anywhere; margin: 0; color: var(--ink); font-size: 12px; font-weight: 700; }
.status-timeline { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0 !important; list-style: none; }
.status-timeline li { position: relative; display: grid; justify-items: center; gap: 8px; color: #8a918c; text-align: center; }
.status-timeline li::before { content: ""; position: absolute; z-index: 0; top: 13px; left: 0; right: 0; height: 1px; background: #cdd3ce; }
.status-timeline li:first-child::before { left: 50%; }
.status-timeline li:last-child::before { right: 50%; }
.status-timeline li > span { position: relative; z-index: 1; display: grid; width: 27px; height: 27px; place-items: center; border: 1px solid #c4cbc5; border-radius: 50%; background: #f8f7f1; font-family: Georgia, serif; font-size: 11px; }
.status-timeline li > strong { font-size: 10px; }
.status-timeline li.is-current, .status-timeline li.is-complete { color: var(--sage-dark); }
.status-timeline li.is-current > span, .status-timeline li.is-complete > span { border-color: var(--sage-dark); background: var(--sage-dark); color: white; }
.status-timeline li.is-complete::before { background: var(--sage); }
.status-timeline li.is-rejected { color: #7b3b24; }
.status-timeline li.is-rejected > span { border-color: #a75c3e; background: #a75c3e; color: white; }
.status-query-result-approved { border-color: rgba(78,123,91,.35); }
.status-query-result-rejected { border-color: rgba(167,92,62,.35); }
.status-query-result-empty, .status-query-result-error { padding: 20px 22px; }
.status-query-result-error { border-color: #d7a98f; background: #f8e9df; }
.status-message-title { display: block; color: var(--ink); font-size: 14px; }
.status-message-body { margin: 5px 0 0 !important; font-size: 12px !important; line-height: 1.65 !important; }
.application-placeholder { padding: 40px; border: 2px dashed rgba(49,71,61,.35); border-radius: 20px; background: #e6ece4; text-align: center; }
.application-placeholder strong { display: block; font-family: Georgia, serif; font-size: 28px; }
.application-placeholder p { max-width: 660px; margin: 15px auto 0; }
.required-badge { display: inline-block; margin-bottom: 15px; padding: 6px 9px; border-radius: 999px; color: white; background: var(--copper); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.application-section { scroll-margin-top: 100px; }
.application-heading { max-width: 720px; margin-bottom: 34px; }
.application-heading .section-kicker { margin-bottom: 12px; }
.application-heading h2 { margin-bottom: 15px; }
.application-heading p:last-child { margin: 0; }
.application-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 38px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: 0 20px 55px rgba(45,55,48,.07); }
.application-form::before { content: "所有字段均为必填"; grid-column: 1 / -1; color: var(--ink-soft); font-size: 12px; line-height: 1.5; }
html[lang="en"] .application-form::before { content: "All fields are required"; }
.application-field { display: flex; min-width: 0; flex-direction: column; gap: 9px; }
.application-field-wide { grid-column: 1 / -1; }
.application-field label { color: var(--ink); font-size: 13px; font-weight: 750; }
.application-field label::after { content: "必填"; display: inline-block; margin-left: 8px; color: var(--copper); font-size: 10px; font-weight: 800; }
html[lang="en"] .application-field label::after { content: "Required"; }
.application-field input, .application-field select, .application-field textarea { width: 100%; box-sizing: border-box; border: 1px solid #c8cec8; border-radius: 10px; outline: none; background: #fffdfa; color: var(--ink); font: inherit; font-size: 15px; transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.application-field input, .application-field select { min-height: 50px; padding: 0 14px; }
.application-field textarea { min-height: 112px; padding: 13px 14px; line-height: 1.65; resize: vertical; }
.application-field input::placeholder, .application-field textarea::placeholder { color: #8b918c; }
.application-field input:hover, .application-field select:hover, .application-field textarea:hover { border-color: #9ea99f; }
.application-field input:focus, .application-field select:focus, .application-field textarea:focus { border-color: var(--sage-dark); box-shadow: 0 0 0 3px rgba(49,71,61,.12); background: var(--white); }
.application-field small { color: var(--ink-soft); font-size: 11px; line-height: 1.55; }
.application-submit { display: flex; align-items: center; gap: 22px; flex-direction: row; padding-top: 6px; }
.application-submit .button { min-width: 146px; border: 0; cursor: pointer; }
.application-submit .button:disabled { cursor: wait; opacity: .65; }
.application-privacy { margin: 0; color: var(--ink-soft); font-size: 11px !important; line-height: 1.65 !important; }
.application-review-notice { padding: 20px 22px; border: 1px solid rgba(166,107,61,.28); border-radius: 12px; background: rgba(238,232,218,.55); }
.application-review-notice strong { display: block; margin-bottom: 7px; color: var(--ink); font-size: 13px; }
.application-review-notice p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.7; }
.application-consent { padding: 2px 0; }
.application-consent-control { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.application-consent-control input { width: 19px; height: 19px; margin: 2px 0 0; flex: 0 0 auto; accent-color: var(--sage-dark); }
.application-consent-control span { display: grid; gap: 4px; }
.application-consent-control strong { color: var(--ink); font-size: 13px; line-height: 1.5; }
.application-consent-control small { color: var(--ink-soft); font-size: 11px; line-height: 1.55; }
.application-status { padding: 16px 18px; border-radius: 10px; outline: none; font-size: 13px; font-weight: 700; line-height: 1.6; }
.application-status-success { border: 1px solid #9bb5a3; background: #e4eee6; color: #24422f; }
.application-status-error { border: 1px solid #d7a98f; background: #f8e9df; color: #733915; }
.application-status-info { border: 1px solid #c3ab86; background: #f4ecdc; color: #604728; }
.button-spinner { display: none; width: 14px; height: 14px; margin-left: 8px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: application-spin .7s linear infinite; }
.application-form[aria-busy="true"] .button-spinner, .status-query-form[aria-busy="true"] .button-spinner { display: inline-block; }
.application-form-closed > *:not(.application-status) { opacity: .55; }
@keyframes application-spin { to { transform: rotate(360deg); } }
.terms-list { display: grid; gap: 14px; }
.terms-list article { padding: 24px 26px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,253,248,.5); }
.terms-list h3 { margin: 0 0 6px; font-size: 20px; }
.terms-list p { margin: 0; font-size: 13px; }
.truth-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); background: var(--white); }
.truth-table th, .truth-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 13px; line-height: 1.6; }
.truth-table th { color: var(--ink-soft); background: var(--paper-deep); font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.truth-table td:first-child { width: 28%; color: var(--ink); font-weight: 700; }
.about-team-photo { width: 100%; height: auto; aspect-ratio: 16 / 9; align-self: center; display: block; object-fit: cover; object-position: center; border: 1px solid rgba(49,71,61,.12); }
.about-principles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.company-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 26px; }
.company-section-heading .section-kicker { margin-bottom: 10px; }
.company-section-heading h2 { margin: 0; }
.company-section-heading > p { max-width: 430px; margin: 0; color: var(--ink-soft); }
.company-facts td:last-child { color: var(--ink-soft); }
.company-facts td:last-child span { color: rgba(83,96,90,.72); }
.company-facts a { color: var(--copper); text-decoration: underline; text-decoration-color: rgba(132,75,43,.3); text-underline-offset: 4px; }
.editorial-meta { display: flex; flex-wrap: wrap; gap: 12px 28px; margin: 0 0 38px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 11px; }
.source-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.source-list li { padding: 17px 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.asset-table td:first-child { width: 8%; }
.asset-table td:nth-child(2) { width: 23%; color: var(--ink); font-weight: 700; }
.placeholder-inline { display: inline; padding: 2px 5px; color: #7b3e1d; background: #f2d9c7; font-weight: 700; }

/* Product specifications and release record */
.product-spec-hero h1 em { color: var(--sage); font-weight: 400; }
.release-visual {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(50, 66, 58, .25);
  border-radius: 22px;
  background: #d9e0d8;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.release-visual img { display: block; width: 100%; height: auto; object-fit: contain; }
.release-visual figcaption { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 18px; border-top: 1px solid var(--line); background: var(--white); }
.release-visual figcaption span { font-family: Georgia, serif; font-size: 15px; }
.release-visual figcaption small { color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
html[lang="zh-CN"] .release-visual figcaption span { font-family: "Songti SC", "STSong", Georgia, serif; }
.release-status { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; margin-bottom: 72px; padding: 19px 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: 0 12px 35px rgba(45,55,48,.06); }
.release-status strong { font-size: 14px; }
.release-status > span:last-child { color: var(--ink-soft); font-size: 11px; }
.release-status-badge, .current-version-label { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--sage-dark); color: var(--white); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.release-status-badge { min-height: 27px; padding: 0 10px; }
.product-spec-page .section-summary { max-width: 820px; margin: -6px 0 27px; }
.product-spec-page .spec-grid small { color: var(--ink-soft); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 11px; }
html[lang="zh-CN"] .product-spec-page .spec-grid small { font-family: "PingFang SC", "Microsoft YaHei", Inter, ui-sans-serif, sans-serif; }
.feature-index { display: inline-flex; margin-bottom: 24px; color: var(--copper); font-family: Georgia, serif; font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.product-spec-page .detail-feature-grid article { min-height: 235px; }
.release-history td:first-child { white-space: nowrap; }
.current-version-label { margin-left: 9px; padding: 4px 7px; vertical-align: middle; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 52px; padding-top: 68px; }
  .hero-copy { max-width: 760px; }
  .recognition-strip { grid-template-columns: repeat(3, auto); }
  .moment-grid { grid-template-columns: 1fr 1fr; }
  .rest-heading { grid-template-columns: 1fr; gap: 22px; }
  .rest-heading .section-kicker { grid-column: auto; margin-bottom: -6px; }
  .feature-band-inner { grid-template-columns: 1fr; gap: 55px; }
  .feature-heading { position: static; }
  .founding-panel { grid-template-columns: 1fr; }
  .founding-number { text-align: left; }
  .subpage-hero-inner { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .release-status { grid-template-columns: auto 1fr; }
  .release-status > span:last-child { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .nav-shell, .hero, .section { width: min(100% - 32px, 1240px); }
  .nav-shell { height: 68px; }
  .site-header .button-small { display: none; }
  .nav-actions { gap: 0; }
  .language-suggestion-inner { align-items: flex-start; flex-wrap: wrap; justify-content: flex-start; }
  .hero { padding: 50px 0; }
  .hero h1 { font-size: 49px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .offer-facts { grid-template-columns: 1fr; }
  .offer-facts div + div { padding-left: 0; border-left: 0; }
  .hero-stage { min-height: 420px; padding: 10px; }
  .hero-stage-video { min-height: 0; }
  .asset-placeholder { min-height: 350px; padding: 24px; }
  .recognition-strip { grid-template-columns: 1fr 1fr; justify-items: center; }
  .section { padding: 82px 0; }
  .rest-section { padding: 82px 16px; }
  .rest-experiences { grid-template-columns: 1fr; }
  .rest-experiences article { min-height: 0; padding: 30px 24px; }
  .section-heading-row, .privacy-grid { grid-template-columns: 1fr; gap: 24px; }
  .moment-grid, .form-grid, .evidence-grid { grid-template-columns: 1fr; }
  .moment-grid article { min-height: auto; }
  .form-copy > p:not(.card-label) { min-height: 0; }
  .feature-band { padding: 82px 16px; }
  .feature-heading h2 { font-size: 42px; }
  .founding-panel { padding: 42px 25px; gap: 45px; }
  .founding-number strong { font-size: 100px; }
  .evidence-section { padding: 82px 16px; }
  .evidence-links { align-items: flex-start; flex-direction: column; }
  .final-cta { margin-bottom: 70px; padding: 38px 26px; align-items: flex-start; flex-direction: column; }
  .final-cta h2 { font-size: 36px; }
  .subpage-hero { padding: 55px 16px 65px; }
  .subpage-hero h1 { font-size: 49px; }
  .article-shell, .article-shell.wide { width: calc(100% - 32px); padding: 70px 0 90px; }
  .spec-grid, .detail-feature-grid { grid-template-columns: 1fr; }
  .page-callout { padding: 32px 24px; }
  .privacy-note { grid-template-columns: 1fr; gap: 18px; }
  .privacy-note h2 { font-size: 30px; }
  .privacy-note-link { justify-self: start; }
  .application-placeholder { padding: 32px 20px; }
  .founding-capacity { padding: 25px 22px; }
  .capacity-values strong { font-size: 56px; }
  .application-tracker { grid-template-columns: 1fr; gap: 24px; padding: 30px 22px; }
  .status-query-controls { grid-template-columns: 1fr; }
  .status-query-controls .button { width: 100%; }
  .status-result-meta { grid-template-columns: 1fr; }
  .status-result-heading { grid-template-columns: 36px 1fr; gap: 12px; }
  .status-result-symbol { width: 35px; height: 35px; font-size: 20px; }
  .status-result-copy > strong { font-size: 20px; }
  .application-form { grid-template-columns: 1fr; padding: 26px 20px; }
  .application-field-wide { grid-column: auto; }
  .application-submit { align-items: flex-start; flex-direction: column; }
  .application-submit .button { width: 100%; }
  .truth-table { display: block; overflow-x: auto; white-space: normal; }
  .about-principles { grid-template-columns: 1fr; }
  .company-section-heading { display: block; }
  .company-section-heading > p { margin-top: 14px; }
  .release-visual { transform: none; }
  .release-visual figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .release-status { grid-template-columns: 1fr; }
  .release-status > span:last-child { grid-column: auto; }
  .release-status-badge { justify-self: start; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
