:root {
  --ink: #122b27;
  --ink-deep: #0b201d;
  --paper: #f7f8f6;
  --paper-warm: #edf0eb;
  --line: #cbd4ce;
  --muted: #62716d;
  --accent: #d85b46;
  --accent-dark: #a83f30;
  --gold: #ddb84a;
  --mint: #dcefe9;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(11, 32, 29, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

button { color: inherit; font: inherit; }

h1, h2, h3, p { margin: 0; }

h1, h2, h3 {
  font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

::selection { color: var(--white); background: var(--accent); }

.page-shell { width: min(1180px, calc(100% - 80px)); margin: 0 auto; }

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 100;
  padding: 8px 12px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
}

.skip-link:focus { top: 16px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 88px;
  padding: 18px 40px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  color: var(--ink);
  background: rgba(247, 248, 246, 0.98);
  border-color: rgba(18, 43, 39, 0.12);
  box-shadow: 0 3px 18px rgba(11, 32, 29, 0.08);
}

.site-header-inner,
.site-header-inner.is-scrolled {
  position: fixed;
  color: var(--ink);
  background: rgba(247, 248, 246, 0.98);
  border-color: rgba(18, 43, 39, 0.12);
  box-shadow: 0 3px 18px rgba(11, 32, 29, 0.08);
}

.wordmark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
}

.wordmark-symbol { position: relative; display: inline-block; width: 24px; height: 24px; }

.wordmark-symbol i {
  position: absolute;
  top: 1px;
  width: 12px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 0 10px 10px 0;
}

.wordmark-symbol i:first-child { right: 1px; }
.wordmark-symbol i:last-child { left: 1px; transform: rotate(180deg); }

.site-nav { display: flex; align-items: center; gap: 25px; }

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav > a:not(.nav-button)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav > a:not(.nav-button):hover::after,
.site-nav > a:not(.nav-button):focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav-button {
  padding: 8px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 4px;
  transition: color 160ms ease, background-color 160ms ease;
}

.site-header.is-scrolled .nav-button,
.site-header-inner .nav-button { color: var(--white); background: var(--ink); border-color: var(--ink); }
.nav-button:hover { color: var(--white); background: var(--accent); border-color: var(--accent); }

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.hero-media,
.hero-overlay { position: absolute; inset: 0; }

.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; }

.hero-overlay { background: rgba(8, 30, 26, 0.68); }

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 72px;
  align-items: end;
  min-height: 720px;
  padding-top: 168px;
  padding-bottom: 76px;
}

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

.eyebrow {
  margin-bottom: 17px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow-light { color: #f7d584; }

.hero h1 { max-width: 700px; font-size: 66px; }
.hero h1 em { color: #f6d582; font-style: normal; }

.hero-description { max-width: 570px; margin-top: 25px; font-size: 18px; line-height: 1.8; color: rgba(255, 255, 255, 0.88); }

.hero-actions { display: flex; gap: 24px; align-items: center; margin-top: 38px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button-primary { color: var(--ink); background: var(--white); }
.button-primary:hover { color: var(--white); background: var(--accent); }

.inline-link { display: inline-flex; gap: 8px; align-items: center; color: var(--ink); font-size: 14px; font-weight: 800; }
.inline-link span { transition: transform 160ms ease; }
.inline-link:hover span { transform: translateX(4px); }
.inline-link-light { color: var(--white); }

.hero-aside { display: grid; gap: 14px; padding-bottom: 5px; }
.hero-aside div { display: grid; grid-template-columns: 42px 1fr; gap: 8px; align-items: baseline; padding-top: 13px; border-top: 1px solid rgba(255, 255, 255, 0.4); }
.hero-aside span { color: #f6d582; font-size: 12px; font-weight: 800; }
.hero-aside p { font-size: 15px; font-weight: 600; }

.belief-strip { background: var(--gold); }
.belief-strip-inner { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 18px; }
.belief-strip p { font-size: 15px; font-weight: 800; }
.belief-strip span { width: 5px; height: 5px; flex: 0 0 auto; background: var(--ink); border-radius: 50%; }

.intro-section { padding-top: 130px; padding-bottom: 130px; }
.section-label { display: flex; gap: 13px; align-items: center; color: var(--muted); font-size: 13px; font-weight: 700; }
.section-label span { color: var(--accent); }

.intro-statement { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr); gap: 120px; align-items: end; margin-top: 35px; }
.intro-statement h2,
.split-heading h2,
.gallery-heading h2,
.faq-intro h2,
.contact-layout h2 { font-size: 50px; }
.intro-statement p { font-size: 17px; line-height: 1.85; color: #40514d; }
.intro-statement .inline-link { margin-top: 22px; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 80px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-grid article { min-height: 235px; padding: 27px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-grid span { color: var(--accent); font-size: 12px; font-weight: 800; }
.value-grid h3 { margin-top: 38px; font-size: 24px; }
.value-grid p { margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.75; }

.steps-section { padding: 120px 0 126px; color: var(--white); background: var(--ink); }
.split-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr); gap: 100px; align-items: end; }
.split-heading h2 { color: var(--white); }
.split-heading > p { max-width: 410px; color: rgba(255, 255, 255, 0.72); font-size: 16px; line-height: 1.85; }

.steps-list { padding: 0; margin: 72px 0 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, 0.3); }
.steps-list li { display: grid; grid-template-columns: 110px minmax(0, 1fr) 38px; gap: 26px; align-items: center; min-height: 128px; border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
.step-index { color: #f7d584; font-size: 13px; font-weight: 800; }
.steps-list h3 { font-size: 26px; }
.steps-list p { margin-top: 7px; color: rgba(255, 255, 255, 0.7); font-size: 15px; }
.step-icon { display: grid; width: 34px; height: 34px; place-items: center; color: var(--ink); font-size: 19px; background: #f7d584; border-radius: 50%; }

.feature-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: 780px; color: var(--white); background: #21453e; }
.feature-stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 680px; overflow: hidden; background: #d8ebe5; }
.stage-orbit { position: absolute; display: block; width: 520px; height: 520px; border: 1px solid rgba(18, 43, 39, 0.36); border-radius: 50%; }
.orbit-one { transform: translate(-110px, -70px); }
.orbit-two { width: 690px; height: 690px; transform: translate(160px, 130px); }

.phone-frame { position: relative; overflow: hidden; background: #101313; border: 7px solid #111b19; border-radius: 8px; box-shadow: var(--shadow); }
.phone-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone-frame-feature { z-index: 1; width: min(300px, 62%); aspect-ratio: 1080 / 2288; }
.stage-caption { position: absolute; right: 32px; bottom: 29px; z-index: 2; color: var(--ink); font-size: 12px; font-weight: 800; line-height: 1.55; }
.stage-caption span { font-weight: 500; color: #52645f; }

.feature-copy { display: flex; flex-direction: column; justify-content: center; max-width: 500px; padding: 110px 70px; }
.feature-copy h2,
.safety-copy h2 { font-size: 52px; }
.feature-copy > p:not(.eyebrow) { margin-top: 23px; color: rgba(255, 255, 255, 0.75); font-size: 17px; line-height: 1.85; }
.feature-list { margin: 45px 0 0; }
.feature-list div { display: grid; grid-template-columns: 108px 1fr; gap: 12px; padding: 17px 0; border-top: 1px solid rgba(255, 255, 255, 0.3); }
.feature-list div:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
.feature-list dt { color: #f7d584; font-size: 14px; font-weight: 800; }
.feature-list dd { margin: 0; color: rgba(255, 255, 255, 0.78); font-size: 14px; }

.gallery-section { padding-top: 135px; padding-bottom: 135px; }
.gallery-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr); gap: 100px; align-items: end; }
.gallery-heading > p { max-width: 400px; color: var(--muted); font-size: 16px; line-height: 1.85; }
.phone-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; align-items: end; margin-top: 70px; }
.gallery-phone { margin: 0; }
.gallery-phone .phone-frame { width: min(100%, 280px); margin: 0 auto; aspect-ratio: 1080 / 2288; }
.gallery-phone-messages { transform: translateY(-45px); }
.gallery-phone figcaption { display: grid; grid-template-columns: 36px 1fr; gap: 12px; width: min(100%, 280px); padding-top: 20px; margin: 0 auto; }
.gallery-phone figcaption > span { color: var(--accent); font-size: 12px; font-weight: 800; }
.gallery-phone h3 { font-size: 22px; }
.gallery-phone figcaption p { margin-top: 5px; color: var(--muted); font-size: 13px; line-height: 1.65; }

.safety-section { color: var(--white); background: #243236; }
.safety-layout { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr); gap: 120px; padding-top: 120px; padding-bottom: 120px; }
.safety-copy > p:not(.eyebrow) { max-width: 475px; margin-top: 24px; color: rgba(255, 255, 255, 0.76); font-size: 17px; line-height: 1.85; }
.safety-copy .inline-link { margin-top: 28px; }
.safety-rules { border-top: 1px solid rgba(255, 255, 255, 0.3); }
.safety-rules article { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 16px; padding: 25px 0 27px; border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
.safety-rules span { color: #f7d584; font-size: 13px; font-weight: 800; }
.safety-rules h3 { font-size: 22px; }
.safety-rules p { margin-top: 7px; color: rgba(255, 255, 255, 0.72); font-size: 14px; }

.faq-section { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr); gap: 110px; padding-top: 135px; padding-bottom: 135px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px; cursor: pointer; list-style: none; font-size: 17px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 auto; color: var(--accent); font-size: 25px; font-weight: 400; transition: transform 160ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 600px; padding: 0 36px 25px 0; color: var(--muted); font-size: 15px; }
.faq-list details p a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }

.contact-section { color: var(--ink); background: var(--mint); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.64fr); gap: 100px; align-items: end; padding-top: 105px; padding-bottom: 105px; }
.contact-layout > div:last-child > p { color: #49635d; font-size: 16px; }
.contact-layout > div:last-child > a { display: inline-flex; gap: 11px; align-items: center; margin-top: 22px; color: var(--accent-dark); font-size: 18px; font-weight: 800; border-bottom: 1px solid currentColor; }

.site-footer { color: rgba(255, 255, 255, 0.78); background: var(--ink-deep); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; min-height: 132px; }
.site-footer .wordmark { color: var(--white); }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.site-footer nav a { font-size: 13px; font-weight: 600; }
.site-footer nav a:hover { color: #f7d584; }
.site-footer p { justify-self: end; font-size: 12px; }

/* Privacy page */
.privacy-page { background: var(--paper); }
.privacy-main { padding-top: 88px; }
.privacy-hero { color: var(--white); background: var(--ink); }
.privacy-hero .page-shell { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 0.47fr); gap: 80px; align-items: end; min-height: 430px; padding-top: 112px; padding-bottom: 70px; }
.privacy-hero h1 { font-size: 56px; }
.privacy-hero .lead { max-width: 640px; margin-top: 22px; color: rgba(255, 255, 255, 0.78); font-size: 17px; line-height: 1.85; }
.policy-meta { padding: 19px 0; border-top: 1px solid rgba(255, 255, 255, 0.32); border-bottom: 1px solid rgba(255, 255, 255, 0.32); }
.policy-meta p { color: #f7d584; font-size: 13px; font-weight: 800; }
.policy-meta p + p { margin-top: 5px; color: rgba(255, 255, 255, 0.72); font-weight: 500; }

.privacy-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 90px; padding-top: 85px; padding-bottom: 130px; }
.policy-nav { align-self: start; position: sticky; top: 116px; padding: 17px 0; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line); }
.policy-nav p { margin-bottom: 10px; font-size: 12px; font-weight: 800; color: var(--muted); }
.policy-nav a { display: block; padding: 6px 0; color: #4e5e5a; font-size: 13px; line-height: 1.45; }
.policy-nav a:hover { color: var(--accent-dark); }
.policy-document { min-width: 0; }
.policy-intro { max-width: 760px; padding-bottom: 34px; margin-bottom: 2px; border-bottom: 1px solid var(--line); color: #44534f; font-size: 17px; line-height: 1.85; }
.policy-section { max-width: 800px; padding-top: 50px; scroll-margin-top: 110px; }
.policy-section + .policy-section { border-top: 1px solid var(--line); }
.policy-number { display: block; margin-bottom: 12px; color: var(--accent); font-size: 12px; font-weight: 800; }
.policy-section h2 { font-size: 32px; }
.policy-section h3 { margin-top: 24px; font-size: 21px; }
.policy-section p { margin-top: 15px; color: #465652; font-size: 15px; line-height: 1.85; }
.policy-section ul { padding-left: 20px; margin: 15px 0 0; color: #465652; }
.policy-section li { margin: 8px 0; padding-left: 3px; font-size: 15px; line-height: 1.75; }
.policy-section a { color: var(--accent-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.policy-note { padding: 18px 20px; margin-top: 22px; color: #324440; background: var(--mint); border-left: 3px solid var(--accent); }
.policy-note p { margin: 0; color: inherit; }

@media (max-width: 1119px) {
  .site-header { min-height: 78px; padding: 14px 30px; }
  .menu-toggle { position: relative; display: grid; width: 42px; height: 42px; padding: 0; place-content: center; gap: 6px; color: currentColor; cursor: pointer; background: transparent; border: 1px solid currentColor; border-radius: 4px; }
  .menu-toggle i { display: block; width: 17px; height: 1px; background: currentColor; transition: transform 160ms ease; }
  .menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; padding: 15px 30px 24px; color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 14px 26px rgba(11, 32, 29, 0.12); }
  .site-nav.is-open { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; }
  .site-nav a { min-height: 46px; border-bottom: 1px solid var(--line); }
  .site-nav > a:not(.nav-button)::after { display: none; }
  .nav-button { justify-content: flex-start; padding: 0; color: var(--ink); background: transparent; border: 0; border-radius: 0; }
  .site-header.is-scrolled .nav-button,
  .site-header-inner .nav-button { color: var(--ink); background: transparent; border: 0; }
  .nav-button:hover { color: var(--accent-dark); }
  .hero-content { gap: 48px; }
  .hero h1 { font-size: 58px; }
  .intro-statement, .split-heading, .gallery-heading, .safety-layout, .contact-layout { gap: 65px; }
  .feature-copy { padding-right: 42px; padding-left: 42px; }
  .privacy-layout { gap: 55px; }
}

@media (max-width: 820px) {
  .page-shell { width: min(620px, calc(100% - 44px)); }
  .site-header { min-height: 70px; padding: 12px 22px; }
  .wordmark { font-size: 22px; }
  .hero { min-height: 680px; }
  .hero-content { display: block; min-height: 680px; padding-top: 146px; padding-bottom: 45px; }
  .hero h1 { font-size: 48px; }
  .hero-description { max-width: 560px; font-size: 16px; }
  .hero-aside { grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 68px; }
  .hero-aside div { display: block; min-height: 80px; }
  .hero-aside p { margin-top: 6px; font-size: 14px; line-height: 1.4; }
  .belief-strip-inner { display: grid; grid-template-columns: 1fr; gap: 8px; padding: 19px 0; }
  .belief-strip span { display: none; }
  .intro-section, .gallery-section, .faq-section { padding-top: 85px; padding-bottom: 85px; }
  .intro-statement, .split-heading, .gallery-heading, .safety-layout, .contact-layout { grid-template-columns: 1fr; gap: 30px; }
  .intro-statement h2, .split-heading h2, .gallery-heading h2, .faq-intro h2, .contact-layout h2 { font-size: 41px; }
  .value-grid { grid-template-columns: 1fr; margin-top: 52px; }
  .value-grid article { min-height: 0; }
  .value-grid h3 { margin-top: 18px; }
  .steps-section { padding: 85px 0; }
  .steps-list { margin-top: 45px; }
  .steps-list li { grid-template-columns: 55px minmax(0, 1fr) 34px; gap: 12px; min-height: 116px; }
  .steps-list h3 { font-size: 23px; }
  .feature-section { grid-template-columns: 1fr; }
  .feature-stage { min-height: 620px; }
  .feature-copy { max-width: none; padding: 82px max(22px, calc((100% - 620px) / 2)); }
  .feature-copy h2, .safety-copy h2 { font-size: 43px; }
  .phone-gallery { gap: 26px; margin-top: 45px; }
  .gallery-phone-messages { transform: none; }
  .gallery-phone .phone-frame { border-width: 5px; }
  .gallery-phone figcaption { grid-template-columns: 27px 1fr; }
  .gallery-phone h3 { font-size: 19px; }
  .gallery-phone figcaption p { font-size: 12px; }
  .safety-layout { padding-top: 85px; padding-bottom: 85px; }
  .faq-section { gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 19px; padding: 34px 0; text-align: center; }
  .site-footer .wordmark, .site-footer p { justify-self: center; }
  .privacy-main { padding-top: 70px; }
  .privacy-hero .page-shell { grid-template-columns: 1fr; gap: 34px; min-height: 0; padding-top: 78px; padding-bottom: 48px; }
  .privacy-hero h1 { font-size: 45px; }
  .privacy-layout { grid-template-columns: 1fr; gap: 38px; padding-top: 55px; padding-bottom: 85px; }
  .policy-nav { position: static; }
}

@media (max-width: 560px) {
  .page-shell { width: calc(100% - 32px); }
  .site-header { padding-right: 16px; padding-left: 16px; }
  .wordmark { gap: 7px; font-size: 21px; }
  .wordmark-symbol { transform: scale(0.9); }
  .site-nav { grid-template-columns: 1fr; padding: 12px 16px 20px; }
  .hero { min-height: 660px; }
  .hero-content { min-height: 660px; padding-top: 126px; }
  .hero h1 { font-size: 39px; }
  .hero-description { margin-top: 18px; font-size: 15px; }
  .hero-actions { display: grid; gap: 19px; align-items: start; margin-top: 30px; }
  .button { width: fit-content; }
  .hero-aside { margin-top: 44px; }
  .hero-aside p { font-size: 12px; }
  .belief-strip p { font-size: 13px; }
  .intro-statement h2, .split-heading h2, .gallery-heading h2, .faq-intro h2, .contact-layout h2 { font-size: 34px; }
  .intro-statement p, .split-heading > p, .gallery-heading > p, .contact-layout > div:last-child > p { font-size: 15px; }
  .value-grid { margin-top: 40px; }
  .value-grid article { padding: 23px 20px; }
  .steps-list li { grid-template-columns: 42px minmax(0, 1fr); padding: 20px 0; }
  .step-icon { display: none; }
  .steps-list p { font-size: 14px; }
  .feature-stage { min-height: 540px; }
  .phone-frame-feature { width: 250px; }
  .stage-orbit { width: 410px; height: 410px; }
  .orbit-two { width: 500px; height: 500px; }
  .stage-caption { right: 18px; bottom: 18px; font-size: 10px; }
  .feature-copy { padding: 70px 16px; }
  .feature-copy h2, .safety-copy h2 { font-size: 37px; }
  .feature-copy > p:not(.eyebrow), .safety-copy > p:not(.eyebrow) { font-size: 15px; }
  .feature-list div { grid-template-columns: 86px 1fr; }
  .phone-gallery { grid-template-columns: 1fr; gap: 38px; }
  .gallery-phone .phone-frame { width: 228px; }
  .gallery-phone figcaption { width: 228px; }
  .gallery-phone figcaption p { font-size: 13px; }
  .safety-rules article { grid-template-columns: 35px minmax(0, 1fr); }
  .faq-list summary { min-height: 70px; font-size: 15px; line-height: 1.5; }
  .faq-list details p { padding-right: 0; font-size: 14px; }
  .site-footer nav { gap: 9px 16px; }
  .privacy-hero h1 { font-size: 39px; }
  .privacy-hero .lead { font-size: 15px; }
  .privacy-layout { padding-top: 45px; }
  .policy-section { padding-top: 38px; }
  .policy-section h2 { font-size: 28px; }
  .policy-section h3 { font-size: 19px; }
  .policy-section p, .policy-section li { font-size: 14px; }
}

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