/* ===== Reset & base ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ===== Accessibility ===== */
/* 仅屏幕阅读器可见 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* 键盘焦点环：用 currentColor，白底（导航胶囊）和深底（汉堡/表单）上都可见 */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* ===== Display font: BubbledotICG-FinePos =====
   本地优先（fonts/ 目录），外链仅作兜底；字体挂在本地后不再依赖外网。
   Licensed CC BY 4.0 — Font made from http://www.onlinewebfonts.com/fonts */
@font-face {
  font-family: "BubbledotICG-FinePos";
  src: url("fonts/BubbledotICG-FinePos.woff2") format("woff2"),
       url("fonts/BubbledotICG-FinePos.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Inter（UI 字体）latin 子集已本地化：页面是纯中文，Inter 只渲染英文、数字和标点，
   故只保留 latin 子集（cyrillic / greek / vietnamese 等已丢弃）。
   三个权重共用同一个可变字体文件，声明方式与 Google Fonts 原版保持一致。 */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== CSS variables (exact) ===== */
:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #8e8e8e;
  --nav-text: #2e2e2e;
  --pill-dark: #28282a;
  --sign-in-text: #c8c8c8;
  --nav-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  --trust-bg: #28282a;
  --trust-border: rgba(255, 255, 255, 0.4);
  --trust-text: #c4c2c3;
  --font-sans: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-display: "BubbledotICG-FinePos", "Courier New", monospace;
}

/* ===== Background video (persistent) ===== */
.bg {
  position: fixed;
  inset: 0;
  background: #000;
  overflow: hidden;
  z-index: 0;
}
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

/* ===== Page layout (header + router root) ===== */
.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

/* ===== Router root ===== */
#app {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
}

/* ===== Views (one per page) ===== */
.view {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
  padding: clamp(22px, 4vh, 40px) clamp(14px, 3vw, 32px) clamp(28px, 4vh, 44px);
}
.view.active { display: block; }
/* 内容遮罩上提到 #app 层：6 个视图共用一层，不再重复 6 次，也不随内容滚动 */
#app::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.8));
}
.view-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

/* ===== 1) Header ===== */
.header {
  flex: 0 0 auto;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 28px);
  z-index: 30;
  padding: clamp(12px, 2vh, 18px) clamp(14px, 3vw, 32px) 0;
}
.logo-btn {
  flex: 0 0 auto;
  width: clamp(40px, 4.4vw, 46px);
  height: clamp(40px, 4.4vw, 46px);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--nav-shadow);
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease;
  text-decoration: none;
}
.logo-btn:hover { transform: scale(1.04); }
.logo-btn img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}
.nav-pill {
  flex: 1 1 auto;
  max-width: 520px;
  height: clamp(44px, 5.2vw, 48px);
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--nav-shadow);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2px;
}
.nav-link {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: -0.01em;
  color: var(--nav-text);
  opacity: 0.5;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.nav-link:hover { opacity: 0.75; }
.nav-link.active { opacity: 1; }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000;
  transform: translateX(-50%);
  box-shadow: -5px 0 0 #000, 5px 0 0 #000;
}
.signin {
  flex: 0 0 auto;
  height: clamp(44px, 5.2vw, 48px);
  padding: 0 18px;
  border-radius: 999px;
  background: var(--pill-dark);
  color: var(--sign-in-text);
  box-shadow: var(--nav-shadow);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(12px, 1.3vw, 14px);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.signin:hover {
  background: #323234;
  color: #fff;
  transform: translateY(-1px);
}

/* ===== Hero (home view) ===== */
.view-home.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero {
  flex: 0 0 auto;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  position: relative;
}

/* Trust row */
.trust {
  --trust-size: clamp(36px, 4.5vw, 42px);
  display: inline-flex;
  align-items: center;
  margin-bottom: clamp(16px, 2.5vh, 26px);
}
.avatar {
  position: relative;
  width: var(--trust-size);
  height: var(--trust-size);
  border-radius: 50%;
  background: var(--trust-bg);
  border: 1px solid var(--trust-border);
  padding: 5px;
  display: grid;
  place-items: center;
  transition: transform 0.35s ease;
}
.avatar + .avatar { margin-left: calc(var(--trust-size) * -0.42); }
.avatar:nth-child(1) { z-index: 1; }
.avatar:nth-child(2) { z-index: 2; }
.avatar:nth-child(3) { z-index: 4; }
.avatar .inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
}
.avatar i {
  color: #111;
  font-size: calc(var(--trust-size) * 0.34);
  line-height: 1;
}
.avatar:nth-child(1):hover { transform: translateY(-2px); }
.avatar:nth-child(2):hover { transform: translateY(-4px); }
.avatar:nth-child(3):hover { transform: translateY(-2px); }
.trust-pill {
  position: relative;
  z-index: 5;
  height: var(--trust-size);
  margin-left: calc(var(--trust-size) * -0.42);
  padding-left: calc(var(--trust-size) * 0.58);
  padding-right: 16px;
  display: inline-flex;
  align-items: center;
  background: var(--trust-bg);
  border: 1px solid var(--trust-border);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--trust-text);
  font-size: clamp(12px, 1.4vw, 13.5px);
  white-space: nowrap;
}

/* Headline */
.headline { margin: 0 0 clamp(14px, 2.2vh, 22px); }
.hl-line {
  display: block;
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(28px, 6.2vw, 80px);
  letter-spacing: -0.04em;
  line-height: 1.12;
  white-space: nowrap;
  overflow: hidden;
}

/* Subhead */
.subhead {
  max-width: min(500px, 92%);
  margin: 0 0 clamp(20px, 3vh, 30px);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(calc(13.5px + 2pt), calc(1.55vw + 2pt), calc(16.5px + 2pt));
  color: #d0d0d0;
  opacity: 0.8;
  line-height: 1.55;
}

/* CTA */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(13.5px, 1.5vw, 14.5px);
  padding: clamp(11px, 1.6vh, 13px) clamp(22px, 3vw, 28px);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 22px rgba(255, 255, 255, 0.32),
    0 0 44px rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 30px rgba(255, 255, 255, 0.45),
    0 0 60px rgba(255, 255, 255, 0.18);
}
.cta-sm { padding: 10px 18px; font-size: 13px; }

/* ===== Stats footer (home) ===== */
.stats {
  flex: 0 0 auto;
  width: 100%;
  max-width: 920px;
  margin: clamp(22px, 3.5vh, 34px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.stat .ic {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(22px, 3vw, 33px);
  line-height: 1;
}
.stat .val {
  font-family: var(--font-sans);
  color: #fff;
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.stat .lab {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: clamp(11px, 1.2vw, 12.5px);
}

/* ===== Content views typography ===== */
.view-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(22px, 4vw, 32px);
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.view-lead {
  color: #d8d8d8;
  opacity: 0.85;
  margin: 0 0 22px;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
}
.view-q {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(20px, 4vw, 28px);
  color: #fff;
  margin: 0 0 4px;
}
.block-h {
  color: #fff;
  font-size: clamp(16px, 2.4vw, 19px);
  margin: 24px 0 12px;
}
.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 16px;
}
.card h3 { color: #fff; font-size: clamp(15px, 2vw, 17px); margin: 0 0 10px; }
.muted { color: #cfcfcf; opacity: 0.85; line-height: 1.65; font-size: 14px; margin: 6px 0; }
.muted b { color: #fff; }

.kv { list-style: none; margin: 0; padding: 0; }
.kv li {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}
.kv li:last-child { border-bottom: none; }
.kv li span { color: #bdbdbd; min-width: 86px; flex: 0 0 auto; }
.kv li b { color: #fff; font-weight: 500; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
}

/* 竞选宣言 */
.promise { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.promise-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 18px;
}
.promise-tag {
  display: inline-block;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.promise-card p { color: #eee; line-height: 1.6; font-size: 14px; margin: 0; }

/* 施政纲领 Q&A */
.qa { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.qa-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 14px;
}
.qa-card .q { color: #fff; font-weight: 600; font-size: 14px; margin: 0 0 6px; }
.qa-card .a { color: #d6d6d6; font-size: 13px; line-height: 1.55; margin: 0; }

/* 未来规划 timeline */
.timeline { list-style: none; margin: 0; padding: 0 0 0 22px; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(255, 255, 255, 0.25);
}
.timeline li { position: relative; padding: 0 0 18px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline .dot {
  position: absolute;
  left: -22px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}
.timeline h3 { color: #fff; font-size: 15px; margin: 0 0 4px; }

/* 留言与投票 */
.cform { display: flex; flex-direction: column; gap: 10px; }
.cform input, .cform textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 12px;
  padding: 11px 13px;
  font-family: var(--font-sans);
  font-size: 14px;
  resize: vertical;
}
.cform textarea { min-height: 84px; }
.cform input::placeholder, .cform textarea::placeholder { color: #9a9a9a; }
.cform input:focus, .cform textarea:focus { outline: none; border-color: #fff; }
/* 鼠标点击不显示焦点环，键盘聚焦时才显示（见上方 Accessibility 段） */
.cform input:focus-visible, .cform textarea:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
.cform-row { display: flex; gap: 10px; align-items: center; }
.ghost-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ddd;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-sans);
}
.ghost-btn:hover { border-color: #fff; color: #fff; }

.comments { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.comment {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
}
.comment .cmeta { color: #9fb6c9; font-size: 12px; margin-bottom: 4px; }
.comment .ctext { color: #fff; font-size: 14px; line-height: 1.55; white-space: pre-wrap; word-break: break-word; }
.comment-empty { color: #9a9a9a; font-size: 13px; padding: 8px 0; }

.vform { display: flex; flex-direction: column; gap: 10px; }
.vform label { display: flex; align-items: center; gap: 10px; color: #eee; font-size: 14px; cursor: pointer; }
.vform input[type="radio"] { accent-color: #fff; width: 16px; height: 16px; }
.vresults { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.vbar-row { font-size: 13px; color: #eee; }
.vbar-row .vname { display: flex; justify-content: space-between; margin-bottom: 4px; }
.vbar { height: 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.15); overflow: hidden; }
.vbar > i { display: block; height: 100%; background: #fff; width: 0; transition: width 0.6s ease; }
.support { text-align: center; }
.support .muted b { color: #fff; }

/* ===== Mobile burger / overlay / sheet ===== */
.burger {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pill-dark);
  border: none;
  cursor: pointer;
  place-items: center;
  flex: 0 0 auto;
}
.burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.5px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}
.burger span:nth-child(1) { transform: translate(-50%, calc(-50% - 6.5px)); }
.burger span:nth-child(2) { transform: translate(-50%, -50%); }
.burger span:nth-child(3) { transform: translate(-50%, calc(-50% + 6.5px)); }
.burger.open { background: #fff; }
.burger.open span { background: #000; }
.burger.open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.overlay.show { opacity: 1; visibility: visible; animation: overlayIn 0.28s ease; }
.sheet {
  position: fixed;
  left: 50%;
  top: 84px;
  transform: translateX(-50%);
  width: min(420px, 90vw);
  background: #fff;
  border-radius: 28px;
  padding: 22px 18px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  z-index: 50;
  display: none;
  flex-direction: column;
  gap: 6px;
}
.sheet.show { display: flex; animation: menuIn 0.38s cubic-bezier(0.22, 1, 0.36, 1); }
.sheet a {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  color: #1c1c1c;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  opacity: 0;
}
.sheet.show a { animation: linkIn 0.4s forwards; animation-delay: calc(var(--i, 0) * 0.06s); }
.sheet a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000;
  transform: translateX(-50%);
  box-shadow: -5px 0 0 #000, 5px 0 0 #000;
}
.sheet .signin-full {
  margin-top: 8px;
  width: 100%;
  background: var(--pill-dark);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

/* ===== Entrance animations ===== */
.anim {
  opacity: 0;
  animation: reveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
}
.anim-header {
  opacity: 0;
  animation: slideDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.anim-cta {
  opacity: 0;
  animation: revealPulse 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0.4s);
}
.hl-line {
  opacity: 0;
  animation: headlineFade 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hl-line.l1 { animation-delay: 0.12s; }
.hl-line.l2 { animation-delay: 0.3s; }

@keyframes reveal {
  from { opacity: 0; transform: translateY(22px) scale(0.98); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: none; }
}
@keyframes headlineFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes revealPulse {
  from { opacity: 0; transform: translateY(22px) scale(0.98); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes menuIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-14px) scale(0.98); }
  to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
@keyframes linkIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* ===== Responsive ===== */
@media (max-width: 720px) {
  .nav-pill, .signin { display: none; }
  .header { justify-content: space-between; max-width: 100%; }
  .logo-btn { width: 48px; height: 48px; }
  .burger { display: grid; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .hl-line { letter-spacing: -0.08em; line-height: 1.05; }
  .promise, .qa { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .trust { --trust-size: 34px; }
  .trust-pill { font-size: 12px; }
  .hl-line { letter-spacing: -0.09em; line-height: 1.04; }
}
@media (max-height: 700px) {
  .trust { margin-bottom: 14px; }
  .headline { margin-bottom: 12px; }
  .subhead { margin-bottom: 18px; }
  .stats { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .anim, .anim-header, .anim-cta, .hl-line, .sheet a {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
