:root {
  --fog: #f3f7f5;
  --paper: #fffefd;
  --paper-soft: #f9fbfa;
  --ink: #08241b;
  --ink-soft: #496259;
  --muted: #73877f;
  --moss: #1f7659;
  --moss-deep: #075b3b;
  --mint: #a7dcc7;
  --mint-soft: #e3f1eb;
  --sky: #caedfb;
  --sky-deep: #59b8dc;
  --amber: #efb528;
  --orange: #e47a38;
  --red: #d94b58;
  --violet: #8e5e9b;
  --line: rgba(8, 36, 27, 0.11);
  --line-strong: rgba(8, 36, 27, 0.18);
  --shadow: 0 28px 80px rgba(18, 58, 44, 0.12);
  --shadow-soft: 0 16px 45px rgba(18, 58, 44, 0.08);
  --display: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, monospace;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 11%, rgba(167, 220, 199, 0.28), transparent 28rem),
    radial-gradient(circle at 92% 20%, rgba(202, 237, 251, 0.42), transparent 34rem),
    var(--fog);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 4px;
  background: linear-gradient(90deg, #46a66f 0 20%, #e7c13e 32%, #e89930 49%, #d9574d 65%, #a45c86 82%, #6e456d 100%);
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--sky-deep);
  outline-offset: 4px;
  border-radius: 8px;
}

main:focus {
  outline: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-header {
  position: relative;
  z-index: 20;
  padding: 24px 0;
}

.site-header__inner,
.site-footer__inner,
.section-inner,
.hero-inner,
.page-inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 780;
  letter-spacing: -0.025em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(7, 56, 40, 0.17);
}

.brand__byline {
  margin-left: 2px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.82);
  box-shadow: 0 10px 30px rgba(27, 68, 53, 0.06);
}

.site-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--mint-soft);
  color: var(--moss-deep);
}

.hero {
  position: relative;
  padding: 72px 0 118px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--moss);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1,
.page-hero h1,
.section-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 780;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(62px, 7.8vw, 112px);
  line-height: 0.92;
}

.hero h1 span {
  display: block;
  color: var(--moss);
}

.hero-lede {
  max-width: 610px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.48;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 720;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 30px rgba(8, 36, 27, 0.18);
}

.button--primary:hover {
  box-shadow: 0 18px 38px rgba(8, 36, 27, 0.24);
}

.button--secondary {
  border-color: var(--line-strong);
  background: rgba(255, 254, 253, 0.7);
  color: var(--ink);
}

.launch-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.launch-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 6px rgba(31, 118, 89, 0.11);
}

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

.air-field {
  position: absolute;
  inset: 3% 0 0 -35%;
  overflow: hidden;
  filter: saturate(0.94);
  pointer-events: none;
}

.air-field::before,
.air-field::after,
.air-field span {
  content: "";
  position: absolute;
  left: 2%;
  width: 100%;
  height: 38%;
  border: 2px solid rgba(91, 186, 222, 0.48);
  border-color: rgba(91, 186, 222, 0.5) transparent transparent;
  border-radius: 50%;
  transform: rotate(-11deg);
}

.air-field::before {
  top: 18%;
  box-shadow: 0 -14px 35px rgba(91, 186, 222, 0.19);
}

.air-field::after {
  top: 48%;
  border-top-color: rgba(73, 170, 124, 0.46);
  transform: rotate(8deg);
  box-shadow: 0 -14px 35px rgba(73, 170, 124, 0.14);
}

.air-field span {
  top: 65%;
  border-top-color: rgba(239, 181, 40, 0.32);
  transform: rotate(-4deg);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  padding: 9px;
  border-radius: 58px;
  background: #0b211a;
  box-shadow: 0 42px 100px rgba(9, 58, 42, 0.2), 0 8px 24px rgba(9, 58, 42, 0.13);
  transform: rotate(1.2deg);
}

.phone img {
  width: 100%;
  border-radius: 50px;
}

.phone::after {
  content: "";
  position: absolute;
  inset: 8% auto 10% -9px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(transparent 0 9%, #40534c 9% 22%, transparent 22% 30%, #40534c 30% 46%, transparent 46%);
}

.hero-caption {
  position: absolute;
  z-index: 3;
  right: -34px;
  bottom: 16%;
  width: 185px;
  padding: 14px 16px;
  border: 1px solid rgba(8, 36, 27, 0.1);
  border-radius: 20px;
  background: rgba(255, 254, 253, 0.94);
  box-shadow: var(--shadow-soft);
}

.hero-caption strong,
.hero-caption span {
  display: block;
}

.hero-caption strong {
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.25;
}

.hero-caption span {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.source-ribbon {
  border-block: 1px solid var(--line);
  background: rgba(255, 254, 253, 0.48);
}

.source-ribbon__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.source-ribbon__item {
  position: relative;
  padding: 24px 24px 22px;
}

.source-ribbon__item + .source-ribbon__item {
  border-left: 1px solid var(--line);
}

.source-ribbon strong,
.source-ribbon span {
  display: block;
}

.source-ribbon strong {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -0.02em;
}

.source-ribbon span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.content-section {
  padding: 132px 0;
}

.content-section--tight {
  padding: 92px 0;
}

.content-section--paper {
  background: var(--paper);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 58px;
}

.section-title {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
}

.section-lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.map-story {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.map-frame {
  position: relative;
  width: min(100%, 420px);
  padding: 8px;
  justify-self: center;
  border-radius: 56px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.map-frame::before {
  content: "";
  position: absolute;
  inset: -28px -45px auto auto;
  z-index: -1;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 237, 251, 0.9), rgba(202, 237, 251, 0));
}

.map-frame img {
  border-radius: 49px;
}

.map-copy h2 {
  max-width: 560px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.map-copy > p {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.feature-lines {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.feature-lines li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.feature-lines li:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-number {
  color: var(--moss);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.07em;
}

.feature-lines strong {
  display: block;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -0.02em;
}

.feature-lines span:last-child {
  color: var(--ink-soft);
  font-size: 15px;
}

.truth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: start;
  gap: clamp(46px, 8vw, 112px);
}

.truth-copy {
  position: sticky;
  top: 36px;
}

.truth-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.truth-copy p {
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.source-stack {
  display: grid;
  gap: 12px;
}

.source-card {
  position: relative;
  padding: 26px 28px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 8px 28px rgba(24, 65, 50, 0.05);
}

.source-card:nth-child(2) {
  margin-left: 42px;
  background: #f7fbfd;
}

.source-card:nth-child(3) {
  margin-right: 42px;
  background: #f7fbf8;
}

.source-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--moss);
}

.source-card--official::after {
  background: var(--sky-deep);
}

.source-card--owned::after {
  background: var(--amber);
}

.source-card__label {
  color: var(--moss);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.source-card h3 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.source-card p {
  margin: 11px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.utility-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  grid-template-areas:
    "privacy glance"
    "privacy alerts";
  gap: 18px;
}

.utility-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--paper);
}

.utility-panel--privacy {
  grid-area: privacy;
  min-height: 590px;
  padding: clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 79% 25%, rgba(167, 220, 199, 0.62), transparent 18rem),
    linear-gradient(145deg, #fffefd 0%, #eef7f3 100%);
}

.utility-panel--glance {
  grid-area: glance;
  padding: 30px;
  background: #0a2019;
  color: white;
}

.utility-panel--alerts {
  grid-area: alerts;
  padding: 30px;
  background: linear-gradient(135deg, #f8fbfa, #edf7fb);
}

.utility-kicker {
  color: var(--moss);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.utility-panel--glance .utility-kicker {
  color: var(--mint);
}

.utility-panel h3 {
  max-width: 620px;
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.utility-panel--glance h3,
.utility-panel--alerts h3 {
  font-size: 30px;
}

.utility-panel p {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.utility-panel--glance p {
  color: rgba(255, 255, 255, 0.68);
}

.privacy-path {
  position: absolute;
  right: -30px;
  bottom: 4px;
  width: min(58%, 440px);
  aspect-ratio: 1;
  border: 1px solid rgba(31, 118, 89, 0.22);
  border-radius: 50%;
}

.privacy-path::before,
.privacy-path::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(31, 118, 89, 0.18);
  border-radius: 50%;
}

.privacy-path::before {
  inset: 15%;
}

.privacy-path::after {
  inset: 31%;
  background: var(--paper);
  box-shadow: 0 0 0 13px rgba(255, 254, 253, 0.45);
}

.privacy-list {
  position: relative;
  z-index: 2;
  max-width: 470px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid rgba(8, 36, 27, 0.1);
  font-weight: 650;
}

.privacy-list li::before {
  content: "✓";
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--moss);
  color: white;
  font-size: 13px;
}

.widget-sample {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 15%, rgba(86, 191, 146, 0.26), transparent 10rem),
    rgba(255, 255, 255, 0.04);
}

.widget-sample__top,
.widget-sample__bottom {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.widget-sample__top {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.widget-sample__value {
  margin-top: 12px;
  font-family: var(--display);
  font-size: 64px;
  font-weight: 760;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.widget-sample__bottom {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.alert-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.alert-line__bell {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--moss-deep);
  font-size: 21px;
}

.alert-line strong,
.alert-line span {
  display: block;
}

.alert-line strong {
  font-family: var(--display);
  font-size: 16px;
}

.alert-line span {
  color: var(--muted);
  font-size: 13px;
}

.closing-cta {
  padding: 104px 0 120px;
  text-align: center;
}

.closing-cta__inner {
  width: min(860px, calc(100% - 48px));
  margin-inline: auto;
}

.closing-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.closing-cta p {
  max-width: 600px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.closing-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 254, 253, 0.58);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding-block: 34px;
}

.footer-brand {
  color: var(--ink-soft);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--moss-deep);
}

/* Interior pages */
.page-hero {
  padding: 82px 0 78px;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.5fr);
  align-items: end;
  gap: 60px;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(58px, 8vw, 106px);
  line-height: 0.92;
}

.page-hero__lede {
  max-width: 670px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 21px;
}

.page-hero__aside {
  padding: 22px 0 4px 26px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-transform: uppercase;
}

.page-body {
  padding: 22px 0 118px;
}

.page-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(48px, 9vw, 130px);
}

.page-toc {
  position: sticky;
  top: 26px;
  align-self: start;
  padding-top: 26px;
  border-top: 1px solid var(--line-strong);
}

.page-toc strong {
  display: block;
  margin-bottom: 14px;
  color: var(--moss);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-toc a {
  display: block;
  padding: 6px 0;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
}

.page-toc a:hover {
  color: var(--moss-deep);
}

.prose {
  min-width: 0;
}

.prose > section {
  padding: 34px 0 50px;
  border-top: 1px solid var(--line-strong);
  scroll-margin-top: 28px;
}

.prose > section:first-child {
  padding-top: 26px;
}

.prose h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(31px, 4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.prose h3 {
  margin: 30px 0 0;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.025em;
}

.prose p,
.prose ul,
.prose ol,
.prose dl {
  margin: 18px 0 0;
}

.prose p,
.prose li,
.prose dd {
  color: var(--ink-soft);
}

.prose ul,
.prose ol {
  padding-left: 1.25em;
}

.prose li + li {
  margin-top: 10px;
}

.prose a {
  color: var(--moss-deep);
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.prose .button {
  text-decoration: none;
}

.prose .button--primary {
  color: white;
}

.prose .button--secondary {
  color: var(--ink);
}

.plain-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.summary-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}

.summary-item strong,
.summary-item span {
  display: block;
}

.summary-item strong {
  font-family: var(--display);
  font-size: 17px;
}

.summary-item span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 14px;
}

.callout {
  margin-top: 26px;
  padding: 24px 26px;
  border-left: 4px solid var(--moss);
  border-radius: 0 22px 22px 0;
  background: var(--mint-soft);
}

.callout strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
}

.callout p {
  margin-top: 7px;
  font-size: 15px;
}

.data-list {
  display: grid;
  gap: 0;
  margin-top: 24px;
}

.data-list > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
  gap: 26px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.data-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.data-list dt {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 720;
}

.data-list dd {
  margin: 0;
  font-size: 15px;
}

.source-method {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.source-method:first-of-type {
  margin-top: 24px;
}

.source-method__mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--moss-deep);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 780;
}

.source-method:nth-of-type(2) .source-method__mark {
  background: #e7f5fb;
  color: #257a9c;
}

.source-method:nth-of-type(3) .source-method__mark {
  background: #f7efd7;
  color: #946d00;
}

.source-method h3 {
  margin: 0;
}

.source-method p {
  margin-top: 7px;
  font-size: 15px;
}

.support-hero-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.support-hero-card h2 {
  font-size: 31px;
}

.support-address {
  display: inline-block;
  margin-top: 16px;
  color: var(--moss-deep);
  font-family: var(--display);
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 760;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

.troubleshooting {
  margin-top: 24px;
}

.troubleshooting details {
  border-top: 1px solid var(--line);
}

.troubleshooting details:last-child {
  border-bottom: 1px solid var(--line);
}

.troubleshooting summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 720;
  list-style: none;
}

.troubleshooting summary::-webkit-details-marker {
  display: none;
}

.troubleshooting summary::after {
  content: "+";
  color: var(--moss);
  font-size: 26px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.troubleshooting details[open] summary::after {
  transform: rotate(45deg);
}

.troubleshooting details p,
.troubleshooting details ol,
.troubleshooting details ul {
  max-width: 670px;
  margin: -5px 0 22px;
  font-size: 15px;
}

.mail-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.updated-note {
  margin-top: 28px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

@media (max-width: 1200px) {
  .air-field {
    inset: 3% 0 0 -25%;
  }

  .air-field::before,
  .air-field::after,
  .air-field span {
    left: 0;
    width: 100%;
  }

  .hero-caption {
    right: 0;
  }
}

@media (max-width: 980px) {
  .hero-inner,
  .map-story,
  .truth-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

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

  .hero-stage {
    min-height: 700px;
  }

  .air-field {
    inset: 3% 0 0;
  }

  .air-field::before,
  .air-field::after,
  .air-field span {
    left: 0;
    width: 100%;
  }

  .hero-caption {
    right: max(2%, 18px);
  }

  .map-story {
    gap: 68px;
  }

  .map-frame {
    grid-row: 2;
  }

  .truth-copy {
    position: static;
  }

  .source-ribbon__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .source-ribbon__item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .source-ribbon__item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .utility-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "privacy privacy"
      "glance alerts";
  }

  .utility-panel--privacy {
    min-height: 500px;
  }

  .privacy-path {
    right: 0;
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-hero__aside {
    max-width: 500px;
  }

  .page-layout {
    grid-template-columns: 1fr;
  }

  .page-toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
  }

  .page-toc strong {
    flex-basis: 100%;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .site-header__inner,
  .site-footer__inner,
  .section-inner,
  .hero-inner,
  .page-inner,
  .source-ribbon__inner {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    padding: 18px 0;
  }

  .site-header__inner {
    gap: 10px;
  }

  .brand__byline {
    display: none;
  }

  .site-nav {
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    display: inline-flex;
    padding: 6px 7px;
    font-size: 12px;
  }

  .hero {
    padding: 48px 0 84px;
  }

  .hero h1 {
    font-size: clamp(56px, 17vw, 84px);
  }

  .hero-lede {
    font-size: 19px;
  }

  .hero-stage {
    min-height: 610px;
  }

  .air-field {
    inset: 3% 0 0;
  }

  .air-field::before,
  .air-field::after,
  .air-field span {
    left: 0;
    width: 100%;
  }

  .phone {
    width: min(86vw, 350px);
    border-radius: 52px;
  }

  .phone img {
    border-radius: 44px;
  }

  .hero-caption {
    right: 0;
    bottom: 12%;
    width: 160px;
  }

  .source-ribbon__item {
    padding: 20px 14px;
  }

  .source-ribbon strong {
    font-size: 15px;
  }

  .content-section {
    padding: 92px 0;
  }

  .content-section--tight {
    padding: 72px 0;
  }

  .section-title,
  .map-copy h2,
  .truth-copy h2 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .section-lede,
  .map-copy > p,
  .truth-copy p {
    font-size: 18px;
  }

  .map-frame {
    width: min(90vw, 390px);
  }

  .map-frame::before {
    right: 0;
  }

  .source-card:nth-child(2),
  .source-card:nth-child(3) {
    margin-inline: 0;
  }

  .utility-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "privacy"
      "glance"
      "alerts";
  }

  .utility-panel--privacy {
    min-height: 560px;
    padding: 32px 26px;
  }

  .privacy-path {
    right: 0;
    width: 72%;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

  .page-hero h1 {
    font-size: clamp(52px, 16vw, 78px);
  }

  .page-hero__lede {
    font-size: 18px;
  }

  .page-body {
    padding-bottom: 84px;
  }

  .plain-summary {
    grid-template-columns: 1fr;
  }

  .data-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .source-method {
    grid-template-columns: 42px 1fr;
  }

  .source-method__mark {
    width: 40px;
    height: 40px;
    font-size: 10px;
  }

  .closing-cta {
    padding: 80px 0 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .phone {
    transform: none;
  }
}

@media print {
  body {
    background: white;
  }

  body::before,
  .site-header,
  .site-footer,
  .page-toc,
  .button {
    display: none !important;
  }

  .page-hero,
  .page-body {
    padding: 20px 0;
  }

  .page-layout {
    display: block;
  }

  .prose > section {
    break-inside: avoid;
  }
}
