:root {
  --brand: #07c160;
  --brand-deep: #059b4f;
  --brand-soft: #e8f8ef;
  --brand-pale: #f2fbf6;
  --ink: #1f2329;
  --ink-soft: #3d4742;
  --muted: #62706a;
  --line: #dfe9e4;
  --surface: #ffffff;
  --wash: #f7f8fa;
  --blue: #2f80ed;
  --amber: #f6c85f;
  --danger: #c2410c;
  --shadow-low: 0 14px 34px rgba(31, 35, 41, 0.07);
  --shadow-mid: 0 24px 64px rgba(7, 57, 31, 0.13);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --max: 1180px;

  --font-nav: 15px;
  --font-eyebrow: 14px;
  --font-body: 16px;
  --font-lead: clamp(16px, 1.7vw, 18px);
  --font-small: 14px;
  --font-micro: 13px;
  --font-tiny: 12px;
  --title-hero: clamp(38px, 5.4vw, 64px);
  --title-page: clamp(34px, 5vw, 56px);
  --title-section: clamp(30px, 4.2vw, 48px);
  --title-subsection: clamp(26px, 3.2vw, 36px);
  --title-card: 20px;
  --title-doc: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(950px 420px at 88% -12%, rgba(7, 193, 96, 0.12), transparent 62%),
    radial-gradient(760px 360px at -8% 42%, rgba(7, 193, 96, 0.07), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #fbfefc 42%, #ffffff 100%);
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31, 35, 41, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 35, 41, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 58%);
}

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

a,
button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(7, 193, 96, 0.14);
}

button {
  font: inherit;
}

svg {
  display: block;
  flex: 0 0 auto;
}

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

:focus-visible {
  outline: 3px solid rgba(7, 193, 96, 0.36);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-130%);
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 233, 228, 0.78);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: none;
}

.nav-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}

.nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #35413c;
  font-size: var(--font-nav);
  font-weight: 500;
}

.nav-links a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav-links a[aria-current="page"] {
  color: var(--brand-deep);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--brand-deep);
  background: var(--brand-pale);
  transform: translateY(-1px);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: var(--font-nav);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 16px 34px rgba(7, 193, 96, 0.25);
}

.btn-primary:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(5, 155, 79, 0.28);
}

.btn-secondary {
  color: var(--brand-deep);
  border-color: rgba(7, 193, 96, 0.26);
  background: rgba(255, 255, 255, 0.86);
}

.btn-secondary:hover {
  border-color: rgba(7, 193, 96, 0.44);
  background: var(--brand-soft);
  transform: translateY(-2px);
}

.btn-soft {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.btn-soft:hover {
  color: var(--brand-deep);
  border-color: rgba(7, 193, 96, 0.34);
  transform: translateY(-2px);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.page-hero {
  position: relative;
  padding: 76px 0 68px;
  overflow: hidden;
  background:
    radial-gradient(900px 380px at 86% -18%, rgba(7, 193, 96, 0.12), transparent 64%),
    linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);
}

.home-hero {
  min-height: 750px;
  padding: 64px 0 66px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(980px 420px at 88% 4%, rgba(7, 193, 96, 0.13), transparent 62%),
    radial-gradient(720px 360px at 0% 100%, rgba(47, 128, 237, 0.06), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f2fbf6 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  align-items: center;
  gap: 62px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(7, 193, 96, 0.22);
  border-radius: 999px;
  color: var(--brand-deep);
  background: rgba(232, 248, 239, 0.72);
  font-size: var(--font-eyebrow);
  font-weight: 850;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(7, 193, 96, 0.34);
  animation: pulse 1.9s ease-out infinite;
}

.hero__copy .eyebrow::before {
  display: none;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(7, 193, 96, 0.34);
  animation: pulse 1.9s ease-out infinite;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: var(--title-hero);
  line-height: 1.04;
  font-weight: 950;
}

.hero-title-compact {
  font-size: var(--title-page);
}

.accent {
  color: var(--brand);
}

.hero__title {
  max-width: 720px;
  margin: 22px 0 20px;
  font-size: var(--title-hero);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero__title .hl {
  position: relative;
  z-index: 0;
  color: var(--brand);
  white-space: nowrap;
}

.hero__title .hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  z-index: -1;
  height: 0.16em;
  border-radius: 6px;
  background: var(--brand-soft);
}

.hero__sub {
  max-width: 560px;
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: var(--font-lead);
  line-height: 1.8;
  text-wrap: pretty;
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: var(--font-lead);
  line-height: 1.85;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.hero-actions .btn {
  min-height: 56px;
  padding: 0 28px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.hero__stat strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero__stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: var(--font-micro);
  font-weight: 760;
}

.hero__stat strong .hero__unit {
  display: inline;
  margin-top: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 900;
}

.hero__divider {
  width: 1px;
  height: 34px;
  background: var(--line);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin-top: 34px;
}

.metric {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(223, 233, 228, 0.82);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-low);
}

.metric strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: var(--font-micro);
  font-weight: 760;
}

.visual-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.visual-stage::before,
.visual-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  aspect-ratio: 1;
  border: 1px dashed rgba(7, 193, 96, 0.24);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.visual-stage::before {
  width: min(520px, calc(100vw - 40px));
  animation: circle-rotate-outer 64s linear infinite;
}

.visual-stage::after {
  width: min(430px, calc(100vw - 70px));
  opacity: 0.72;
  animation: circle-rotate-inner 42s linear infinite reverse;
}

.phone-shell {
  position: relative;
  z-index: 1;
  width: min(328px, 88vw);
  min-height: 620px;
  padding: 12px;
  border: 1px solid rgba(31, 35, 41, 0.12);
  border-radius: 44px;
  background: #0e1013;
  box-shadow: 0 34px 80px rgba(20, 24, 30, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transform: rotate(-2deg);
  animation: float-phone 5.6s ease-in-out infinite;
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 3;
  width: 118px;
  height: 25px;
  border-radius: 0 0 16px 16px;
  background: #0e1013;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 596px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 34px;
  background: #ededed;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 42px 16px 13px;
  border-bottom: 1px solid #e3e3e3;
  background: #f7f7f7;
}

.phone-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 950;
}

.app-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--brand);
  font-weight: 950;
}

.app-avatar img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.status-badge {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-size: var(--font-tiny);
  font-weight: 850;
}

.chat-feed {
  flex: 1;
  display: grid;
  gap: 13px;
  align-content: start;
  padding: 18px 14px;
  background: #fff;
}

.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.chat-row.self {
  justify-content: flex-end;
}

.mini-avatar {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: #e1edff;
}

.mini-avatar.warm {
  background: #fff0bf;
}

.chat-bubble {
  max-width: 232px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #202724;
  background: #fff;
  font-size: var(--font-small);
  line-height: 1.55;
  box-shadow: 0 8px 20px rgba(31, 35, 41, 0.04);
}

.self .chat-bubble {
  color: #0a2912;
  background: #95ec69;
}

.voice-bars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 6px;
  vertical-align: middle;
}

.voice-bars i {
  width: 4px;
  height: 13px;
  border-radius: 999px;
  background: currentColor;
  animation: wave 1s ease-in-out infinite;
}

.voice-bars i:nth-child(2) {
  height: 21px;
  animation-delay: 0.12s;
}

.voice-bars i:nth-child(3) {
  height: 10px;
  animation-delay: 0.24s;
}

.composer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: auto 0 0;
  padding: 10px 12px 16px;
  border: 0;
  border-top: 1px solid #e3e3e3;
  border-radius: 0;
  background: #f7f7f7;
}

.composer-line {
  flex: 1;
  height: 30px;
  border-radius: 7px;
  background: #fff;
}

.send-button-visual {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: var(--brand);
  box-shadow: 0 10px 22px rgba(7, 193, 96, 0.24);
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(20, 24, 30, 0.1);
  backdrop-filter: blur(14px);
  font-size: var(--font-small);
  font-weight: 850;
  animation: float-note 4.4s ease-in-out infinite;
}

.floating-note .note-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.floating-note .note-icon svg {
  width: 18px;
  height: 18px;
}

.floating-note small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
}

.floating-note--secure .note-icon {
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.floating-note--call .note-icon {
  color: #d98f00;
  background: #fff3dc;
}

.floating-note.left {
  left: 0;
  top: 116px;
}

.floating-note.right {
  right: -4px;
  bottom: 124px;
  animation-delay: -1.4s;
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: #fff;
}

.section--alt,
.stats-section,
.scene-section {
  background: #f7f7f7;
}

.section-title {
  margin: 18px 0 14px;
  font-size: var(--title-section);
  line-height: 1.16;
  font-weight: 920;
}

.section-sub {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: var(--font-lead);
  line-height: 1.75;
}

.center {
  text-align: center;
}

.center .eyebrow,
.center .section-sub {
  margin-right: auto;
  margin-left: auto;
}

.page-head {
  position: relative;
  overflow: hidden;
  padding: 68px 0 58px;
  text-align: center;
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(7, 193, 96, 0.1), transparent 60%),
    linear-gradient(180deg, #fff, var(--brand-pale));
}

.page-head__title {
  max-width: 760px;
  margin: 16px auto 14px;
  color: var(--ink);
  font-size: var(--title-page);
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.page-head__sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: var(--font-lead);
  line-height: 1.8;
}

.about-head__sub {
  max-width: 860px;
  white-space: nowrap;
}

.privacy-head__sub {
  max-width: 820px;
  white-space: nowrap;
}

.story {
  display: grid;
  grid-template-columns: 450px minmax(0, 1fr);
  gap: 100px;
  align-items: center;
}

.story__media {
  position: relative;
  overflow: hidden;
  width: 450px;
  max-width: 100%;
  height: 360px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(140deg, #07c160, #34d17e);
  box-shadow: var(--shadow-mid);
}

.story__media::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.story__media .glyph {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.story h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: var(--title-subsection);
  font-weight: 920;
  line-height: 1.2;
}

.story p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: var(--font-body);
  line-height: 1.75;
}

.story p:last-child {
  margin-bottom: 0;
}

.story b {
  color: var(--ink);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.value {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-low);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
}

.value__ic {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.value__ic svg {
  width: 26px;
  height: 26px;
}

.value h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: var(--title-card);
  font-weight: 850;
}

.value p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.65;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.about-stat {
  text-align: center;
}

.about-stat .n {
  color: var(--brand-deep);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 950;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.about-stat .n .suf {
  font-size: 0.5em;
}

.about-stat .l {
  margin-top: 6px;
  color: var(--muted);
  font-size: var(--font-small);
}

.timeline-zol {
  --timeline-axis-x: 12px;
  position: relative;
  max-width: 760px;
  margin: 48px auto 0;
  display: block;
}

.timeline-zol::before {
  content: "";
  position: absolute;
  left: var(--timeline-axis-x);
  top: 6px;
  bottom: 6px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(var(--brand), var(--brand-soft));
}

.tl-item {
  position: relative;
  padding: 0 0 38px 48px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: var(--timeline-axis-x);
  top: 4px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--brand);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px var(--brand-soft);
  transform: translateX(-50%);
}

.tl-item .yr {
  color: var(--brand-deep);
  font-size: var(--font-small);
  font-weight: 900;
}

.tl-item h4 {
  margin: 4px 0 6px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.tl-item p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.contact-card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow-low);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(7, 193, 96, 0.24);
  transform: translateY(-5px);
  box-shadow: var(--shadow-mid);
}

.contact-card__ic {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 16px;
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.contact-card__ic svg {
  width: 28px;
  height: 28px;
}

.contact-card h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-small);
}

.contact-card a.lnk {
  display: inline-block;
  margin-top: 4px;
  color: var(--brand-deep);
  font-size: var(--font-nav);
  font-weight: 850;
}

.policy-section-wrap {
  padding-top: 56px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 92px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-low);
}

.toc h5 {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: var(--font-micro);
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 8px 12px;
  border-left: 2px solid transparent;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: var(--font-small);
  line-height: 1.4;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.toc a:hover,
.toc a:focus-visible {
  border-left-color: rgba(7, 193, 96, 0.4);
  background: var(--brand-pale);
  color: var(--brand-deep);
}

.policy-body {
  min-width: 0;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 36px;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  background: var(--brand-pale);
  color: var(--ink-soft);
  font-size: var(--font-small);
}

.policy-meta b {
  color: var(--brand-deep);
}

.policy-section {
  scroll-margin-top: 92px;
  margin-bottom: 44px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: var(--title-doc);
  font-weight: 900;
  line-height: 1.35;
}

.policy-section h3 .idx {
  width: 30px;
  height: 30px;
  display: inline-grid;
  flex: none;
  place-items: center;
  border-radius: 9px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: var(--font-small);
  font-weight: 850;
}

.policy-section p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: var(--font-body);
  line-height: 1.8;
}

.policy-section ul.bullets {
  margin: 8px 0 12px;
  padding: 0 0 0 4px;
  list-style: none;
}

.policy-section ul.bullets li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: var(--font-body);
  line-height: 1.7;
}

.policy-section ul.bullets li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--brand);
}

.policy-section ul.bullets li b {
  color: var(--ink);
}

.policy-section a {
  color: var(--brand-deep);
  font-weight: 850;
}

.section-header {
  max-width: 760px;
  margin-bottom: 36px;
}

.home-section {
  padding-top: 36px;
}

.home-section .section-header {
  margin-bottom: 51px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header.center .section-kicker,
.section-header.center p {
  margin-right: auto;
  margin-left: auto;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--brand-deep);
  font-size: var(--font-small);
  font-weight: 900;
}

.section h2,
.page-content h2 {
  font-size: var(--title-section);
  line-height: 1.16;
  font-weight: 920;
}

.section-header p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: var(--font-lead);
  line-height: 1.85;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.bento-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-low);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.bento-card:hover {
  border-color: rgba(7, 193, 96, 0.34);
  transform: translateY(-5px);
  box-shadow: 0 26px 54px rgba(7, 57, 31, 0.12);
}

.bento-card.large {
  grid-column: span 6;
}

.bento-card.medium {
  grid-column: span 4;
}

.bento-card h3 {
  margin-top: 18px;
  font-size: var(--title-card);
  font-weight: 900;
}

.bento-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.icon-tile {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.icon-tile svg {
  width: 24px;
  height: 24px;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.scene-card {
  min-height: 248px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-low);
}

.scene-card h3 {
  margin-top: 20px;
  font-size: var(--title-card);
}

.scene-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(520px 120px at 50% 0%, rgba(7, 193, 96, 0.08), transparent 70%),
    rgba(255, 255, 255, 0.86);
}

.trust-strip-inner {
  min-height: 86px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  font-size: var(--font-body);
  font-weight: 720;
  text-align: center;
}

.trust-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border-radius: 2px;
  color: #ffb400;
  line-height: 1;
  filter: drop-shadow(0 8px 18px rgba(255, 180, 0, 0.22));
}

.trust-stars svg {
  width: 19px;
  height: 19px;
  display: block;
  overflow: visible;
}

.trust-stars path {
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2px;
  stroke-linejoin: round;
}

.trust-rating {
  color: var(--muted);
}

.trust-rating strong {
  color: var(--ink);
  font-weight: 920;
  font-variant-numeric: tabular-nums;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 54px;
}

.shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-low);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.shot:hover {
  border-color: rgba(7, 193, 96, 0.28);
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
}

.shot__media {
  height: 360px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.shot__media--messages {
  background: #ededed;
}

.shot__cap {
  padding: 18px 22px;
}

.shot__cap h4 {
  margin: 0;
  color: var(--ink);
  font-size: var(--font-body);
  font-weight: 850;
}

.shot__cap p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: var(--font-micro);
}

.mini {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-size: 11px;
}

.mini__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  font-size: 15px;
  font-weight: 850;
}

.mini__bar--messages {
  background: #f7f7f7;
}

.mini__bar span {
  color: #888;
  font-size: 13px;
  font-weight: 500;
}

.mini__list {
  flex: 1;
  background: #fff;
}

.mini__row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.mini__row:last-child {
  border-bottom: 1px solid #e8e8e8;
}

.mini__av {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 9px;
}

.mini__av--family {
  background: linear-gradient(135deg, #ff9a6b, #ff6b6b);
}

.mini__av--team {
  background: linear-gradient(135deg, #6b8cff, #5a6ee0);
}

.mini__av--friend {
  background: linear-gradient(135deg, #34d17e, #07c160);
}

.mini__av--book {
  background: linear-gradient(135deg, #ffb75e, #ed8f03);
}

.mini__av--contact {
  background: linear-gradient(135deg, #b06bff, #7e5ae0);
}

.mini__rt {
  flex: 1;
  min-width: 0;
}

.mini__rt b {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.mini__rt span {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mini__meta {
  flex: none;
  color: #b5b5b5;
  font-size: 10px;
  text-align: right;
}

.mini__badge {
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  margin-top: 4px;
  margin-left: auto;
  padding: 0 4px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-size: 10px;
  font-weight: 850;
}

.moment {
  flex: 1;
  background: #fff;
}

.moment__cover {
  height: 120px;
  background: linear-gradient(135deg, #07c160, #34d17e);
}

.moment__post {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid #f2f2f2;
}

.moment__post .av {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 8px;
}

.moment__post .av--green {
  background: linear-gradient(135deg, #34d17e, #07c160);
}

.moment__post .av--blue {
  background: linear-gradient(135deg, #6b8cff, #5a6ee0);
}

.moment__post .txt b {
  color: #5a6e9e;
  font-size: 13px;
}

.moment__post .txt p {
  margin: 4px 0 8px;
  color: #222;
  font-size: 12px;
  line-height: 1.5;
}

.moment__imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.moment__imgs i {
  aspect-ratio: 1;
  display: block;
  border-radius: 4px;
}

.moment__img--green-1 {
  background: #bfe7cf;
}

.moment__img--green-2 {
  background: #a7dec0;
}

.moment__img--green-3 {
  background: #8fd4af;
}

.moment__img--sand-1 {
  background: #d9c7b0;
}

.moment__img--sand-2 {
  background: #c9b49a;
}

.callface {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0 30px;
  color: #fff;
  background: linear-gradient(160deg, #1b5e3f, #0b3d27);
}

.callface__profile {
  text-align: center;
}

.callface__av {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.16);
}

.callface__av img {
  width: 58px;
  height: 58px;
  filter: brightness(0) invert(1);
}

.callface__name {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 760;
}

.callface__time {
  margin-top: 4px;
  font-size: 13px;
  opacity: 0.7;
}

.callface__ctrl {
  display: flex;
  gap: 22px;
}

.callface__btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.callface__btn svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.callface__btn.red {
  background: #fa5151;
}

.callface__btn.gray {
  background: rgba(255, 255, 255, 0.18);
}

.mini-chart {
  height: 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 8px;
}

.mini-chart span {
  display: block;
  border-radius: 12px 12px 6px 6px;
  background: var(--brand-soft);
  animation: rise 2.8s ease-in-out infinite;
}

.mini-chart span:nth-child(1) {
  height: 38px;
  background: #e1edff;
}

.mini-chart span:nth-child(2) {
  height: 66px;
  background: #d9f8e7;
  animation-delay: -0.5s;
}

.mini-chart span:nth-child(3) {
  height: 48px;
  background: #fff0bf;
  animation-delay: -1s;
}

.mini-chart span:nth-child(4) {
  height: 58px;
  background: #dff7f0;
  animation-delay: -1.5s;
}

.stats-band {
  position: relative;
  overflow: hidden;
  padding: 56px 40px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(135deg, #06ad56 0%, #07c160 55%, #34d17e 100%);
  box-shadow: 0 28px 70px rgba(7, 193, 96, 0.25);
}

.stats-band::before,
.stats-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.stats-band::before {
  width: 320px;
  height: 320px;
  top: -140px;
  right: -60px;
}

.stats-band::after {
  width: 220px;
  height: 220px;
  bottom: -120px;
  left: 10%;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item .num {
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-item .num .suf {
  margin-left: 2px;
  font-size: 0.5em;
}

.stat-item .lbl {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-small);
  font-weight: 760;
}

.cta-final {
  background: #fff;
  text-align: center;
}

.cta-final .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.cta-final .section-sub {
  margin-right: auto;
  margin-left: auto;
}

.cta-final .badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.cta-final .btn {
  min-height: 56px;
  padding: 0 30px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 32px;
  align-items: start;
}

.content-panel,
.info-panel,
.value-card,
.download-card,
.doc-panel,
.step-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-low);
}

.content-panel {
  padding: 34px;
}

.content-panel p,
.page-content p {
  color: var(--muted);
  font-size: var(--font-lead);
  line-height: 1.9;
}

.info-panel {
  padding: 26px;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.info-list strong {
  display: block;
  color: var(--ink);
}

.info-list span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 196px;
  padding: 24px;
}

.value-card h3 {
  margin-top: 18px;
  font-size: var(--title-card);
}

.value-card p {
  margin: 9px 0 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-item time {
  color: var(--brand-deep);
  font-weight: 900;
}

.timeline-item h3 {
  font-size: var(--title-card);
}

.timeline-item p {
  margin: 6px 0 0;
}

.download-hero-grid {
  grid-template-columns: minmax(0, 780px);
  justify-content: center;
  text-align: center;
}

.download-hero-copy {
  max-width: 780px;
  margin: 0 auto;
}

.download-hero-copy .eyebrow,
.download-hero-copy .hero-title-compact,
.download-hero-copy .lead {
  margin-right: auto;
  margin-left: auto;
}

.download-hero-copy .hero-actions {
  justify-content: center;
}

.download-hero-actions .btn {
  width: 164px;
}

.download-page .section {
  padding-top: 36px;
}

.download-page .section-header {
  margin-bottom: 51px;
}

.download-page .download-support-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

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

.download-card {
  position: relative;
  min-height: 392px;
  padding: 34px 30px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.download-card:hover {
  border-color: rgba(7, 193, 96, 0.24);
  box-shadow: var(--shadow-mid);
  transform: translateY(-8px);
}

.download-card.featured {
  border-color: rgba(7, 193, 96, 0.46);
  box-shadow: 0 26px 68px rgba(7, 193, 96, 0.14);
}

.download-card__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-size: var(--font-tiny);
  font-weight: 900;
  line-height: 1;
}

.download-card .icon-tile {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 20px;
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.download-card .icon-tile-neutral {
  color: var(--ink);
  background: #f0f1f3;
}

.download-card .icon-tile svg {
  width: 36px;
  height: 36px;
}

.download-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.download-card .platform-note {
  margin: 10px 0 10px;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.7;
}

.download-version {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 0 0 22px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--font-micro);
  line-height: 1.4;
}

.download-version b {
  color: var(--ink);
  font-weight: 900;
}

.download-card .btn {
  width: 100%;
  margin-top: auto;
}

.download-note {
  margin: 14px 0 0;
  color: var(--brand-deep);
  font-size: var(--font-micro);
  font-weight: 820;
  line-height: 1.7;
}

.qr-section {
  padding-top: 22px;
}

.download-page .qr-section {
  padding-top: 86px;
}

.qr-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(292px, 337px);
  gap: 48px;
  align-items: center;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-low);
}

.qr-band__copy {
  max-width: 660px;
}

.qr-band__copy .section-kicker {
  margin-bottom: 16px;
}

.qr-band h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 920;
  line-height: 1.18;
}

.qr-band__copy > p:not(.section-kicker) {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: var(--font-body);
  line-height: 1.8;
}

.qr-band__copy .qr-desc {
  white-space: nowrap;
}

.qr-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: var(--font-small);
  font-weight: 820;
}

.qr-check {
  width: 26px;
  height: 26px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.qr-check svg {
  width: 15px;
  height: 15px;
}

.qr-visual {
  display: flex;
  justify-content: flex-end;
  padding-right: 22px;
}

.qr-box {
  width: min(100%, 270px);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-mid);
}

.qr-img {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 14px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
}

.qr-code-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.qr-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #fff;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.qr-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: none;
}

.qr-cap {
  color: var(--muted);
  font-size: var(--font-small);
  font-weight: 820;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card,
.faq-card {
  padding: 24px;
}

.step-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.step-card h3,
.faq-card h3 {
  margin-top: 18px;
  font-size: var(--title-card);
}

.step-card p,
.faq-card p {
  color: var(--muted);
}

.doc-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.doc-nav {
  position: sticky;
  top: 100px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-low);
}

.doc-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-size: var(--font-small);
  font-weight: 800;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.doc-nav a:hover {
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.doc-panel {
  padding: 36px;
}

.doc-panel h2,
.doc-panel h3 {
  scroll-margin-top: 110px;
}

.doc-panel h2 {
  margin-top: 0;
  font-size: var(--title-subsection);
}

.doc-panel h3 {
  margin-top: 34px;
  font-size: var(--title-doc);
}

.doc-panel p,
.doc-panel li {
  color: #56635e;
  font-size: var(--font-body);
  line-height: 1.95;
}

.doc-panel ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}

.doc-meta span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: var(--font-small);
  font-weight: 760;
}

.section .story h2 {
  font-size: var(--title-subsection);
  line-height: 1.2;
}

.section .faq-card h2 {
  font-size: var(--title-card);
  line-height: 1.32;
  font-weight: 900;
}

.site-footer {
  padding: 64px 0 16px;
  color: #c7cbd1;
  background: #0e1013;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer .brand {
  width: fit-content;
  margin-bottom: 16px;
  color: #fff;
}

.footer__about {
  max-width: 280px;
  margin: 0;
  color: #888f99;
  font-size: var(--font-small);
  line-height: 1.7;
}

.footer__col h4 {
  margin: 0 0 16px;
  color: #fff;
  font-size: var(--font-small);
  font-weight: 760;
}

.footer__col a {
  display: block;
  padding: 6px 0;
  color: #888f99;
  font-size: var(--font-small);
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--brand);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 12px;
  padding-top: 24px;
  color: #6b7280;
  font-size: var(--font-micro);
}

.footer__bottom a {
  color: #6b7280;
}

.footer__bottom a:hover {
  color: var(--brand);
}

.mobile-bottom-nav {
  display: none;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

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

.js .reveal.in,
.js .reveal.shown {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 14px rgba(7, 193, 96, 0);
  }
}

@keyframes float-phone {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

@keyframes float-note {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes circle-rotate-outer {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes circle-rotate-inner {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes wave {
  0%, 100% {
    transform: scaleY(0.72);
  }
  50% {
    transform: scaleY(1.08);
  }
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

@keyframes rise {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 1080px) {
  .bento-card.large,
  .bento-card.medium {
    grid-column: span 6;
  }

  .scene-grid,
  .values,
  .about-stats,
  .contact-grid,
  .values-grid,
  .download-grid,
  .steps-grid,
  .showcase-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 920px) {
  .hero-grid,
  .story,
  .qr-band,
  .split-grid,
  .doc-layout,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .story {
    gap: 40px;
  }

  .visual-stage {
    min-height: 560px;
  }

  .doc-nav,
  .toc {
    position: static;
  }

  .story__media {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    height: auto;
    aspect-ratio: 5 / 4;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
  }

  .nav {
    width: min(var(--max), calc(100% - 28px));
    min-height: 68px;
  }

  .nav-panel {
    position: static;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links {
    display: none;
  }

  .nav-panel > .btn {
    width: auto;
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }

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

  .page-hero {
    padding: 54px 0 52px;
  }

  .home-hero {
    min-height: auto;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .hero__meta {
    gap: 14px 18px;
  }

  .hero__divider {
    display: none;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__brandcol {
    grid-column: 1 / -1;
  }

  .footer__col {
    display: none;
  }

  .site-footer {
    padding-top: 28px;
    padding-bottom: calc(10px + 72px + env(safe-area-inset-bottom));
  }

  .footer__top {
    padding-bottom: 14px;
  }

  .site-footer .brand {
    margin-bottom: 8px;
  }

  .footer__about {
    max-width: none;
    font-size: 13px;
    line-height: 1.5;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 10px;
    line-height: 1.45;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: 8px;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 -12px 34px rgba(31, 35, 41, 0.1);
    backdrop-filter: blur(16px);
    transition: background-color 0.2s ease;
  }

  .mobile-bottom-nav.is-at-page-bottom {
    background: rgba(255, 255, 255, 1);
  }

  .mobile-bottom-nav a {
    min-width: 0;
    min-height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
  }

  .mobile-bottom-nav svg {
    width: 19px;
    height: 19px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-bottom-nav span {
    display: block;
  }

  .mobile-bottom-nav a[aria-current="page"] {
    color: var(--brand-deep);
    background: var(--brand-soft);
  }
}

@media (max-width: 640px) {
  :root {
    --title-hero: 42px;
    --title-page: 38px;
    --title-section: 32px;
    --title-subsection: 28px;
    --title-card: 19px;
    --title-doc: 20px;
  }

  body {
    font-size: 16px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

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

  .hero__meta {
    width: fit-content;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    justify-items: center;
    column-gap: 22px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .hero__stat {
    width: auto;
    min-width: 66px;
    text-align: center;
  }

  .hero__meta .hero__stat:last-child {
    min-width: 121px;
    transform: none;
  }

  .hero__stat strong {
    font-size: 22px;
    white-space: nowrap;
  }

  .hero__stat strong,
  .hero__stat span {
    text-align: center;
  }

  .download-hero-copy,
  .download-hero-copy .hero-title-compact,
  .download-hero-copy .lead,
  #download-options .section-header,
  #download-options .section-header h2,
  #download-options .section-header p {
    max-width: calc(100vw - 40px);
  }

  .download-hero-copy .hero-title-compact {
    font-size: 34px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  #download-options .section-header h2 {
    font-size: 30px;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .about-head__sub,
  .privacy-head__sub {
    white-space: normal;
  }

  .visual-stage {
    min-height: 500px;
  }

  .phone-shell {
    width: min(326px, 92vw);
    border-radius: 34px;
  }

  .phone-screen {
    min-height: 492px;
    border-radius: 25px;
  }

  .floating-note {
    font-size: 12px;
  }

  .floating-note.left {
    top: 58px;
  }

  .floating-note.right {
    right: 0;
    bottom: 58px;
  }

  .section {
    padding: 40px 0;
  }

  .home-section {
    padding-top: 28px;
  }

  .home-section .section-header {
    margin-bottom: 34px;
  }

  .trust-strip-inner {
    min-height: auto;
    flex-direction: column;
    gap: 8px;
    padding-top: 18px;
    padding-bottom: 8px;
  }

  .trust-rating {
    max-width: 320px;
    line-height: 1.55;
  }

  .download-page .section {
    padding-top: 10px;
  }

  .download-page .download-support-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .qr-section {
    padding-top: 40px;
  }

  .download-page .qr-section {
    padding-top: 40px;
  }

  .qr-band {
    gap: 24px;
    padding: 30px 22px;
    justify-items: center;
    text-align: center;
  }

  .qr-band__copy {
    display: contents;
  }

  .qr-band__copy .section-kicker {
    order: 1;
    margin-bottom: 0;
  }

  .qr-visual {
    order: 2;
    width: 100%;
    justify-content: center;
    padding-right: 0;
  }

  .qr-band h2 {
    order: 3;
    width: 100%;
    margin-top: 4px;
  }

  .qr-band__copy .qr-desc {
    order: 4;
    max-width: 320px;
    white-space: normal;
  }

  .qr-feature {
    order: 5;
    width: min(100%, 320px);
    justify-content: center;
  }

  .qr-box {
    width: min(100%, 248px);
    padding: 20px;
  }

  .qr-img {
    width: 188px;
    height: 188px;
  }

  .bento-grid,
  .scene-grid,
  .values,
  .about-stats,
  .contact-grid,
  .values-grid,
  .download-grid,
  .steps-grid,
  .showcase-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.large,
  .bento-card.medium {
    grid-column: span 1;
  }

  .content-panel,
  .doc-panel,
  .toc,
  .stats-band {
    padding: 24px;
  }

  .policy-meta {
    padding: 14px 16px;
  }

  .policy-section h3 {
    align-items: flex-start;
    font-size: 19px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    padding-bottom: calc(10px + 72px + env(safe-area-inset-bottom));
  }
}

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