:root {
  color-scheme: dark light;
  --canvas: #06101c;
  --canvas-deep: #030914;
  --canvas-alt: #06101c;
  --paper: #0c1927;
  --paper-strong: #122235;
  --text: #f6f4ee;
  --muted: #b8c4d1;
  --quiet: #91a2b5;
  --gold: #e6b95f;
  --gold-bright: #f4d590;
  --blue: #a7d1f2;
  --green: #7fd3a0;
  --action: #f0ce84;
  --action-text: #101826;
  --line: rgba(197, 216, 237, 0.16);
  --line-strong: rgba(211, 226, 242, 0.3);
  --control-border: #61758a;
  --shadow-soft: 0 1.5rem 4.5rem rgba(0, 0, 0, 0.28);
  --shadow-image: 0 2.4rem 5rem rgba(0, 0, 0, 0.36);
  --content: 76rem;
  --reading: 48rem;
  --radius-large: 2rem;
  --radius-medium: 1.15rem;
  --radius-small: 0.7rem;
}

@media (prefers-color-scheme: light) {
  :root {
    --canvas: #f4f1e9;
    --canvas-deep: #faf8f3;
    --canvas-alt: #f4f1e9;
    --paper: #fffdf8;
    --paper-strong: #e5edf4;
    --text: #102033;
    --muted: #45576b;
    --quiet: #58697c;
    --gold: #8a5c08;
    --gold-bright: #674200;
    --blue: #145c91;
    --green: #1c7041;
    --action: #173f63;
    --action-text: #ffffff;
    --line: rgba(29, 67, 103, 0.16);
    --line-strong: rgba(29, 67, 103, 0.3);
    --control-border: #69798a;
    --shadow-soft: 0 1.5rem 4rem rgba(38, 57, 77, 0.13);
    --shadow-image: 0 2rem 4.5rem rgba(38, 57, 77, 0.2);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(180deg, var(--canvas-deep) 0, var(--canvas) 34rem),
    var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

figure {
  margin: 0;
}

a {
  color: var(--blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--gold-bright);
}

:focus-visible {
  outline: 0.2rem solid var(--gold);
  outline-offset: 0.22rem;
  border-radius: 0.2rem;
}

::selection {
  color: #081322;
  background: #f4d590;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.72rem 1rem;
  color: #081322;
  background: #f4d590;
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-soft);
  transform: translateY(-160%);
}

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

.header-inner,
.footer-inner,
.section,
.legal-shell,
.notice-inner {
  width: min(calc(100% - 2.5rem), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--canvas-deep) 94%, transparent);
  backdrop-filter: blur(0.75rem);
  -webkit-backdrop-filter: blur(0.75rem);
}

.header-inner {
  display: flex;
  min-height: 4.9rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.72rem;
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 760;
  letter-spacing: 0.005em;
  text-decoration: none;
}

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

.brand img {
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.65rem;
  box-shadow: 0 0.45rem 1.4rem rgba(0, 0, 0, 0.2);
}

.primary-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.58rem 0.78rem;
  color: var(--muted);
  border-radius: 0.55rem;
  font-size: 0.91rem;
  font-weight: 680;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease, background-color 160ms ease;
}

.primary-nav a:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--paper) 78%, transparent);
}

.primary-nav a[aria-current="page"] {
  color: var(--text);
}

.primary-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0.78rem;
  bottom: 0.3rem;
  left: 0.78rem;
  height: 0.12rem;
  content: "";
  background: var(--gold);
  border-radius: 999px;
}

.primary-nav .language-link {
  margin-left: 0.45rem;
  color: var(--gold-bright);
  border: 1px solid var(--control-border);
}

main {
  display: block;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-weight: 740;
  letter-spacing: -0.033em;
  line-height: 1.1;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.45rem;
  font-size: clamp(2.8rem, 6.4vw, 5.25rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.05rem, 4.3vw, 3.45rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.12rem, 1.9vw, 1.38rem);
  letter-spacing: -0.02em;
}

p,
li,
address {
  overflow-wrap: anywhere;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  margin: 0 0 1.25rem;
  color: var(--gold-bright);
  font-size: 0.77rem;
  font-weight: 790;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.25rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.section {
  padding-block: clamp(4.7rem, 9vw, 8.4rem);
}

.hero-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.home-hero {
  display: grid;
  min-height: clamp(42rem, 84vh, 58rem);
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
  gap: clamp(2.5rem, 6vw, 6rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 43rem;
  animation: copy-reveal 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-lede {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.74rem 1.15rem;
  color: var(--action-text);
  border: 1px solid var(--action);
  border-radius: 0.72rem;
  background: var(--action);
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0.65rem 1.8rem rgba(0, 0, 0, 0.12);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button-link:hover {
  color: var(--action-text);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-0.1rem);
}

.button-link.secondary {
  color: var(--text);
  border-color: var(--control-border);
  background: transparent;
  box-shadow: none;
}

.button-link.secondary:hover {
  color: var(--text);
  border-color: var(--gold);
  background: color-mix(in srgb, var(--paper) 86%, transparent);
}

.hero-visual {
  position: relative;
  width: min(100%, 38rem);
  justify-self: end;
  animation: image-reveal 800ms 90ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-frame {
  position: relative;
  padding: 0.58rem;
  border: 1px solid var(--line-strong);
  border-radius: 17rem 17rem 1.6rem 1.6rem;
  background: var(--paper);
  box-shadow: var(--shadow-image);
}

.hero-frame::after {
  position: absolute;
  inset: 1.2rem -1.1rem -1.1rem 1.2rem;
  z-index: -1;
  content: "";
  border: 1px solid color-mix(in srgb, var(--gold) 55%, transparent);
  border-radius: inherit;
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: 16.5rem 16.5rem 1.15rem 1.15rem;
}

.features-section {
  background: var(--canvas-alt);
  border-bottom: 1px solid var(--line);
}

.feature-story {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(17rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 7.5rem);
}

.feature-intro {
  position: sticky;
  top: 7rem;
}

.feature-intro > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.lumi-copy > p:not(.eyebrow),
.plus-intro > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.compass-figure {
  position: relative;
  width: min(19rem, 78%);
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.compass-figure::after {
  position: absolute;
  right: -1.2rem;
  bottom: -1.2rem;
  width: 62%;
  height: 62%;
  z-index: -1;
  content: "";
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.compass-figure img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.feature-ledger {
  border-top: 1px solid var(--line-strong);
}

.feature-item {
  display: grid;
  min-width: 0;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 1.1rem;
  padding-block: 1.55rem;
  border-bottom: 1px solid var(--line);
}

.feature-item h3,
.feature-item p {
  margin-top: 0;
}

.feature-item p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
}

.feature-number {
  display: inline-block;
  padding-top: 0.12rem;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.lumi-section {
  border-bottom: 1px solid var(--line);
}

.lumi-editorial {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(16rem, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 7vw, 6.5rem);
  padding: clamp(1.5rem, 5vw, 4.6rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.lumi-figure {
  position: relative;
  display: grid;
  min-height: 24rem;
  place-items: end center;
  isolation: isolate;
}

.lumi-figure::before {
  position: absolute;
  z-index: -1;
  bottom: 2%;
  width: min(23rem, 92%);
  aspect-ratio: 1;
  content: "";
  border: 1px solid color-mix(in srgb, var(--gold) 45%, var(--line));
  border-radius: 50% 50% 0.8rem 0.8rem;
  background: var(--paper-strong);
}

.lumi-figure img {
  width: min(24rem, 100%);
  object-fit: contain;
  filter: drop-shadow(0 1.7rem 1.7rem rgba(0, 0, 0, 0.24));
}

.lumi-copy {
  max-width: 36rem;
}

.quote-line {
  margin: 1.65rem 0 0;
  padding: 0.15rem 0 0.15rem 1.25rem;
  color: var(--gold-bright) !important;
  border-left: 2px solid var(--gold);
  font-size: 1.08rem;
  font-style: italic;
}

.plus-section {
  background: var(--canvas-alt);
  border-bottom: 1px solid var(--line);
}

.plus-editorial {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  padding-block: clamp(1.5rem, 3vw, 2.8rem);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--line-strong);
}

.plus-intro h2 {
  max-width: 10ch;
}

.check-list,
.plain-list,
.legal-content ul,
.legal-content ol {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  position: relative;
  min-width: 0;
  padding: 1rem 1rem 1rem 1.6rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.check-list li:nth-child(odd) {
  padding-right: 1.6rem;
  border-right: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 1.04rem;
  left: 0;
  color: var(--gold-bright);
  content: "—";
  font-weight: 800;
}

.subscription-note {
  margin: 1.55rem 0 0 !important;
  color: var(--quiet) !important;
  font-size: 0.92rem;
}

.privacy-section {
  border-bottom: 1px solid var(--line);
}

.privacy-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(18rem, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2.5rem, 8vw, 7rem);
}

.privacy-figure {
  position: relative;
  padding: 0.55rem;
  border: 1px solid var(--line-strong);
  border-radius: 1.35rem;
  background: var(--paper);
  box-shadow: var(--shadow-image);
}

.privacy-figure::before {
  position: absolute;
  z-index: -1;
  inset: 1.2rem 1.2rem -1.2rem -1.2rem;
  content: "";
  border: 1px solid color-mix(in srgb, var(--gold) 48%, transparent);
  border-radius: inherit;
}

.privacy-figure img {
  width: 100%;
  border-radius: 0.95rem;
}

.privacy-copy .section-heading {
  max-width: 43rem;
  margin-bottom: 2rem;
}

.trust-list {
  border-top: 1px solid var(--line-strong);
}

.trust-item {
  display: grid;
  min-width: 0;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.trust-item p {
  margin: 0;
  color: var(--muted);
}

.icon-tile {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 800;
}

.section-link {
  margin: 2rem 0 0;
}

.closing-section {
  padding-block: clamp(3.6rem, 7vw, 5.7rem);
}

.faith-note {
  display: grid;
  max-width: 61rem;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  gap: 1rem;
  margin-inline: auto;
  padding: 1.7rem 0;
  color: var(--muted);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.faith-note h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}

.faith-note p {
  margin: 0;
}

.cross-mark {
  color: var(--gold-bright);
  font-size: 1.55rem;
  line-height: 1;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--canvas-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.95fr);
  gap: clamp(2rem, 7vw, 6rem);
  padding-block: 3.4rem;
}

.footer-brand p,
.footer-meta {
  max-width: 30rem;
  margin: 0.75rem 0 0;
  color: var(--quiet);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-links h2 {
  margin-bottom: 0.78rem;
  color: var(--text);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.91rem;
}

.footer-bottom {
  padding-block: 1.15rem 1.45rem;
  color: var(--quiet);
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
}

.footer-bottom .footer-inner {
  display: block;
  padding: 0;
}

.legal-hero {
  position: relative;
  padding-block: clamp(4.3rem, 9vw, 7.3rem) clamp(2.8rem, 6vw, 4.4rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--canvas-alt);
}

.legal-hero::after {
  position: absolute;
  top: 0;
  right: max(1.25rem, calc((100% - var(--content)) / 2));
  width: min(18rem, 34vw);
  height: 100%;
  content: "";
  border-right: 1px solid color-mix(in srgb, var(--gold) 42%, transparent);
  border-left: 1px solid var(--line);
  opacity: 0.7;
  transform: skewX(-13deg);
  pointer-events: none;
}

.legal-hero .legal-shell {
  position: relative;
  z-index: 1;
  max-width: var(--reading);
}

.legal-hero h1 {
  max-width: 18ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.55rem, 5.7vw, 4.45rem);
}

.legal-hero p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.updated {
  display: inline-block;
  margin-top: 1.35rem;
  color: var(--gold-bright);
  font-size: 0.87rem;
  font-weight: 720;
}

.legal-shell {
  max-width: var(--reading);
}

.legal-content {
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.legal-content section + section {
  margin-top: 3.2rem;
  padding-top: 2.9rem;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  max-width: 28ch;
  font-size: clamp(1.55rem, 3vw, 2.08rem);
  line-height: 1.2;
}

.legal-content h3 {
  margin-top: 1.9rem;
  font-size: 1.18rem;
  line-height: 1.3;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content p {
  line-height: 1.78;
}

.legal-content li + li {
  margin-top: 0.45rem;
}

.legal-content strong {
  color: var(--text);
}

.legal-content address,
.contact-block {
  margin-block: 1.4rem;
  padding-left: 1.25rem;
  color: var(--muted);
  border-left: 2px solid var(--gold);
  font-style: normal;
}

.callout {
  margin-block: 2.2rem;
  padding: 1.3rem 1.45rem;
  border: 1px solid var(--line);
  border-left: 0.25rem solid var(--gold);
  border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
  background: var(--paper);
}

.callout p:first-child {
  margin-top: 0;
}

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

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.1rem;
}

.support-card {
  min-width: 0;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--paper);
}

.support-card h3 {
  max-width: none;
  font-size: 1.3rem;
}

.support-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.support-card-wide {
  grid-column: 1 / -1;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 2rem 0;
}

.contact-item {
  min-width: 0;
  padding: 1rem;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--line);
}

.contact-item span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--quiet);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item a {
  overflow-wrap: anywhere;
}

.emergency {
  margin-top: 2rem;
  padding: 1.2rem 1.4rem;
  color: var(--muted);
  border: 1px solid color-mix(in srgb, var(--gold) 48%, var(--line));
  border-radius: var(--radius-medium);
  background: color-mix(in srgb, var(--gold) 7%, var(--paper));
}

.age-summary {
  display: grid;
  grid-template-columns: minmax(9rem, 0.4fr) minmax(0, 1.6fr);
  gap: 1.2rem;
  align-items: stretch;
  margin-block: 2rem 3.2rem;
}

.age-badge {
  display: grid;
  min-height: 10rem;
  place-items: center;
  color: var(--action-text);
  border: 1px solid var(--action);
  border-radius: var(--radius-large);
  background: var(--action);
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  font-weight: 840;
  line-height: 1;
  box-shadow: var(--shadow-soft);
}

.age-fact {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--paper);
}

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

.not-found {
  display: grid;
  min-height: 67vh;
  place-items: center;
  padding-block: 4rem;
}

.not-found-inner {
  width: 100%;
  min-width: 0;
  max-width: 43rem;
  text-align: center;
}

.not-found-code {
  display: block;
  color: var(--gold-bright);
  font-size: clamp(4.5rem, 18vw, 9rem);
  font-weight: 820;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.not-found h1 {
  max-width: none;
  margin-top: 1.8rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.not-found p {
  color: var(--muted);
}

.not-found-divider {
  margin: 2.5rem 0;
  border: 0;
  border-top: 1px solid var(--line);
}

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

@keyframes copy-reveal {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-reveal {
  from {
    opacity: 0;
    transform: translateY(1rem) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 64rem) {
  .site-header {
    position: static;
    top: auto;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
    padding-block: 0.7rem;
  }

  .primary-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .primary-nav .language-link {
    margin-left: auto;
  }

  html {
    scroll-padding-top: 1rem;
  }
}

@media (max-width: 58rem) {
  .home-hero,
  .feature-story,
  .lumi-editorial,
  .plus-editorial,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 0;
    gap: 3.2rem;
    padding-top: 4.2rem;
  }

  .hero-copy {
    max-width: 47rem;
  }

  .hero-visual {
    width: min(100%, 35rem);
    justify-self: center;
  }

  .feature-intro {
    position: static;
  }

  .feature-intro h2 {
    max-width: 17ch;
  }

  .compass-figure {
    width: min(18rem, 62%);
  }

  .lumi-editorial {
    gap: 1rem;
  }

  .lumi-copy {
    max-width: 42rem;
  }

  .privacy-copy {
    order: 1;
  }

  .privacy-figure {
    width: min(100%, 34rem);
    order: 2;
    justify-self: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 46rem) {
  .header-inner,
  .footer-inner,
  .section,
  .legal-shell,
  .notice-inner {
    width: min(calc(100% - 1.35rem), var(--content));
  }

  .primary-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.25rem;
  }

  .primary-nav a {
    justify-content: center;
    padding-inline: 0.35rem;
    font-size: 0.8rem;
    text-align: center;
    white-space: normal;
  }

  .primary-nav .language-link {
    margin-left: 0;
  }

  .primary-nav a[aria-current="page"]::after {
    right: 28%;
    left: 28%;
  }

  .hero-frame {
    padding: 0.38rem;
    border-radius: 13rem 13rem 1.25rem 1.25rem;
  }

  .hero-frame img {
    border-radius: 12.7rem 12.7rem 0.92rem 0.92rem;
  }

  .feature-item {
    grid-template-columns: 2.6rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .lumi-editorial {
    padding: 1rem 1rem 1.8rem;
  }

  .lumi-figure {
    min-height: 19rem;
  }

  .check-list,
  .support-grid,
  .footer-links,
  .contact-panel,
  .age-summary {
    grid-template-columns: 1fr;
  }

  .check-list li:nth-child(odd) {
    padding-right: 1rem;
    border-right: 0;
  }

  .support-card-wide {
    grid-column: auto;
  }

  .age-badge {
    min-height: 7.6rem;
  }

  .legal-hero::after {
    right: -7rem;
    width: 14rem;
  }
}

@media (max-width: 22rem) {
  h1 {
    font-size: 2.42rem;
  }

  .brand img {
    width: 2.1rem;
    height: 2.1rem;
  }

  .primary-nav a {
    font-size: 0.76rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-link {
    width: 100%;
  }
}

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

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

@media (forced-colors: active) {
  .hero-frame,
  .compass-figure img,
  .lumi-editorial,
  .privacy-figure,
  .support-card,
  .callout,
  .age-fact,
  .emergency {
    border: 1px solid CanvasText;
  }
}

@media print {
  :root {
    color-scheme: light;
  }

  body {
    color: #111;
    background: #fff;
  }

  .site-header,
  .site-footer,
  .hero-visual,
  .hero-actions,
  .compass-figure,
  .lumi-figure,
  .privacy-figure {
    display: none;
  }

  .legal-content p,
  .legal-content li,
  .legal-hero p {
    color: #222;
  }

  a {
    color: #111;
  }
}
