:root {
  color-scheme: dark;
  --blue: #00346f;
  --blue-deep: #001b3f;
  --blue-night: #011d35;
  --gold: #e8b75c;
  --ink: #f8f9ff;
  --body-ink: #dce1ea;
  font-family: "Work Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

html,
body {
  min-width: 320px;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: clip;
  margin: 0;
  color: var(--body-ink);
}

html {
  scroll-behavior: smooth;
  background: var(--blue-night);
}

body {
  --overscroll-top-background:
    radial-gradient(circle at 78% 42%, rgb(127 180 255 / 22%), transparent 25rem),
    linear-gradient(142deg, #063c78 0%, #012957 44%, #011d35 100%);
  --overscroll-bottom-background: #00162a;
  position: relative;
  isolation: isolate;
  background: var(--blue-night);
}

body::before,
body::after {
  content: "";
  position: fixed;
  right: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

body::before {
  top: -100vh;
  bottom: 50%;
  background: var(--overscroll-top-background);
}

body::after {
  top: 50%;
  bottom: -100vh;
  background: var(--overscroll-bottom-background);
}

body:has(.static-site-header-band) {
  --overscroll-top-background: #f6f1e7;
}

html:has(.landing-hero) {
  background: #05070a;
}

body:has(.landing-hero) {
  --overscroll-top-background: #05070a;
}

:root[data-theme='dark'] body:has(.static-site-header-band) {
  --overscroll-top-background: #05070a;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) body:has(.static-site-header-band) {
    --overscroll-top-background: #05070a;
  }
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-deep) 52%, #00142f 100%);
}

.landing-shell {
  --landing-cream: #f7f3e9;
  --landing-paper: #fffdf8;
  --landing-blue-soft: #eaf1f8;
  --landing-ink: #011d35;
  --landing-theme-gold: #e8b75c;
  --landing-hero-background:
    radial-gradient(ellipse 88% 58% at center, rgb(197 160 89 / 18%) 0%, rgb(197 160 89 / 10%) 48%, transparent 100%),
    #05070a;
  --landing-feature-background:
    radial-gradient(circle at center, rgb(197 160 89 / 8%) 0%, transparent 70%),
    #05070a;
  --landing-download-background:
    radial-gradient(ellipse 88% 75% at center, rgb(197 160 89 / 18%) 0%, rgb(197 160 89 / 10%) 48%, transparent 100%),
    #05070a;
  --landing-strong-ink: #f4f5f8;
  --landing-muted-ink: rgb(232 236 244 / 64%);
  --landing-feature-line: rgb(244 245 248 / 12%);
  --landing-feature-dot: rgb(244 245 248 / 22%);
  --landing-feature-dot-border: #05070a;
  overflow: clip;
  color: var(--landing-ink);
  background: var(--landing-cream);
}

.landing-hero {
  position: relative;
  min-height: max(700px, 100svh);
  color: var(--landing-strong-ink);
  background: var(--landing-hero-background);
  --site-header-foreground: #f3f6fa;
  --site-header-muted: #aeb7c7;
  --site-header-border: rgb(255 255 255 / 10%);
  --site-header-control: rgb(255 255 255 / 3%);
  --site-header-accent: var(--gold);
  --site-header-accent-foreground: #05070a;
  --site-header-menu-background: rgb(5 7 10 / 98%);
  --site-header-menu-foreground: #f3f6fa;
  --site-header-menu-muted: #a1abba;
}

.landing-hero > .site-header {
  position: absolute;
  top: max(18px, env(safe-area-inset-top));
  left: 50%;
  min-height: 52px;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
}

:root[data-theme='light']:has(.landing-hero) {
  background: #f6f1e7;
}

:root[data-theme='light'] body:has(.landing-hero) {
  --overscroll-top-background: #f6f1e7;
}

:root[data-theme='light'] .landing-shell {
  --landing-theme-gold: #8d6b2d;
  --landing-hero-background:
    radial-gradient(circle at center, rgb(141 107 45 / 10%) 0%, transparent 70%),
    color-mix(in srgb, #f6f1e7 92%, #8d6b2d 8%);
  --landing-feature-background:
    radial-gradient(circle at center, rgb(141 107 45 / 10%) 0%, transparent 70%),
    #f6f1e7;
  --landing-download-background:
    radial-gradient(circle at center, rgb(141 107 45 / 10%) 0%, transparent 70%),
    color-mix(in srgb, #f6f1e7 92%, #8d6b2d 8%);
  --landing-strong-ink: #17191d;
  --landing-muted-ink: #686b73;
  --landing-feature-line: rgb(23 25 29 / 10%);
  --landing-feature-dot: rgb(23 25 29 / 10%);
  --landing-feature-dot-border: #f6f1e7;
}

:root[data-theme='light'] .landing-hero {
  --site-header-foreground: #17191d;
  --site-header-muted: #686b73;
  --site-header-border: rgb(23 25 29 / 10%);
  --site-header-control: rgb(23 25 29 / 3%);
  --site-header-accent: #8d6b2d;
  --site-header-accent-foreground: #fffdf8;
  --site-header-menu-background: rgb(255 253 248 / 98%);
  --site-header-menu-foreground: #17191d;
  --site-header-menu-muted: #686b73;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme='dark']):has(.landing-hero) {
    background: #f6f1e7;
  }

  :root:not([data-theme='dark']) body:has(.landing-hero) {
    --overscroll-top-background: #f6f1e7;
  }

  :root:not([data-theme='dark']) .landing-shell {
    --landing-theme-gold: #8d6b2d;
    --landing-hero-background:
      radial-gradient(circle at center, rgb(141 107 45 / 10%) 0%, transparent 70%),
      color-mix(in srgb, #f6f1e7 92%, #8d6b2d 8%);
    --landing-feature-background:
      radial-gradient(circle at center, rgb(141 107 45 / 10%) 0%, transparent 70%),
      #f6f1e7;
    --landing-download-background:
      radial-gradient(circle at center, rgb(141 107 45 / 10%) 0%, transparent 70%),
      color-mix(in srgb, #f6f1e7 92%, #8d6b2d 8%);
    --landing-strong-ink: #17191d;
    --landing-muted-ink: #686b73;
    --landing-feature-line: rgb(23 25 29 / 10%);
    --landing-feature-dot: rgb(23 25 29 / 10%);
    --landing-feature-dot-border: #f6f1e7;
  }

  :root:not([data-theme='dark']) .landing-hero {
    --site-header-foreground: #17191d;
    --site-header-muted: #686b73;
    --site-header-border: rgb(23 25 29 / 10%);
    --site-header-control: rgb(23 25 29 / 3%);
    --site-header-accent: #8d6b2d;
    --site-header-accent-foreground: #fffdf8;
    --site-header-menu-background: rgb(255 253 248 / 98%);
    --site-header-menu-foreground: #17191d;
    --site-header-menu-muted: #686b73;
  }
}

.site-header {
  position: relative;
  width: min(100% - 40px, 1180px);
  min-height: 88px;
  margin: 0 auto;
  padding: max(14px, env(safe-area-inset-top)) 0 12px;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.site-header-band {
  position: relative;
  z-index: 30;
  color: var(--site-header-foreground, #eef2f8);
  background: transparent;
}

.static-site-header-band {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(23 25 29 / 10%);
  color: #17191d;
  background: rgb(246 241 231 / 95%);
  backdrop-filter: blur(18px);
  --site-header-foreground: #17191d;
  --site-header-muted: #686b73;
  --site-header-border: rgb(23 25 29 / 10%);
  --site-header-control: rgb(23 25 29 / 3%);
  --site-header-accent: #8d6b2d;
  --site-header-accent-foreground: #fffdf8;
  --site-header-menu-background: #fffdf8;
  --site-header-menu-foreground: #17191d;
  --site-header-menu-muted: #686b73;
}

:root[data-theme='dark'] .static-site-header-band {
  border-bottom-color: rgb(255 255 255 / 8%);
  color: #f3f6fa;
  background: rgb(5 7 10 / 95%);
  --site-header-foreground: #f3f6fa;
  --site-header-muted: #929cac;
  --site-header-border: rgb(255 255 255 / 10%);
  --site-header-control: rgb(255 255 255 / 3%);
  --site-header-accent: #c5a059;
  --site-header-accent-foreground: #05070a;
  --site-header-menu-background: rgb(5 7 10 / 98%);
  --site-header-menu-foreground: #f3f6fa;
  --site-header-menu-muted: #a1abba;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .static-site-header-band {
    border-bottom-color: rgb(255 255 255 / 8%);
    color: #f3f6fa;
    background: rgb(5 7 10 / 95%);
    --site-header-foreground: #f3f6fa;
    --site-header-muted: #929cac;
    --site-header-border: rgb(255 255 255 / 10%);
    --site-header-control: rgb(255 255 255 / 3%);
    --site-header-accent: #c5a059;
    --site-header-accent-foreground: #05070a;
    --site-header-menu-background: rgb(5 7 10 / 98%);
    --site-header-menu-foreground: #f3f6fa;
    --site-header-menu-muted: #a1abba;
  }
}

.static-site-header-band .site-header {
  min-height: 84px;
  padding: max(14px, env(safe-area-inset-top)) 0 12px;
}

:is(.static-site-header-band, .landing-hero) .site-nav {
  gap: clamp(22px, 3vw, 40px);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: none;
}

:is(.static-site-header-band, .landing-hero) :is(.theme-toggle, .language-picker summary) {
  border-color: transparent;
  background: transparent;
}

:is(.static-site-header-band, .landing-hero) .header-actions-compact {
  gap: 8px;
}

:is(.static-site-header-band, .landing-hero) .header-actions-compact .language-picker summary {
  min-width: 36px;
  padding: 0 7px;
  font-size: 13px;
}

:is(.static-site-header-band, .landing-hero) .header-action-divider {
  color: color-mix(in srgb, var(--site-header-accent) 40%, transparent);
  font-size: 13px;
  font-weight: 300;
}

.site-header > .brand-mark {
  justify-self: start;
}

.site-header > .site-nav {
  justify-self: center;
}

.site-header-mobile-panel {
  display: contents;
}

.site-header > .site-header-mobile-panel > .site-nav {
  justify-self: center;
}

.site-header > .site-header-mobile-panel > .header-actions {
  justify-self: end;
}

.mobile-header-menu-toggle {
  display: none;
}

.content-page-share-open-icon,
.content-page-share-close-icon {
  display: inline-grid;
  place-items: center;
}

.content-page-share-close-icon,
.content-page-share-menu[data-share-menu-open] .content-page-share-open-icon {
  display: none;
}

.content-page-share-menu[data-share-menu-open] .content-page-share-close-icon {
  display: inline-grid;
}

.brand-mark,
.x-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgb(248 249 255 / 88%);
  font-size: 13px;
  font-weight: 750;
}

.brand-mark span {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark.content-page-wordmark img {
  width: 108px;
  height: 34px;
  border-radius: 0;
}

.content-page-wordmark-dark {
  display: none;
}

:root[data-theme='dark'] .content-page-wordmark-light {
  display: none;
}

:root[data-theme='dark'] .content-page-wordmark-dark {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .content-page-wordmark-light {
    display: none;
  }

  :root:not([data-theme='light']) .content-page-wordmark-dark {
    display: block;
  }
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2.5vw, 18px);
  color: var(--site-header-muted, rgb(248 249 255 / 82%));
  font-size: 13px;
  font-weight: 400;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 14px;
}

.language-nav {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--site-header-border, rgb(248 249 255 / 18%));
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
}

.language-nav a {
  min-width: 30px;
  min-height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 5px;
  color: var(--site-header-muted, rgb(248 249 255 / 70%));
}

.language-nav a[aria-current='page'] {
  color: var(--site-header-accent-foreground, #00142f);
  background: var(--site-header-accent, var(--gold));
}

.language-picker {
  position: relative;
  color: var(--site-header-muted, rgb(248 249 255 / 78%));
  font-size: 11px;
  font-weight: 800;
}

.language-picker summary {
  min-width: 52px;
  min-height: 36px;
  padding: 0 10px 0 12px;
  border: 1px solid var(--site-header-border, rgb(248 249 255 / 16%));
  border-radius: 999px;
  background: var(--site-header-control, rgb(1 20 47 / 16%));
  backdrop-filter: blur(12px);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  list-style: none;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.site-header .language-picker:not(.country-picker, .reader-font-size-picker) summary {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
}

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

.language-picker summary:hover,
.language-picker summary:focus-visible,
.language-picker[open] summary {
  color: var(--site-header-foreground, var(--ink));
  border-color: color-mix(in srgb, var(--site-header-foreground, #f8f9ff) 28%, transparent);
  background: color-mix(in srgb, var(--site-header-foreground, #f8f9ff) 8%, transparent);
}

.landing-hero .language-picker summary:hover,
.landing-hero .language-picker summary:focus-visible,
.landing-hero .language-picker[open] summary {
  border-color: transparent;
  background: transparent;
}

.language-picker summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.language-picker summary .language-picker-chevron {
  width: 9px;
  height: 6px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 150ms ease;
}

.language-picker summary .language-picker-globe {
  width: 15px;
  height: 15px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 14;
}

.language-picker[open] summary .language-picker-chevron {
  transform: rotate(180deg);
}

.reader-font-size-picker summary {
  min-width: 36px;
  padding: 0;
  justify-content: center;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.reader-font-size-menu {
  min-width: 148px;
}

.reader-font-size-menu button {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  color: var(--site-header-menu-muted, rgb(248 249 255 / 72%));
  background: transparent;
  font: inherit;
  font-size: 12px;
  text-align: left;
}

.reader-font-size-menu button:hover,
.reader-font-size-menu button:focus-visible,
.reader-font-size-menu button[aria-pressed='true'] {
  color: var(--site-header-menu-foreground, var(--ink));
  background: color-mix(in srgb, var(--site-header-menu-foreground, var(--ink)) 8%, transparent);
}

.reader-font-size-menu button:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: -1px;
}

.reader-font-size-menu button[aria-pressed='true'] {
  color: var(--site-header-accent, var(--gold));
}

.reader-font-size-sample {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 700;
}

.reader-font-size-sample-small {
  font-size: 12px;
}

.reader-font-size-sample-medium {
  font-size: 15px;
}

.reader-font-size-sample-large {
  font-size: 18px;
}

.language-picker-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  width: 164px;
  padding: 6px;
  border: 1px solid rgb(248 249 255 / 14%);
  border-radius: 12px;
  color: var(--site-header-menu-foreground, #f8f9ff);
  background: var(--site-header-menu-background, rgb(3 26 55 / 96%));
  box-shadow: 0 18px 42px rgb(0 0 0 / 30%);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 2px;
}

.language-picker-menu a {
  min-height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: var(--site-header-menu-muted, rgb(248 249 255 / 76%));
  font-size: 12px;
  transition: color 150ms ease, background 150ms ease;
}

.language-picker-menu a:hover,
.language-picker-menu a:focus-visible {
  color: var(--site-header-menu-foreground, var(--ink));
  background: color-mix(in srgb, var(--site-header-menu-foreground, #f8f9ff) 8%, transparent);
}

.language-picker-menu a:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: -1px;
}

.language-picker-menu a[aria-current='page'] {
  color: var(--site-header-accent, var(--gold));
  background: color-mix(in srgb, var(--site-header-accent, var(--gold)) 8%, transparent);
}

.content-page-hero {
  position: relative;
  z-index: 20;
  width: min(calc(100% - 40px), 1180px);
  min-height: clamp(270px, 28vw, 320px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  color: var(--ink);
  background: linear-gradient(142deg, #063c78 0%, #012957 54%, #011d35 100%);
}

.content-page-header {
  width: min(100% - 40px, 1180px);
}

.content-page-hero-inner {
  width: min(100% - 80px, 1080px);
  min-height: clamp(270px, 28vw, 320px);
  margin: 0 auto;
  padding: 42px 0;
  display: flex;
  align-items: flex-end;
}

.content-page-hero-copy {
  width: min(100%, 760px);
}

.content-page-hero-copy h1 {
  margin: 14px 0 0;
  color: #f8f7f2;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  text-wrap: balance;
}

.content-page-hero-description {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgb(248 249 255 / 76%);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.5;
}

.content-page-hero-copy [class$="eyebrow"] {
  color: var(--gold);
}

.theme-toggle {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--site-header-border, rgb(248 249 255 / 16%));
  border-radius: 999px;
  color: var(--site-header-muted, rgb(248 249 255 / 78%));
  background: var(--site-header-control, rgb(1 20 47 / 16%));
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--site-header-foreground, var(--ink));
  border-color: color-mix(in srgb, var(--site-header-foreground, #f8f9ff) 28%, transparent);
  background: color-mix(in srgb, var(--site-header-foreground, #f8f9ff) 8%, transparent);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.theme-toggle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.theme-toggle-sun {
  display: none;
}

:root[data-theme='dark'] .theme-toggle-sun {
  display: block;
}

:root[data-theme='dark'] .theme-toggle-moon {
  display: none;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .theme-toggle-sun {
    display: block;
  }

  :root:not([data-theme='light']) .theme-toggle-moon {
    display: none;
  }
}

.language-suggestion {
  position: fixed;
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 20;
  width: min(calc(100% - 32px), 430px);
  padding: 15px 16px;
  border: 1px solid rgb(248 249 255 / 16%);
  border-radius: 16px;
  color: rgb(248 249 255 / 78%);
  background: rgb(3 26 55 / 96%);
  box-shadow: 0 18px 48px rgb(0 0 0 / 36%);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  white-space: nowrap;
}

.language-suggestion[hidden] {
  display: none;
}

.language-suggestion p {
  margin: 0;
}

.language-suggestion strong {
  color: var(--ink);
}

.language-suggestion-actions {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-left: auto;
}

.language-suggestion a {
  color: var(--gold);
  font-weight: 760;
}

.language-suggestion button {
  padding: 0;
  border: 0;
  color: rgb(248 249 255 / 54%);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.language-suggestion a:hover,
.language-suggestion a:focus-visible,
.language-suggestion button:hover,
.language-suggestion button:focus-visible {
  color: var(--ink);
}

.site-nav a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  transition: color 150ms ease;
}

.site-nav a:hover {
  color: var(--site-header-accent, var(--gold));
}

.site-nav a[aria-current='page'] {
  color: var(--site-header-accent, var(--gold));
}

.site-header-band .site-nav a[aria-current='page']::after {
  position: absolute;
  right: 18%;
  bottom: 0;
  left: 18%;
  height: 1px;
  content: "";
  background: currentColor;
}

.brand-mark img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.landing-wordmark img {
  width: 108px;
  height: 34px;
  border-radius: 0;
}

.landing-wordmark {
  line-height: 0;
}

.landing-wordmark picture {
  display: contents;
}

.landing-wordmark-light-mobile {
  display: none;
  flex: 0 0 auto;
  object-fit: contain;
}

.x-link {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
}

.x-link span:first-child {
  color: var(--gold);
}

.x-icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
  fill: currentColor;
}

.landing-hero-layout {
  width: min(100% - 48px, 1080px);
  min-height: max(700px, 100svh);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: clamp(44px, 6vw, 72px);
  padding: 88px 0;
}

.landing-hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.landing-hero-primary {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landing-hero-symbol {
  width: clamp(46px, 4vw, 56px);
  height: auto;
  aspect-ratio: 957 / 1040;
  object-fit: contain;
  display: block;
  margin-bottom: 20px;
}

.landing-hero-symbol-light {
  aspect-ratio: 957 / 1040;
}

.landing-eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.landing-hero .landing-eyebrow {
  color: var(--site-header-accent, var(--gold));
}

.landing-hero h1 {
  max-width: 570px;
  margin: 0;
  color: var(--landing-strong-ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(42px, 4.25vw, 58px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.99;
  text-wrap: balance;
}

.landing-hero h1 em {
  color: var(--landing-theme-gold);
  font-style: normal;
}

.landing-lede {
  max-width: 520px;
  margin: 22px auto 0;
  color: var(--landing-muted-ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.46;
  text-wrap: balance;
}

.landing-download-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.landing-hero-menu-links {
  display: none;
}

.landing-app-rating {
  width: min(100%, 350px);
  min-height: 92px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 14px;
  margin: 32px auto 0;
  color: var(--landing-strong-ink);
}

.landing-app-rating-wreath {
  width: 38px;
  height: 88px;
  display: block;
  background: var(--landing-theme-gold);
  -webkit-mask: url("/assets/landing-rating-wreath.svg") center / contain no-repeat;
  mask: url("/assets/landing-rating-wreath.svg") center / contain no-repeat;
}

.landing-app-rating-wreath-right {
  transform: scaleX(-1);
}

.landing-app-rating-copy {
  min-width: 0;
  text-align: center;
}

.landing-app-rating-stars {
  color: var(--landing-theme-gold);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI Symbol", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
  white-space: nowrap;
}

.landing-app-rating-title,
.landing-app-rating-detail {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-wrap: balance;
}

.landing-app-rating-title {
  margin-top: 8px;
  color: var(--landing-strong-ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.landing-app-rating-detail {
  margin-top: 5px;
  color: var(--landing-muted-ink);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

@media (min-width: 901px) {
  .landing-hero-layout {
    grid-template-rows: min(640px, calc(100svh - 176px));
    align-content: center;
  }

  .landing-hero-copy {
    display: contents;
  }

  .landing-hero-primary,
  .landing-app-rating {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    z-index: 2;
  }

  .landing-hero-primary {
    align-self: center;
    transform: translateY(-46px);
  }

  .landing-app-rating {
    align-self: end;
    margin: 0 auto;
  }

  .hero-showcase {
    grid-column: 2;
    grid-row: 1;
  }
}

.landing-shell .qr-download-surface .download-cta-shell,
.landing-shell .qr-download-surface .download-pill-cta {
  width: 195px;
}

.landing-shell .qr-download-surface .download-pill-cta {
  color: #05070a;
  background: #c5a059;
}

.landing-shell .qr-download-surface .download-pill-cta:hover {
  color: #05070a;
  background: #c5a059;
}

.hero-showcase {
  position: relative;
  align-self: center;
  justify-self: center;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-showcase-image {
  position: relative;
  width: min(100%, 360px);
  max-height: min(640px, calc(100svh - 176px));
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 34px 56px rgb(0 0 0 / 30%));
}

.hero-scroll-cue {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 4;
  width: 36px;
  height: 30px;
  color: var(--landing-muted-ink);
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  transition: color 160ms ease, opacity 220ms ease, transform 220ms ease;
  animation: hero-cue-float 2.2s ease-in-out infinite;
}

.hero-scroll-cue:hover,
.hero-scroll-cue:focus-visible {
  color: var(--landing-theme-gold);
}

.hero-scroll-cue:focus-visible {
  outline: 1px solid var(--landing-theme-gold);
  outline-offset: 3px;
}

.hero-scroll-cue.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 8px);
}

.hero-scroll-cue svg {
  width: 22px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

@keyframes hero-cue-float {
  0%,
  100% {
    margin-bottom: 0;
  }

  50% {
    margin-bottom: 5px;
  }
}

.feature-story {
  position: relative;
  color: var(--landing-strong-ink);
  background: var(--landing-feature-background);
}

.feature-story-shell {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 0.8fr);
  align-items: start;
  gap: clamp(72px, 9vw, 128px);
}

.feature-story-visual {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  place-items: center;
}

.feature-story-stage {
  position: relative;
  width: min(100%, 440px);
  height: min(72svh, 700px);
  min-height: 560px;
}

.feature-story-images {
  position: absolute;
  inset: 0;
}

.feature-story-image {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 520ms ease,
    transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.feature-story-image.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.feature-story-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 30px 44px rgb(0 0 0 / 42%));
}

.responsive-website-image {
  display: contents;
}

.feature-story-steps {
  position: relative;
  padding-left: clamp(34px, 4.5vw, 62px);
}

.feature-story-steps::before {
  content: "";
  position: absolute;
  top: clamp(96px, 12svh, 144px);
  bottom: clamp(96px, 12svh, 144px);
  left: 0;
  width: 1px;
  background: var(--landing-feature-line);
}

.feature-story-step {
  position: relative;
  min-height: 82svh;
  max-width: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px 0;
  opacity: 0.26;
  transform: translateY(18px);
  transition:
    opacity 360ms ease,
    transform 500ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.feature-story-step::before {
  content: "";
  position: absolute;
  left: calc(clamp(34px, 4.5vw, 62px) * -1 - 5px);
  top: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid var(--landing-feature-dot-border);
  border-radius: 50%;
  background: var(--landing-feature-dot);
  box-shadow: 0 0 0 1px var(--landing-feature-line);
  transform: translateY(-50%);
  transition: background-color 300ms ease, box-shadow 300ms ease;
}

.feature-story-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.feature-story-step.is-active::before {
  background: var(--landing-theme-gold);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--landing-theme-gold) 13%, transparent);
}

.feature-story-step .landing-eyebrow {
  margin-bottom: 15px;
  color: var(--landing-theme-gold);
}

.feature-story-step h3 {
  margin: 0;
  color: var(--landing-ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(38px, 4.1vw, 56px);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1.04;
  text-wrap: balance;
}

.feature-story-step h3 {
  color: var(--landing-strong-ink);
}

.feature-story-step h3 a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.feature-story-step > p:last-child {
  margin: 24px 0 0;
  color: var(--landing-muted-ink);
  font-size: clamp(17px, 1.45vw, 19px);
  line-height: 1.62;
}

.feature-story-mobile-visual {
  display: none;
  margin: 0;
}

.feature-story-step:last-child {
  min-height: 100svh;
}

.feature-story-step:first-child {
  min-height: 100svh;
}

.share-page.landing-download-panel {
  min-height: auto;
  padding:
    clamp(72px, 8vw, 104px)
    clamp(24px, 6vw, 88px);
  color: var(--landing-strong-ink);
  background: var(--landing-download-background);
}

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

  .hero-scroll-cue,
  .feature-story-image,
  .feature-story-step {
    animation: none;
    transition: none;
  }
}

.landing-footer {
  min-height: 260px;
  padding: 48px max(24px, calc((100vw - 1120px) / 2));
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
  color: rgb(248 249 255 / 58%);
  background: #00162a;
  font-size: 12px;
}

.footer-identity {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  justify-self: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-brand picture {
  display: block;
}

.footer-brand img {
  width: 120px;
  height: auto;
  display: block;
}

.landing-footer nav {
  display: flex;
  align-items: center;
}

.footer-navigation {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  justify-self: center;
}

.footer-primary-nav {
  justify-self: center;
  gap: clamp(18px, 2.5vw, 40px);
  color: rgb(248 249 255 / 64%);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: none;
}

.footer-primary-nav a,
.footer-utility-nav a,
.footer-contact-links a,
.footer-privacy-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  transition: color 150ms ease;
}

.footer-primary-nav a:hover,
.footer-primary-nav a:focus-visible,
.footer-utility-nav a:hover,
.footer-utility-nav a:focus-visible,
.footer-contact-links a:hover,
.footer-contact-links a:focus-visible,
.footer-privacy-link:hover,
.footer-privacy-link:focus-visible,
.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--gold);
}

.footer-primary-nav a:focus-visible,
.footer-utility-nav a:focus-visible,
.footer-contact-links a:focus-visible,
.footer-privacy-link:focus-visible,
.footer-social-link:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.footer-secondary {
  width: max-content;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  padding-top: 24px;
  justify-self: end;
}

.footer-utility-nav {
  justify-content: center;
  gap: clamp(18px, 2vw, 28px);
  color: rgb(248 249 255 / 64%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-footer .footer-contact-links {
  width: 100%;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  color: rgb(248 249 255 / 64%);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.landing-footer .footer-contact-links a,
.landing-footer .footer-privacy-link,
.landing-footer .footer-follow {
  min-height: 44px;
}

.footer-follow {
  width: 100%;
  min-height: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(248 249 255 / 64%);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.footer-privacy-link {
  color: rgb(248 249 255 / 64%);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}

.footer-social-links {
  justify-content: flex-start;
  gap: 10px;
}

.footer-social-link {
  width: 24px;
  height: 24px;
  border: 0;
  display: grid;
  place-items: center;
}

.footer-social-link svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.landing-footer > p,
.footer-tagline {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 16px;
  line-height: 1.35;
}

.landing-footer > p {
  justify-self: end;
  text-align: right;
}

.footer-tagline {
  width: max-content;
  min-width: 120px;
  text-align: center;
}

.footer-tagline span,
.footer-tagline em {
  display: block;
}

.landing-footer > p span,
.footer-tagline span {
  color: #fff;
}

.landing-footer > p em,
.footer-tagline em {
  color: var(--gold);
  font-style: normal;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .landing-hero {
    min-height: 100svh;
  }

  .landing-hero-layout {
    min-height: 100svh;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 20px;
    padding: 84px 0 68px;
    text-align: center;
  }

  .landing-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .landing-hero h1,
  .landing-lede {
    width: 100%;
    max-width: 680px;
  }

  .landing-download-actions {
    justify-content: center;
  }

  .hero-showcase {
    align-self: auto;
  }

  .hero-showcase-image {
    width: min(52vw, 300px);
    max-height: 480px;
  }

  .feature-story {
    padding: 72px 0 20px;
  }

  .feature-story-shell {
    width: min(100% - 40px, 620px);
    display: block;
  }

  .feature-story-visual {
    display: none;
  }

  .feature-story-steps {
    padding-left: 0;
  }

  .feature-story-steps::before {
    display: none;
  }

  .feature-story-step,
  .feature-story-step:first-child,
  .feature-story-step:last-child {
    min-height: 0;
    max-width: none;
    padding: 68px 0;
    border-bottom: 1px solid var(--landing-feature-line);
    opacity: 1;
    transform: none;
  }

  .feature-story-step:first-child {
    padding-top: 0;
  }

  .feature-story-step:last-child {
    border-bottom: 0;
  }

  .feature-story-step::before {
    display: none;
  }

  .feature-story-mobile-visual {
    height: min(116vw, 560px);
    margin-bottom: 34px;
    overflow: visible;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .feature-story-mobile-visual img {
    width: min(72%, 310px);
    max-height: 94%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 22px 34px rgb(0 0 0 / 38%));
  }

  .landing-footer:not(:has(.footer-identity)) {
    grid-template-columns: 1fr auto;
  }

  .landing-footer:not(:has(.footer-identity)) > p {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .hero-scroll-cue {
    display: none;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 88px;
    padding-bottom: 10px;
  }

  .site-header > .brand-mark {
    grid-column: 1;
    grid-row: 1;
  }

  .mobile-header-menu-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    padding: 0 11px;
    border: 1px solid var(--site-header-border, rgb(248 249 255 / 18%));
    border-radius: 999px;
    color: var(--site-header-foreground, #f8f9ff);
    background: var(--site-header-control, rgb(1 20 47 / 16%));
    display: grid;
    align-content: center;
    gap: 4px;
    justify-self: end;
    cursor: pointer;
  }

  .landing-shell .mobile-header-menu-toggle {
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .mobile-header-menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 150ms ease, opacity 150ms ease;
  }

  .mobile-header-menu-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) translateY(-5px);
  }

  .mobile-header-menu-toggle span:nth-child(2) {
    transform: translate(-50%, -50%);
  }

  .mobile-header-menu-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) translateY(5px);
  }

  .site-header[data-mobile-menu-open] .mobile-header-menu-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header[data-mobile-menu-open] .mobile-header-menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0);
  }

  .site-header[data-mobile-menu-open] .mobile-header-menu-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-header-mobile-panel {
    position: absolute;
    top: calc(100% - 8px);
    right: 0;
    z-index: 40;
    width: min(286px, calc(100vw - 32px));
    padding: 10px;
    border: 1px solid var(--site-header-border, rgb(248 249 255 / 18%));
    border-radius: 14px;
    color: var(--site-header-foreground, #f8f9ff);
    background: var(--site-header-menu-background, rgb(3 26 55 / 98%));
    box-shadow: 0 22px 54px rgb(0 0 0 / 32%);
    backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    gap: 8px;
  }

  .site-header[data-mobile-menu-open] .site-header-mobile-panel {
    display: flex;
  }

  .site-header-mobile-panel .site-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .site-header-mobile-panel .site-nav a {
    min-height: 42px;
    padding: 0 12px;
    border-radius: 8px;
    justify-content: flex-start;
  }

  .site-header-mobile-panel .site-nav a:hover,
  .site-header-mobile-panel .site-nav a[aria-current='page'] {
    background: color-mix(in srgb, currentColor 8%, transparent);
  }

  .site-header-band .site-header-mobile-panel .site-nav a[aria-current='page']::after {
    display: none;
  }

  .site-header-mobile-panel .header-actions {
    width: 100%;
    padding: 9px 4px 1px;
    border-top: 1px solid var(--site-header-border, rgb(248 249 255 / 14%));
    justify-content: space-between;
  }

  .site-header-mobile-panel .language-picker-menu {
    max-width: calc(100vw - 52px);
  }

  .site-header-mobile-panel .country-picker .language-picker-menu {
    right: auto;
    left: 0;
  }

  .site-header-mobile-panel .language-picker:not(.country-picker) .language-picker-menu {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .landing-hero > .site-header {
    min-height: 88px;
  }

  .landing-shell .mobile-header-menu-toggle,
  .landing-shell .site-header-mobile-panel .site-nav {
    display: none;
  }

  .landing-shell .site-header-mobile-panel {
    position: static;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    display: contents;
  }

  .landing-shell .site-header-mobile-panel .header-actions {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    padding: 0;
    border: 0;
    justify-self: end;
  }

  .landing-hero-menu-links {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--landing-strong-ink);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: none;
  }

  .landing-hero-menu-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    transition: color 150ms ease;
  }

  .landing-hero-menu-links a:hover,
  .landing-hero-menu-links a:focus-visible {
    color: var(--site-header-accent, var(--gold));
  }

  .landing-app-rating {
    width: min(100%, 300px);
    min-height: 78px;
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 11px;
    position: static;
    margin: 0 auto max(24px, env(safe-area-inset-bottom));
  }

  .landing-hero:has(> .language-suggestion:not([hidden])) .landing-app-rating {
    margin-bottom: max(88px, calc(env(safe-area-inset-bottom) + 88px));
  }

  .landing-app-rating-wreath {
    width: 32px;
    height: 74px;
  }

  .landing-app-rating-stars {
    font-size: 16px;
  }

  .landing-app-rating-title {
    margin-top: 6px;
    font-size: 16px;
  }

  .landing-app-rating-detail {
    margin-top: 4px;
    font-size: 12px;
  }

  .hero-showcase {
    display: none;
  }

  .landing-wordmark img {
    width: 148px;
    height: 56px;
  }

  .landing-wordmark-light-desktop {
    display: none;
  }

  .landing-wordmark-light-mobile {
    width: 148px;
    height: 56px;
    display: block;
  }

  .landing-hero-symbol {
    display: none;
  }

  .landing-hero-copy {
    height: 100%;
    align-self: stretch;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    justify-items: center;
    transform: none;
  }

  .landing-hero-layout {
    --landing-mobile-logo-bottom: calc(max(18px, env(safe-area-inset-top)) + 72.5px);
    height: 100svh;
    min-height: 100svh;
    align-content: stretch;
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
    padding: var(--landing-mobile-logo-bottom) 0 0;
  }
}

.share-shell {
  min-height: 100svh;
  background:
    radial-gradient(circle at 16% 18%, rgb(171 199 255 / 10%), transparent 34rem),
    linear-gradient(142deg, #00346f 0%, #082b5c 48%, #001b3f 100%);
}

.share-page {
  min-height: 100svh;
  align-items: center;
  display: flex;
  padding:
    max(48px, env(safe-area-inset-top))
    clamp(24px, 6vw, 88px)
    max(48px, env(safe-area-inset-bottom));
}

.share-layout {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(64px, 10vw, 132px);
}

.share-identity {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.share-lockup {
  display: block;
}

.share-logo-lockup {
  display: block;
  width: clamp(242px, 24vw, 310px);
  height: auto;
}

.share-tagline {
  max-width: 320px;
  margin: 12px 0 0;
  color: var(--landing-strong-ink, #e9f1ff);
  font-family: "Newsreader", "Noto Serif", ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.35;
  text-wrap: balance;
}

.download-brand-lockup .share-logo-lockup {
  width: clamp(160px, 16vw, 180px);
  aspect-ratio: 900 / 724;
  object-fit: contain;
}

.landing-download-logo-light {
  aspect-ratio: 900 / 724;
  object-fit: contain;
}

.landing-download-panel .share-tagline em {
  color: var(--landing-theme-gold);
}

.landing-shell .content-page-wordmark-dark {
  display: none;
}

:root[data-theme='dark'] .landing-shell .content-page-wordmark-light {
  display: none;
}

:root[data-theme='dark'] .landing-shell .content-page-wordmark-dark {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .landing-shell .content-page-wordmark-light {
    display: none;
  }

  :root:not([data-theme='light']) .landing-shell .content-page-wordmark-dark {
    display: block;
  }
}

@media (max-width: 760px) {
  :root .landing-shell .landing-hero-copy .landing-hero-symbol {
    display: none;
  }
}

.download-brand-lockup .share-tagline {
  max-width: none;
  margin-top: 16px;
  font-size: clamp(25px, 2.5vw, 28px);
  line-height: 1.16;
  letter-spacing: -0.015em;
  text-wrap: nowrap;
}

.download-brand-lockup .share-tagline span,
.download-brand-lockup .share-tagline em {
  display: block;
}

.share-tagline em {
  color: var(--gold);
  font-style: normal;
}

.share-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.share-eyebrow {
  margin: 0 0 11px;
  color: #abc7ff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.025em;
  line-height: 1.3;
}

.share-content h1,
.share-content h2 {
  position: static;
  width: auto;
  height: auto;
  max-width: 650px;
  margin: 0;
  padding: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border: 0;
  color: var(--landing-strong-ink, #e9f1ff);
  font-family: "Work Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(29px, 2.8vw, 38px);
  font-weight: 620;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}

.share-summary {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--landing-muted-ink, rgb(233 241 255 / 68%));
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.55;
}

.share-summary span {
  display: block;
}

.share-actions {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (min-width: 781px) {
  .share-actions {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .download-page .download-choice-actions {
    margin-right: 0;
    margin-left: 0;
  }
}

.store-download-cta {
  width: 195.195px;
  height: 62px;
  max-width: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: opacity 160ms ease;
}

.store-download-cta:hover {
  opacity: 0.92;
}

.store-download-cta:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.store-download-badge {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
}

.qr-download-surface .download-cta-shell {
  position: relative;
  z-index: 10;
  width: 176px;
  height: 58px;
  flex: 0 0 58px;
}

.download-choice-actions {
  max-width: none;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.download-choice-actions .download-cta-shell,
.qr-download-surface.download-choice-actions .download-pill-cta,
.download-option-button {
  width: 220px;
}

.download-choice-actions .download-cta-shell {
  flex: 0 0 220px;
}

.qr-download-surface.download-choice-actions .download-pill-cta,
.qr-download-surface.download-choice-actions .download-cta-shell::before {
  right: 0;
  transform: none;
}

.download-ios-trigger {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.download-option-button {
  min-height: 58px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.15;
  text-align: center;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.download-option-button:hover {
  color: var(--blue-night);
  background: var(--gold);
  transform: translateY(-1px);
}

.download-option-button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.qr-download-surface .download-pill-cta {
  position: absolute;
  right: 50%;
  bottom: 0;
  z-index: 1;
  width: 176px;
  height: 58px;
  max-width: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--blue-night);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 rgb(0 0 0 / 0%);
  opacity: 1;
  isolation: isolate;
  transform: translateX(50%);
  transition:
    width 280ms cubic-bezier(0.34, 1.56, 0.64, 1),
    height 280ms cubic-bezier(0.34, 1.56, 0.64, 1),
    border-radius 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 280ms ease;
}

.qr-download-surface .download-pill-cta:hover {
  opacity: 1;
}

.download-cta-label {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: opacity 140ms ease;
}

.download-cta-qr {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 17px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease 80ms;
}

.download-cta-qr img {
  width: 224px;
  height: 224px;
  margin-bottom: 1px;
  display: block;
}

.download-cta-caption {
  color: var(--blue-night);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.download-cta-platform {
  color: rgb(1 29 53 / 64%);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

@media (hover: hover) and (pointer: fine) {
  .qr-download-surface:has(.download-cta-shell:hover, .download-pill-cta:focus-visible, .download-cta-shell.is-previewing),
  .share-page:has(.download-cta-shell:hover, .download-pill-cta:focus-visible, .download-cta-shell.is-previewing) {
    position: relative;
  }

  .qr-download-surface:has(.download-cta-shell:hover, .download-pill-cta:focus-visible, .download-cta-shell.is-previewing),
  .landing-hero-copy:has(.download-cta-shell:hover, .download-pill-cta:focus-visible, .download-cta-shell.is-previewing),
  .content-page-hero:has(.download-cta-shell:hover, .download-pill-cta:focus-visible, .download-cta-shell.is-previewing),
  .share-page:has(.download-cta-shell:hover, .download-pill-cta:focus-visible, .download-cta-shell.is-previewing),
  .prayer-web-reader-aside:has(.download-cta-shell:hover, .download-pill-cta:focus-visible, .download-cta-shell.is-previewing),
  .mass-web-reader-aside:has(.download-cta-shell:hover, .download-pill-cta:focus-visible, .download-cta-shell.is-previewing) {
    z-index: 100;
  }

  .content-page-hero:has(.download-cta-shell:hover, .download-pill-cta:focus-visible, .download-cta-shell.is-previewing) {
    overflow: visible;
  }

  .content-page-hero:has(.download-cta-shell:hover, .download-pill-cta:focus-visible, .download-cta-shell.is-previewing) :is(.prayer-web-hero-device, .mass-web-hero-device) {
    clip-path: inset(-40px -100vw -40px -100vw);
  }

  .qr-download-surface .download-cta-shell::before {
    position: absolute;
    right: 50%;
    bottom: -4px;
    z-index: 0;
    width: 184px;
    height: 66px;
    border-radius: 999px;
    content: "";
    transform: translateX(50%);
  }

  .qr-download-surface .download-cta-shell:hover::before,
  .qr-download-surface .download-cta-shell.is-previewing::before {
    width: 276px;
    height: 326px;
    border-radius: 32px;
  }

  .qr-download-surface .download-cta-shell:hover .download-pill-cta,
  .qr-download-surface .download-pill-cta:focus-visible,
  .qr-download-surface .download-cta-shell.is-previewing .download-pill-cta {
    width: 268px;
    height: 318px;
    color: var(--blue-night);
    border-radius: 28px;
    background: #f7f3e9;
    box-shadow:
      0 60px 140px -20px rgb(0 0 0 / 42%),
      0 30px 80px -10px rgb(0 0 0 / 30%),
      0 8px 24px rgb(0 0 0 / 20%);
  }

  .qr-download-surface .download-cta-shell:hover .download-cta-label,
  .qr-download-surface .download-pill-cta:focus-visible .download-cta-label,
  .qr-download-surface .download-cta-shell.is-previewing .download-cta-label {
    opacity: 0;
  }

  .qr-download-surface .download-cta-shell:hover .download-cta-qr,
  .qr-download-surface .download-pill-cta:focus-visible .download-cta-qr,
  .qr-download-surface .download-cta-shell.is-previewing .download-cta-qr {
    opacity: 1;
  }

}

.android-waitlist-content {
  width: 100%;
  max-width: 560px;
}

.android-waitlist-form,
.android-waitlist-success {
  width: 100%;
  margin-top: 30px;
}

.android-waitlist-form {
  display: grid;
  gap: 12px;
  text-align: left;
}

.android-waitlist-form[hidden],
.android-waitlist-success[hidden] {
  display: none;
}

.android-waitlist-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.android-waitlist-form input {
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  color: var(--blue-night);
  border: 1px solid rgb(1 29 53 / 22%);
  border-radius: 14px;
  background: #fffdf8;
  font: inherit;
  font-size: 16px;
}

.android-waitlist-form input::placeholder {
  color: rgb(1 29 53 / 42%);
}

.android-waitlist-form input:focus-visible {
  outline: 3px solid rgb(232 183 92 / 55%);
  outline-offset: 2px;
  border-color: var(--gold);
}

.android-waitlist-form button,
.android-waitlist-primary-link {
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-night);
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.android-waitlist-form button {
  border-radius: 14px;
}

.android-waitlist-form button:hover,
.android-waitlist-primary-link:hover {
  background: var(--gold);
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.android-waitlist-form button:focus-visible,
.android-waitlist-primary-link:focus-visible,
.android-waitlist-secondary-link:focus-visible {
  outline: 3px solid rgb(1 29 53 / 35%);
  outline-offset: 3px;
}

.android-waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.android-waitlist-note,
.android-waitlist-error {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.android-waitlist-note {
  color: rgb(233 241 255 / 68%);
}

.android-waitlist-error {
  color: #ffc9c5;
  font-weight: 650;
}

.android-waitlist-success {
  text-align: left;
}

.android-waitlist-check {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--blue-night);
  border-radius: 50%;
  background: var(--gold);
  font-size: 20px;
  font-weight: 800;
}

.android-waitlist-success h2 {
  margin: 18px 0 0;
  color: #e9f1ff;
  font-size: clamp(25px, 2.6vw, 32px);
  line-height: 1.1;
}

.android-waitlist-success h2:focus {
  outline: none;
}

.android-waitlist-success p {
  margin: 10px 0 0;
  color: rgb(233 241 255 / 72%);
  font-size: 14px;
  line-height: 1.5;
}

.android-waitlist-links {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.android-waitlist-primary-link {
  min-height: 48px;
}

.android-waitlist-secondary-link {
  color: var(--gold);
  font-size: 14px;
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--gold) 46%, transparent);
  text-underline-offset: 4px;
}

.store-coming-soon {
  margin: 0;
  color: rgb(195 198 210 / 62%);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.podcast-identity {
  justify-self: center;
}

.podcast-artwork {
  width: min(100%, 340px);
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 780px) {
  .share-page.landing-download-panel {
    padding: 64px 22px;
  }

  .share-page {
    padding:
      max(38px, env(safe-area-inset-top))
      22px
      max(38px, env(safe-area-inset-bottom));
  }

  .share-layout {
    width: min(100%, 560px);
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .share-logo-lockup {
    width: min(66vw, 250px);
  }

  .share-tagline {
    margin-top: 10px;
    font-size: 17px;
  }

  .download-brand-lockup .share-logo-lockup {
    width: 180px;
  }

  .download-brand-lockup .share-tagline {
    margin-top: 16px;
    font-size: 25px;
  }

  .share-content {
    align-items: center;
    text-align: center;
  }

  .share-content h1,
  .share-content h2 {
    max-width: 520px;
    font-size: clamp(26px, 7vw, 32px);
  }

  .download-page .share-content h1 {
    display: none;
  }

  .download-page .share-layout {
    gap: 26px;
  }

  .download-page .share-summary {
    margin-top: 0;
  }

  .share-actions {
    width: 100%;
    max-width: 280px;
    margin-top: 26px;
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .share-summary {
    margin-top: 18px;
    font-size: 14px;
  }

  .store-download-cta {
    width: 195.195px;
    max-width: 100%;
    align-self: center;
  }

  .qr-download-surface .download-pill-cta {
    width: 176px;
    max-width: none;
  }

  .download-choice-actions {
    max-width: 280px;
    flex-direction: column;
    align-items: stretch;
  }

  .download-choice-actions .download-cta-shell,
  .qr-download-surface.download-choice-actions .download-pill-cta,
  .download-option-button {
    width: 100%;
  }

  .download-choice-actions .download-cta-shell {
    flex-basis: 58px;
  }

  .qr-download-surface .download-cta-shell {
    align-self: center;
  }

  .android-waitlist-page .share-layout {
    gap: 30px;
  }

  .android-waitlist-page .share-summary {
    max-width: 430px;
  }

  .android-waitlist-form,
  .android-waitlist-success {
    margin-top: 24px;
  }

  .android-waitlist-success {
    text-align: center;
  }

  .android-waitlist-check {
    margin-right: auto;
    margin-left: auto;
  }

  .android-waitlist-success p {
    margin-right: auto;
    margin-left: auto;
  }

  .android-waitlist-form-row {
    grid-template-columns: 1fr;
  }

  .android-waitlist-form button {
    width: 100%;
  }

  .android-waitlist-links {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .android-waitlist-secondary-link {
    text-align: center;
  }

  .podcast-artwork {
    width: min(36vw, 145px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .qr-download-surface .download-pill-cta,
  .download-cta-label,
  .download-cta-qr {
    transition: none;
  }
}

.page-shell {
  min-height: 100vh;
  overflow: visible;
}

.page-header {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: min(100% - 36px, 1100px);
  transform: none;
  margin: 0 auto;
  padding-top: max(18px, env(safe-area-inset-top));
}

.page-hero {
  width: min(100% - 36px, 900px);
  margin: 0 auto;
  padding: clamp(74px, 11vh, 118px) 0 clamp(34px, 7vh, 70px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero h1 {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border: 0;
  color: var(--ink);
  font-family: "Noto Serif", ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(34px, 7vw, 68px);
  font-weight: 700;
  line-height: 1.04;
  text-wrap: balance;
}

.support-hero h1 {
  max-width: 720px;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.14;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgb(248 249 255 / 82%);
  font-family: "Newsreader", "Noto Serif", ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 1.38;
}

.support-grid {
  width: min(100% - 36px, 1100px);
  margin: 0 auto;
  padding: 0 0 clamp(54px, 8vh, 92px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-card {
  min-height: 100%;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgb(232 183 92 / 24%);
  border-radius: 8px;
  background: rgb(1 29 53 / 54%);
  box-shadow: 0 18px 34px rgb(0 0 0 / 16%);
}

.support-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.card-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 9px;
  border: 1px solid rgb(232 183 92 / 42%);
  border-radius: 999px;
  color: var(--gold);
  background: rgb(232 183 92 / 8%);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif", ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 650;
  line-height: 1.12;
}

.support-card p,
.step-list {
  margin: 0;
  color: rgb(248 249 255 / 78%);
  font-size: 15px;
  line-height: 1.62;
}

.support-card p + p {
  margin-top: 12px;
}

.policy-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif", ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 650;
  line-height: 1.12;
}

.privacy-questions {
  padding-top: 8px;
}

.privacy-questions .policy-updated {
  font-family: inherit;
  font-size: 13px;
  line-height: 1.4;
}

.text-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.step-list {
  padding-left: 20px;
}

.step-list li + li {
  margin-top: 9px;
}

.policy-updated {
  color: rgb(248 249 255 / 62%);
  font-size: 13px;
}

/* Sacred editorial privacy and support pages */
.legal-page-body,
.legal-page-shell {
  --legal-gold: #c5a059;
  --legal-gold-bright: #d4b56a;
  --legal-ink: #e2e8f0;
  --legal-muted: #8b96a8;
  --legal-background: #05070a;
  --legal-border: rgb(255 255 255 / 8%);
  --site-header-foreground: #f3f6fa;
  --site-header-muted: #929cac;
  --site-header-border: rgb(255 255 255 / 10%);
  --site-header-control: rgb(255 255 255 / 3%);
  --site-header-accent: #c5a059;
  --site-header-accent-foreground: #05070a;
  --site-header-menu-background: rgb(5 7 10 / 98%);
  --site-header-menu-foreground: #f3f6fa;
  --site-header-menu-muted: #a1abba;
  color: var(--legal-ink);
  background: var(--legal-background);
}

:root[data-theme='light'] .legal-page-body,
:root[data-theme='light'] .legal-page-shell {
  --legal-gold: #8d6b2d;
  --legal-gold-bright: #9c762f;
  --legal-ink: #17191d;
  --legal-muted: #686b73;
  --legal-background: #f6f1e7;
  --legal-border: rgb(23 25 29 / 10%);
  --site-header-foreground: #17191d;
  --site-header-muted: #686b73;
  --site-header-border: rgb(23 25 29 / 10%);
  --site-header-control: rgb(23 25 29 / 3%);
  --site-header-accent: #8d6b2d;
  --site-header-accent-foreground: #fffdf8;
  --site-header-menu-background: #fffdf8;
  --site-header-menu-foreground: #17191d;
  --site-header-menu-muted: #686b73;
}

.legal-page-shell {
  overflow: visible;
  font-family: "Work Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.legal-page-shell .site-header-band {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--legal-border);
  background: color-mix(in srgb, var(--legal-background) 95%, transparent);
  backdrop-filter: blur(18px);
}

.legal-page-shell .site-header {
  min-height: 84px;
  padding: max(14px, env(safe-area-inset-top)) 0 12px;
}

.legal-page-shell .site-nav {
  gap: clamp(22px, 3vw, 40px);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: none;
}

.legal-page-shell .theme-toggle,
.legal-page-shell .language-picker summary {
  border-color: transparent;
  background: transparent;
}

.legal-page-hero {
  width: 100%;
  margin: 0;
  padding: clamp(74px, 9vw, 112px) max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at center, rgb(197 160 89 / 8%) 0%, transparent 70%),
    var(--legal-background);
}

:root[data-theme='light'] .legal-page-hero {
  background:
    radial-gradient(circle at center, rgb(141 107 45 / 10%) 0%, transparent 70%),
    color-mix(in srgb, var(--legal-background) 92%, var(--legal-gold) 8%);
}

.legal-page-hero .eyebrow {
  color: var(--legal-gold-bright);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.legal-page-hero h1 {
  max-width: 860px;
  color: var(--legal-ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.legal-page-hero.support-hero h1 {
  max-width: 900px;
  font-size: clamp(34px, 4.2vw, 54px);
}

.legal-page-content {
  width: min(calc(100% - 48px), 860px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.legal-page-section {
  padding: clamp(34px, 5vw, 52px) 0;
  border-bottom: 1px solid var(--legal-border);
}

.legal-page-section:first-child {
  padding-top: 0;
}

.legal-page-section:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-page-heading {
  margin-bottom: 18px;
}

.legal-page-section h2,
.legal-page-questions h2 {
  margin: 0;
  color: var(--legal-ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.legal-page-section p,
.legal-page-section .step-list,
.legal-page-questions p:not(.eyebrow) {
  margin: 0;
  color: var(--legal-muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.72;
}

.legal-page-section p + p {
  margin-top: 16px;
}

.legal-page-section .step-list {
  padding-left: 22px;
}

.legal-page-shell .text-link,
.legal-page-shell .text-button {
  color: var(--legal-gold);
}

.legal-page-questions {
  width: min(calc(100% - 48px), 860px);
  margin: 0 auto;
  padding: 0 0 clamp(64px, 9vw, 108px);
}

.legal-page-questions p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 18px;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
}

.legal-page-shell > .landing-footer {
  border-top: 1px solid var(--legal-border);
}

.legal-page-updated {
  margin: 32px 0 0;
  color: var(--legal-muted);
}

.text-button {
  margin-top: 14px;
  padding: 0;
  border: 0;
  color: var(--gold);
  background: transparent;
  font: inherit;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.analytics-consent {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  left: max(18px, env(safe-area-inset-left));
  z-index: 1000;
  width: min(100% - 36px, 560px);
  margin-left: auto;
  padding: 14px 16px;
  border: 1px solid rgb(232 183 92 / 38%);
  border-radius: 14px;
  color: #f8f9ff;
  background: rgb(1 29 53 / 97%);
  box-shadow: 0 24px 70px rgb(0 0 0 / 45%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.analytics-consent p {
  max-width: 48ch;
  margin: 0;
  color: rgb(248 249 255 / 76%);
  font-size: 13px;
  line-height: 1.5;
}

.analytics-consent a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.analytics-consent-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.analytics-consent-actions button {
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgb(248 249 255 / 26%);
  border-radius: 999px;
  color: #f8f9ff;
  background: rgb(248 249 255 / 8%);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

@media (max-width: 680px) {
  .analytics-consent {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .analytics-consent-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 32px);
  }

  .site-nav {
    gap: 12px;
    font-size: 12px;
  }

  .site-nav .x-link span {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .language-nav a {
    min-width: 27px;
  }

  .content-page-header {
    width: calc(100% - 28px);
  }

  .content-page-hero {
    width: calc(100% - 24px);
    min-height: 280px;
    border-radius: 10px;
  }

  .content-page-hero-inner {
    width: min(100% - 36px, 1080px);
    min-height: 280px;
    padding: 36px 0;
  }

  .content-page-hero-copy h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .landing-hero-layout {
    width: min(100% - 32px, 1180px);
    gap: 0;
    padding: var(--landing-mobile-logo-bottom) 0 0;
  }

  .landing-hero h1 {
    font-size: clamp(32px, 9vw, 36px);
    line-height: 1.02;
    white-space: nowrap;
  }

  .landing-hero h1 em {
    display: block;
  }

  .landing-lede {
    margin-top: 20px;
    font-size: 17px;
  }

  .landing-download-actions {
    width: 100%;
    margin-top: 28px;
    flex-direction: column;
    align-items: center;
  }

  .feature-story-step h3 {
    font-size: clamp(32px, 9.5vw, 42px);
  }

  .feature-story-step > p:last-child {
    margin-top: 20px;
    font-size: 16px;
  }

  .feature-story-mobile-visual {
    height: min(124vw, 500px);
    border-radius: 24px;
  }

  .landing-footer {
    padding: 34px 20px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
  }

  .footer-identity,
  .footer-navigation,
  .footer-secondary,
  .landing-footer > p,
  .footer-brand {
    align-items: center;
    justify-self: center;
  }

  .footer-primary-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-navigation {
    padding-top: 0;
  }

  .footer-secondary {
    width: 100%;
    align-items: center;
    padding-top: 0;
    text-align: center;
  }

  .landing-footer .footer-contact-links {
    align-items: center;
  }

  .footer-privacy-link,
  .footer-follow {
    justify-content: center;
  }

  .footer-tagline,
  .landing-footer > p {
    text-align: center;
  }

  .page-header {
    width: min(100% - 32px, 1100px);
    left: auto;
    right: auto;
  }

  .page-hero {
    width: min(100% - 32px, 900px);
    padding-top: 58px;
  }

  .support-grid {
    width: min(100% - 32px, 1100px);
    grid-template-columns: 1fr;
  }

  .legal-page-hero {
    width: 100%;
    padding: 64px 24px;
  }

  .legal-page-content,
  .legal-page-questions {
    width: min(calc(100% - 40px), 860px);
  }
}
