: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;
  }
}

/* Lumefide App Store landing experience — August 2026 */

:root {
  --landing-navy: #06101f;
  --landing-navy-soft: #0c182c;
  --landing-blue: #75c7ff;
  --landing-blue-strong: #3ea9f4;
  --landing-gold: #f0c66d;
  --landing-gold-deep: #b9822f;
  --landing-violet: #9b8cff;
  --landing-green: #69d59b;
  --landing-cream: #f7f0df;
  --landing-cream-soft: #fffaf0;
  --landing-ink: #142033;
  --landing-content: 78rem;
}

[hidden] {
  display: none !important;
}

body {
  padding-bottom: env(safe-area-inset-bottom);
}

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

.site-header {
  position: sticky !important;
  z-index: 80;
  top: 0 !important;
  padding-top: env(safe-area-inset-top);
  color: #f9f6ee;
  border-bottom: 1px solid rgba(211, 228, 247, 0.13);
  background: rgba(5, 13, 25, 0.88);
  box-shadow: 0 0.65rem 2.25rem rgba(0, 0, 0, 0.16);
  backdrop-filter: saturate(145%) blur(1rem);
  -webkit-backdrop-filter: saturate(145%) blur(1rem);
}

.header-inner {
  position: relative;
  display: flex !important;
  min-height: 4.6rem;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-inline: max(0rem, env(safe-area-inset-left)) max(0rem, env(safe-area-inset-right));
}

.site-header .brand {
  min-height: 2.75rem;
  color: #f9f6ee;
  font-size: 1.02rem;
}

.site-header .brand:hover {
  color: #fff;
}

.site-header .brand img {
  width: 2.45rem;
  height: 2.45rem;
  border-color: rgba(240, 198, 109, 0.4);
  box-shadow: 0 0.4rem 1.35rem rgba(240, 198, 109, 0.17);
}

.header-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}

.site-menu {
  position: relative;
  display: none;
}

.site-menu > summary {
  list-style: none;
}

.site-menu > summary::-webkit-details-marker {
  display: none;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
  place-content: center;
  gap: 0.24rem;
  border: 1px solid rgba(220, 233, 246, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.menu-toggle span {
  display: block;
  width: 1.05rem;
  height: 0.1rem;
  border-radius: 1rem;
  background: #fff;
}

.site-menu > .primary-nav {
  display: none !important;
}

.desktop-nav {
  display: flex !important;
}

.site-header .primary-nav a {
  min-height: 2.75rem;
  color: #c7d2df;
}

.site-header .primary-nav a:hover,
.site-header .primary-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.site-header .primary-nav a[aria-current="page"]::after {
  background: var(--landing-gold);
}

.header-cta {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.05rem;
  color: #0c1624;
  border: 1px solid rgba(255, 235, 185, 0.65);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe1a2, var(--landing-gold));
  box-shadow: 0 0.65rem 1.8rem rgba(220, 163, 64, 0.2);
  font-size: 0.88rem;
  font-weight: 790;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.header-cta:hover {
  color: #07111f;
  box-shadow: 0 0.85rem 2.2rem rgba(220, 163, 64, 0.3);
  transform: translateY(-1px);
}

.home-main {
  overflow: clip;
  color: #f7f4ec;
  background: var(--landing-navy);
}

.landing-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 17%, rgba(64, 168, 244, 0.2), transparent 31rem),
    radial-gradient(circle at 86% 23%, rgba(153, 123, 255, 0.17), transparent 28rem),
    linear-gradient(145deg, #071426 0%, #06101f 48%, #090d1c 100%);
}

.landing-hero::before,
.landing-hero::after {
  position: absolute;
  z-index: -1;
  width: 26rem;
  height: 26rem;
  content: "";
  filter: blur(5rem);
  opacity: 0.2;
  border-radius: 50%;
  pointer-events: none;
}

.landing-hero::before {
  top: 12rem;
  left: -15rem;
  background: var(--landing-blue-strong);
}

.landing-hero::after {
  right: -12rem;
  bottom: 4rem;
  background: var(--landing-gold-deep);
}

.home-hero {
  display: grid !important;
  min-height: min(51rem, calc(100svh - 4.6rem));
  grid-template-columns: minmax(0, 1.08fr) minmax(19rem, 0.72fr) !important;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem) !important;
  padding-block: clamp(3.3rem, 7vw, 6.75rem) clamp(2.8rem, 6vw, 5.5rem) !important;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 45rem;
}

.hero-app-icon {
  position: relative;
  width: 5.8rem;
  margin-bottom: 1.35rem;
}

.hero-app-icon::before {
  position: absolute;
  inset: -22%;
  z-index: -1;
  content: "";
  border-radius: 36%;
  background: radial-gradient(circle, rgba(245, 197, 103, 0.45), rgba(94, 184, 255, 0.19) 48%, transparent 72%);
  filter: blur(0.7rem);
}

.hero-app-icon img {
  width: 100%;
  border: 1px solid rgba(255, 231, 178, 0.38);
  border-radius: 1.6rem;
  box-shadow: 0 1rem 2.8rem rgba(0, 0, 0, 0.35);
}

.status-line {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.72rem;
  color: #e8eef5;
  border: 1px solid rgba(205, 224, 243, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.025em;
}

.status-line span {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--landing-green);
  box-shadow: 0 0 0 0.25rem rgba(105, 213, 155, 0.12);
}

.home-main h1,
.home-main h2,
.home-main h3 {
  text-wrap: balance;
}

.home-hero h1 {
  max-width: 13ch;
  margin: 0;
  color: #fbf8f1;
  font-size: clamp(2.65rem, 6.7vw, 5.25rem);
  font-weight: 790;
  letter-spacing: -0.058em;
  line-height: 0.99;
}

.home-hero h1 span {
  color: var(--landing-gold);
  background: linear-gradient(115deg, #f8dd9a, #e8ae49 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  max-width: 40rem;
  margin: 1.55rem 0 0;
  color: #c6d0dc;
  font-size: clamp(1.04rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  margin-top: 1.9rem;
}

.button-link.app-store-button {
  min-height: 3.55rem;
  min-width: min(100%, 19rem);
  gap: 0.75rem;
  padding: 0.9rem 1.35rem;
  color: #07111f;
  border-color: rgba(255, 235, 188, 0.72);
  background: linear-gradient(135deg, #ffe3a7, #efbd5d);
  box-shadow: 0 1rem 2.75rem rgba(218, 157, 51, 0.24);
  font-size: 1rem;
  font-weight: 800;
}

.button-link.app-store-button:hover {
  color: #07111f;
  background: linear-gradient(135deg, #ffedc4, #f3c96f);
  transform: translateY(-2px);
}

.download-note {
  margin: 0.72rem 0 0;
  color: #98a8b9;
  font-size: 0.82rem;
}

.in-app-notice,
.browser-help {
  max-width: 38rem;
  margin-top: 1.15rem;
  color: #c7d1dd;
  border: 1px solid rgba(117, 199, 255, 0.25);
  border-radius: 1rem;
  background: rgba(15, 32, 52, 0.78);
  font-size: 0.86rem;
  line-height: 1.55;
}

.in-app-notice {
  padding: 0.9rem 1rem;
}

.in-app-notice p,
.browser-help p {
  margin: 0;
}

.in-app-notice p + p {
  margin-top: 0.35rem;
}

.browser-help summary {
  min-height: 2.75rem;
  cursor: pointer;
  padding: 0.72rem 2.25rem 0.72rem 1rem;
  color: #d8e4ef;
  font-weight: 720;
}

.browser-help p {
  padding: 0 1rem 0.9rem;
}

.more-dots {
  display: inline-flex;
  min-width: 2.1rem;
  justify-content: center;
  padding: 0 0.28rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-device {
  position: relative;
  width: min(100%, 28rem);
  justify-self: end;
}

.hero-device::before {
  position: absolute;
  inset: 15% -18% 8%;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 179, 255, 0.28), rgba(150, 112, 255, 0.13) 44%, transparent 72%);
  filter: blur(1.8rem);
}

.phone-shell,
.app-screen-card {
  overflow: hidden;
  padding: 0.48rem;
  border: 1px solid rgba(184, 207, 232, 0.24);
  border-radius: 3.15rem;
  background: linear-gradient(145deg, rgba(204, 222, 239, 0.25), rgba(40, 54, 75, 0.5));
  box-shadow: 0 2rem 5.5rem rgba(0, 0, 0, 0.4), inset 0 1px rgba(255, 255, 255, 0.18);
}

.phone-shell img,
.app-screen-card img {
  width: 100%;
  border-radius: 2.75rem;
}

.phone-shell-hero {
  transform: rotate(1.2deg);
}

.trust-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-block: 1.25rem 1.5rem;
  border-top: 1px solid rgba(210, 227, 244, 0.12);
}

.trust-ribbon > span {
  display: grid;
  gap: 0.1rem;
  padding: 0.35rem clamp(0.7rem, 3vw, 2rem);
  border-right: 1px solid rgba(210, 227, 244, 0.13);
  text-align: center;
}

.trust-ribbon > span:last-child {
  border-right: 0;
}

.trust-ribbon strong {
  color: #eef4f9;
  font-size: 0.9rem;
}

.trust-ribbon small {
  color: #8fa1b3;
  font-size: 0.72rem;
}

.feature-intro-block {
  max-width: 54rem;
  padding-block: clamp(4.8rem, 10vw, 8.5rem);
  text-align: center;
}

.feature-intro-block h2 {
  margin: 0 auto;
  color: #f8f5ee;
  font-size: clamp(2.2rem, 5.4vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.feature-intro-block > p:last-child {
  max-width: 38rem;
  margin: 1.2rem auto 0;
  color: #aebdca;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.showcase {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.7rem, 9vw, 8rem);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 29rem);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.showcase-reverse .showcase-copy {
  order: 2;
}

.showcase-reverse .app-screen-card {
  order: 1;
  justify-self: start;
}

.showcase-cream {
  color: var(--landing-ink);
  background:
    radial-gradient(circle at 8% 20%, rgba(238, 183, 78, 0.16), transparent 27rem),
    linear-gradient(160deg, var(--landing-cream-soft), var(--landing-cream));
}

.showcase-night {
  color: #f6f3ec;
  border-block: 1px solid rgba(207, 224, 242, 0.09);
  background:
    radial-gradient(circle at 88% 42%, rgba(128, 101, 237, 0.14), transparent 27rem),
    linear-gradient(145deg, #081426, #09101f);
}

.showcase-copy {
  max-width: 39rem;
}

.feature-kicker {
  margin: 0 0 0.8rem;
  color: #155a87;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-night .feature-kicker {
  color: var(--landing-blue);
}

.showcase-copy h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  letter-spacing: -0.052em;
  line-height: 1.01;
}

.showcase-copy > p:not(.feature-kicker) {
  max-width: 35rem;
  margin: 1.1rem 0 0;
  color: #526073;
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  line-height: 1.58;
}

.showcase-night .showcase-copy > p:not(.feature-kicker) {
  color: #b4c1ce;
}

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

.benefit-grid article {
  display: grid;
  min-width: 0;
  grid-template-columns: 2.35rem minmax(0, 1fr);
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid rgba(29, 63, 96, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.52);
}

.showcase-night .benefit-grid article {
  border-color: rgba(190, 213, 237, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.benefit-grid article > span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: #0d5d92;
  border-radius: 0.78rem;
  background: rgba(71, 168, 232, 0.14);
  font-weight: 850;
}

.showcase-night .benefit-grid article > span {
  color: var(--landing-gold);
  background: rgba(240, 198, 109, 0.1);
}

.benefit-grid h3 {
  margin: 0;
  color: inherit;
  font-size: 0.95rem;
}

.benefit-grid p {
  margin: 0.25rem 0 0;
  color: #637083;
  font-size: 0.82rem;
  line-height: 1.45;
}

.showcase-night .benefit-grid p {
  color: #9eadbd;
}

.app-screen-card {
  width: min(100%, 26rem);
  justify-self: end;
  background: linear-gradient(145deg, #526179, #151e2e 42%, #080f1d);
}

.screen-crop {
  width: min(100%, 31rem);
  border-radius: 2.35rem;
}

.screen-crop img {
  border-radius: 1.95rem;
}

.lumi-bridge {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.3rem, 4vw, 3rem);
  padding-block: clamp(3.2rem, 7vw, 5.5rem);
}

.lumi-bridge figure {
  width: 10rem;
  filter: drop-shadow(0 1.2rem 1.6rem rgba(0, 0, 0, 0.3));
}

.lumi-bridge h2 {
  margin: 0;
  color: #f7f4ed;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  letter-spacing: -0.04em;
}

.lumi-bridge div > p:last-child {
  max-width: 43rem;
  margin: 0.85rem 0 0;
  color: #aebbc8;
}

.home-main .plus-section {
  padding-block: clamp(4.8rem, 9vw, 7.5rem);
  background:
    radial-gradient(circle at 18% 25%, rgba(239, 188, 87, 0.11), transparent 27rem),
    #07111f;
}

.home-main .plus-editorial {
  gap: clamp(2rem, 7vw, 6rem);
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid rgba(239, 202, 128, 0.18);
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(28, 35, 50, 0.96), rgba(13, 24, 41, 0.95));
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.24);
}

.home-main .plus-intro h2 {
  color: #f7f3e8;
}

.home-main .eyebrow,
.home-main .check-list li::before,
.home-main .icon-tile {
  color: #f5cf77;
}

.home-main .plus-intro p,
.home-main .subscription-note {
  color: #aebbc8;
}

.home-main .check-list li {
  color: #e5eaf0;
}

.home-main .privacy-section {
  padding-block: clamp(4.8rem, 9vw, 8rem);
  background: linear-gradient(180deg, #07111f, #091323);
}

.home-main .privacy-copy h2 {
  color: #f8f5ed;
}

.home-main .privacy-copy p,
.home-main .trust-item p {
  color: #adbac8;
}

.home-main .trust-item h3 {
  color: #eff3f7;
}

.home-main .privacy-figure {
  border-radius: 2rem;
  border-color: rgba(239, 202, 128, 0.25);
  background: #111b2b;
}

.home-main .privacy-section .button-link.secondary {
  color: #f5f7fa;
  border-color: rgba(222, 233, 244, 0.58);
  background: rgba(255, 255, 255, 0.035);
}

.home-main .privacy-section .button-link.secondary:hover {
  color: #ffffff;
  border-color: #f5cf77;
  background: rgba(255, 255, 255, 0.09);
}

.final-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-block: 0 clamp(4rem, 8vw, 7rem);
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid rgba(115, 197, 255, 0.2);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 12% 22%, rgba(98, 184, 247, 0.22), transparent 19rem),
    linear-gradient(130deg, #0e2037, #101528);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.27);
}

.final-download h2 {
  margin: 0;
  color: #f8f5ee;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.final-download div > p:last-child {
  margin: 0.7rem 0 0;
  color: #aebbc8;
}

.final-download .app-store-button {
  flex: 0 0 auto;
}

.site-footer {
  color: #eff3f7;
  background: #040b14;
}

.site-footer .brand,
.site-footer h2 {
  color: #f7f3ea;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: #9eacba;
}

@media (max-width: 64rem) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
  }

  .header-inner {
    min-height: 4.6rem;
    flex-direction: row !important;
    align-items: center;
  }

  html {
    scroll-padding-top: calc(5.1rem + env(safe-area-inset-top));
  }
}

@media (max-width: 52rem) {
  .site-menu {
    display: block;
  }

  .desktop-nav {
    display: none !important;
  }

  .menu-toggle {
    display: grid;
  }

  .site-menu:not([open]) > .primary-nav {
    display: none !important;
  }

  .site-menu[open] > .primary-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    display: grid !important;
    width: min(21rem, calc(100vw - 1rem));
    grid-template-columns: 1fr !important;
    gap: 0.2rem;
    padding: 0.55rem;
    border: 1px solid rgba(208, 225, 242, 0.18);
    border-radius: 1.15rem;
    background: rgba(6, 15, 28, 0.98);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.42);
  }

  .site-menu[open] > .primary-nav a {
    min-height: 2.75rem;
    justify-content: flex-start;
    padding-inline: 0.85rem;
    font-size: 0.92rem;
    text-align: left;
    white-space: nowrap;
  }

  .site-menu[open] > .primary-nav .language-link {
    margin-left: 0;
    border-top: 1px solid rgba(208, 225, 242, 0.12);
  }

  .site-menu[open] > .primary-nav a[aria-current="page"]::after {
    right: 0.8rem;
    left: auto;
    width: 0.45rem;
    height: 0.45rem;
    bottom: calc(50% - 0.225rem);
    border-radius: 50%;
  }

  .home-hero {
    min-height: 0;
    grid-template-columns: 1fr !important;
    gap: 3.4rem !important;
    padding-top: clamp(2.6rem, 9vw, 4.2rem) !important;
  }

  .hero-copy {
    max-width: 42rem;
    text-align: center;
  }

  .hero-app-icon,
  .status-line,
  .hero-actions,
  .in-app-notice,
  .browser-help {
    margin-inline: auto;
  }

  .hero-app-icon {
    width: 5.2rem;
  }

  .home-hero h1 {
    max-width: 14ch;
    margin-inline: auto;
  }

  .hero-lede {
    margin-inline: auto;
  }

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

  .hero-device {
    width: min(78vw, 24rem);
    justify-self: center;
  }

  .trust-ribbon {
    width: min(calc(100% - 1rem), var(--landing-content));
  }

  .showcase-grid,
  .showcase-reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .showcase-copy,
  .showcase-reverse .showcase-copy {
    max-width: 42rem;
    order: 1;
  }

  .app-screen-card,
  .showcase-reverse .app-screen-card {
    width: min(82vw, 25rem);
    order: 2;
    justify-self: center;
  }

  .screen-crop,
  .showcase-reverse .screen-crop {
    width: min(92vw, 31rem);
  }

  .final-download {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .site-header .brand {
    gap: 0.5rem;
    font-size: 0.92rem;
  }

  .site-header .brand img {
    width: 2.2rem;
    height: 2.2rem;
  }

  .header-actions {
    gap: 0.38rem;
  }

  .header-cta {
    min-height: 2.75rem;
    padding-inline: 0.78rem;
    font-size: 0.78rem;
  }

  .home-hero h1 {
    font-size: clamp(2.48rem, 12.5vw, 3.5rem);
  }

  .button-link.app-store-button {
    width: 100%;
    min-width: 0;
  }

  .trust-ribbon {
    gap: 0.65rem;
    grid-template-columns: 1fr;
    padding-block: 1rem 1.25rem;
  }

  .trust-ribbon > span {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid rgba(210, 227, 244, 0.12);
    text-align: left;
  }

  .trust-ribbon > span:last-child {
    border-bottom: 0;
  }

  .feature-intro-block {
    text-align: left;
  }

  .feature-intro-block h2,
  .feature-intro-block > p:last-child {
    margin-inline: 0;
  }

  .showcase-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .lumi-bridge {
    grid-template-columns: 6.5rem minmax(0, 1fr);
    align-items: start;
  }

  .lumi-bridge figure {
    width: 6.5rem;
  }

  .home-main .plus-editorial,
  .final-download {
    border-radius: 1.35rem;
  }
}

@media (max-width: 23rem) {
  .site-header .brand span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .header-cta {
    padding-inline: 0.68rem;
    font-size: 0.75rem;
  }

  .home-hero h1 {
    font-size: 2.38rem;
  }

  .lumi-bridge {
    grid-template-columns: 1fr;
  }
}

.hero-feature-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.4rem;
  color: rgba(222, 236, 250, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration-color: rgba(222, 236, 250, 0.35);
  text-underline-offset: 0.24em;
}

.hero-feature-link:hover {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .header-cta,
  .button-link.app-store-button,
  .phone-shell-hero {
    transform: none !important;
  }
}

@media (forced-colors: active) {
  .home-hero h1 span {
    color: CanvasText;
    background: none;
    -webkit-text-fill-color: currentColor;
  }

  .phone-shell,
  .app-screen-card,
  .benefit-grid article,
  .final-download,
  .in-app-notice,
  .browser-help {
    border: 1px solid CanvasText;
  }
}

@media print {
  .landing-hero,
  .showcase,
  .lumi-bridge,
  .plus-section,
  .privacy-section,
  .final-download {
    color: #111;
    background: #fff;
  }

  .hero-device,
  .app-screen-card,
  .header-cta,
  .final-download .app-store-button,
  .browser-help,
  .in-app-notice {
    display: none !important;
  }
}
