@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/bricolage-grotesque/BricolageGrotesque-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader/Newsreader-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #071f29;
  --ink-soft: #113b48;
  --ice: #eef8fb;
  --paper: #ffffff;
  --aqua: #95dce4;
  --aqua-bright: #bdf6f4;
  --blue: #087e97;
  --coral: #ff6b5f;
  --coral-dark: #d84d45;
  --muted: #52717a;
  --line: rgba(7, 31, 41, 0.16);
  --display: "Newsreader", Georgia, serif;
  --sans: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --content: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ice);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body::selection { background: var(--aqua); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 15px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.scroll-meter {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 3px;
  background: transparent;
}
.scroll-meter span { display: block; width: 0; height: 100%; background: var(--coral); }

.site-header { position: relative; z-index: 50; }
.launch-strip {
  min-height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 7px 24px;
  background: var(--ink);
  color: #dff8fa;
  font-size: 13px;
  letter-spacing: 0.025em;
}
.launch-strip p { margin: 0; }
.launch-strip a { color: var(--aqua-bright); font-weight: 720; }
.launch-strip a:hover { color: var(--paper); }

.nav-shell {
  position: relative;
  width: 100%;
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 32px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(7, 31, 41, 0.1);
  background: rgba(238, 248, 251, 0.88);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.brand-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 50%;
  background: var(--ink);
}
.brand-mark i { width: 2px; border-radius: 5px; background: var(--aqua-bright); }
.brand-mark i:nth-child(1), .brand-mark i:nth-child(5) { height: 10px; }
.brand-mark i:nth-child(2), .brand-mark i:nth-child(4) { height: 19px; }
.brand-mark i:nth-child(3) { height: 26px; }
.brand-name { font-family: var(--display); font-size: 23px; line-height: 1; letter-spacing: -0.03em; }
.brand-name strong { color: var(--blue); font-weight: 520; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 32px; color: var(--muted); font-size: 14px; font-weight: 620; }
.nav-links a { position: relative; padding: 10px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.language-menu { position: relative; }
.language-menu summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  cursor: pointer;
  list-style: none;
  transition: border-color 180ms ease, background 180ms ease;
}
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu summary:hover, .language-menu[open] summary { border-color: var(--blue); background: var(--paper); }
.language-menu summary img, .language-options img { width: 25px; height: 18px; border-radius: 2px; object-fit: cover; }
.language-menu summary svg { width: 10px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 180ms ease; }
.language-menu[open] summary svg { transform: rotate(180deg); }
.language-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  width: 210px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(7, 31, 41, 0.16);
}
.language-options::before { content: ""; position: absolute; top: -6px; right: 24px; width: 10px; height: 10px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: var(--paper); transform: rotate(45deg); }
.language-options a { position: relative; display: grid; grid-template-columns: 25px 1fr auto; align-items: center; gap: 11px; padding: 10px; border-radius: 9px; font-size: 14px; font-weight: 650; }
.language-options a:hover { background: var(--ice); }
.language-options a[aria-current="page"] { background: rgba(149, 220, 228, 0.22); color: var(--blue); }
.language-options a[aria-current="page"]::after { content: "✓"; position: absolute; right: 10px; color: var(--blue); font-weight: 800; }
.language-options a[aria-current="page"] small { visibility: hidden; }
.language-options small { color: var(--muted); font-size: 10px; font-weight: 760; letter-spacing: 0.08em; }
.nav-shell > .button { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -0.01em;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.button:hover { transform: translateY(-3px); }
.button-small { min-height: 43px; padding: 9px 17px; font-size: 14px; }
.button-large { min-height: 62px; padding: 17px 27px; font-size: 17px; }
.button-ink { background: var(--ink); color: var(--paper); box-shadow: 4px 4px 0 var(--aqua); }
.button-ink:hover { box-shadow: 7px 7px 0 var(--aqua); }
.button-coral { background: var(--coral); color: var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.button-coral:hover { background: #ff7b70; box-shadow: 8px 8px 0 var(--ink); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 680;
}

.hero {
  width: var(--content);
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(450px, 1.08fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  margin: 0 auto;
  padding: 90px 0 112px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow span { width: 27px; height: 1px; background: currentColor; }
.hero h1 {
  max-width: 650px;
  margin-bottom: 27px;
  font-family: var(--display);
  font-size: clamp(62px, 7vw, 104px);
  font-weight: 380;
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.hero h1 em, .mission-band em, .affordability h2 em { color: var(--blue); font-weight: 360; }
.hero-lead { max-width: 590px; margin-bottom: 32px; color: var(--muted); font-size: clamp(18px, 1.6vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 11px 24px; margin: 38px 0 0; padding: 0; color: var(--muted); font-size: 12px; font-weight: 650; list-style: none; }
.trust-line li::before { content: "•"; margin-right: 9px; color: var(--coral); }

.hero-art { position: relative; min-height: 510px; display: grid; place-items: center; }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 340px; height: 340px; top: 0; right: 4%; background: var(--aqua); opacity: 0.45; animation: float 7s ease-in-out infinite; }
.orb-two { width: 170px; height: 170px; bottom: 2%; left: 2%; border: 30px solid rgba(255, 107, 95, 0.28); animation: float 9s 1s ease-in-out infinite reverse; }
.listening-card {
  position: relative;
  width: min(100%, 590px);
  min-height: 420px;
  padding: 25px;
  border: 1px solid rgba(7, 31, 41, 0.22);
  border-radius: 4px 48px 4px 48px;
  background: rgba(255, 255, 255, 0.83);
  box-shadow: 22px 25px 0 rgba(7, 31, 41, 0.06);
  backdrop-filter: blur(10px);
  transform: rotate(1.4deg);
}
.card-heading { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(255, 107, 95, 0.12); }
.book-scene { height: 230px; display: grid; grid-template-columns: 1fr 10px 1fr; align-items: end; margin: 24px 7% 0; perspective: 900px; }
.book-page { min-height: 208px; padding: 27px 25px; background: #f7fdff; box-shadow: 0 16px 27px rgba(7, 31, 41, 0.12); }
.book-page-left { border-radius: 4px 0 0 20px; transform: rotateY(8deg); transform-origin: right; }
.book-page-right { border-radius: 0 4px 20px 0; transform: rotateY(-8deg); transform-origin: left; }
.book-spine { height: 204px; background: linear-gradient(90deg, #b8cdd2, #f7fdff 48%, #adcad1); box-shadow: 0 16px 27px rgba(7, 31, 41, 0.11); }
.page-kicker { display: block; margin-bottom: 13px; color: var(--coral-dark); font-size: 9px; font-weight: 750; letter-spacing: 0.12em; text-transform: uppercase; }
.book-page b { display: block; margin-bottom: 25px; font-family: var(--display); font-size: 25px; font-weight: 430; line-height: 1.05; }
.book-page i { display: block; height: 3px; margin-top: 10px; background: #c9dde1; }
.book-page i:nth-last-child(1) { width: 68%; }
.page-number { display: block; margin-bottom: 25px; color: var(--blue); font-family: var(--display); font-size: 13px; text-align: right; }
.hero-wave { width: calc(100% + 50px); margin: -23px -25px 0; overflow: visible; }
.hero-wave path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.wave-shadow { stroke: rgba(7, 31, 41, 0.1); stroke-width: 9; }
.wave-main { stroke: var(--blue); stroke-width: 3; stroke-dasharray: 7 7; animation: waveTravel 8s linear infinite; }
.player-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; color: var(--muted); font-size: 11px; }
.play-button { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--paper); font-size: 10px; }
.progress-track { height: 4px; border-radius: 5px; background: #cbdde2; overflow: hidden; }
.progress-track i { display: block; width: 57%; height: 100%; background: var(--coral); }

.mission-band {
  position: relative;
  min-height: 305px;
  display: grid;
  grid-template-columns: 0.32fr 1.68fr;
  align-items: center;
  gap: 50px;
  padding: 65px max(24px, calc((100vw - 1180px) / 2));
  background: var(--paper);
  overflow: hidden;
}
.mission-band > p { margin: 0; color: var(--coral-dark); font-size: 12px; font-weight: 760; letter-spacing: 0.14em; text-transform: uppercase; }
.mission-band h2 { position: relative; z-index: 1; max-width: 940px; margin: 0; font-family: var(--display); font-size: clamp(38px, 4.6vw, 62px); font-weight: 360; line-height: 1.03; letter-spacing: -0.035em; text-wrap: balance; }
.mission-wave { position: absolute; right: -5%; bottom: -85px; width: 65%; height: 180px; border: 2px solid var(--aqua); border-radius: 50%; opacity: 0.7; box-shadow: 0 -24px 0 -22px var(--aqua), 0 -50px 0 -48px var(--aqua), 0 -78px 0 -76px var(--aqua); }

.section { width: var(--content); margin: 0 auto; padding: 140px 0; }
.section-intro { max-width: 790px; margin-bottom: 70px; }
.section-intro h2, .section-heading h2, .privacy-copy h2, .affordability h2 {
  margin-bottom: 25px;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 360;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.section-intro > p:last-child { max-width: 680px; color: var(--muted); font-size: 19px; line-height: 1.7; }
.benefit-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 16px; }
.benefit {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}
.benefit:nth-child(2) { border-radius: 0 56px 0 0; }
.benefit:nth-child(3) { border-radius: 0 0 0 56px; }
.benefit-featured { min-height: 290px; background: var(--aqua-bright); }
.benefit-dark { min-height: 290px; background: var(--ink); color: var(--paper); }
.benefit-number { position: absolute; top: 25px; right: 30px; color: var(--blue); font-family: var(--display); font-size: 20px; }
.benefit-dark .benefit-number { color: var(--aqua); }
.benefit h3 { margin-bottom: 9px; font-family: var(--display); font-size: 29px; font-weight: 430; line-height: 1.08; }
.benefit p { max-width: 540px; margin-bottom: 0; color: var(--muted); }
.benefit-dark p { color: #a8c1c8; }
.benefit blockquote { margin: 0 0 20px; font-family: var(--display); font-size: clamp(27px, 2.7vw, 39px); font-weight: 360; line-height: 1.07; }
.mini-wave { display: flex; align-items: center; gap: 5px; height: 50px; margin-bottom: auto; }
.mini-wave i { width: 5px; height: 20px; border-radius: 8px; background: var(--blue); animation: equalize 1.8s ease-in-out infinite alternate; }
.mini-wave i:nth-child(2), .mini-wave i:nth-child(6) { height: 45px; animation-delay: -0.4s; }
.mini-wave i:nth-child(3), .mini-wave i:nth-child(5) { height: 64px; animation-delay: -0.9s; }
.mini-wave i:nth-child(4) { height: 33px; animation-delay: -1.3s; }

.story-section { min-height: 730px; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); color: var(--paper); }
.story-quote { position: relative; display: flex; align-items: center; padding: 11vw max(6vw, 48px); background: linear-gradient(145deg, var(--blue), #075066); overflow: hidden; }
.story-quote::after { content: ""; position: absolute; width: 470px; height: 470px; right: -180px; bottom: -220px; border: 2px solid var(--aqua-bright); border-radius: 50%; box-shadow: 0 0 0 28px rgba(189, 246, 244, 0.08), 0 0 0 58px rgba(189, 246, 244, 0.06); }
.story-quote p { position: relative; z-index: 1; margin: 0; font-family: var(--display); font-size: clamp(36px, 4vw, 56px); font-weight: 340; line-height: 1.07; letter-spacing: -0.035em; }
.story-quote em { color: var(--aqua-bright); }
.quote-mark { position: absolute; top: 5%; left: 7%; color: rgba(255, 255, 255, 0.15); font-family: var(--display); font-size: 240px; line-height: 1; }
.story-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px max(6vw, 48px); }
.eyebrow-light { color: var(--aqua); }
.story-copy h2 { max-width: 580px; margin-bottom: 28px; font-family: var(--display); font-size: clamp(38px, 4vw, 54px); font-weight: 360; line-height: 1.02; letter-spacing: -0.035em; }
.story-copy > p:not(.eyebrow) { max-width: 590px; color: #a8c1c8; font-size: 18px; line-height: 1.7; }
.story-copy ul { margin: 30px 0 0; padding: 0; list-style: none; }
.story-copy li { display: flex; gap: 18px; padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, 0.14); color: #d5e5e9; }
.story-copy li span { color: var(--coral); font-family: var(--display); }

.section-heading { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: end; gap: 60px; margin-bottom: 75px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 460px; margin-bottom: 8px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.process-list { margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.process-list li { display: grid; grid-template-columns: 100px 1fr auto; align-items: center; gap: 38px; min-height: 180px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.step-number { color: var(--coral-dark); font-family: var(--display); font-size: 25px; }
.process-list h3 { margin-bottom: 8px; font-family: var(--display); font-size: 38px; font-weight: 430; }
.process-list p { max-width: 650px; margin-bottom: 0; color: var(--muted); }
.step-note { padding: 7px 11px; border: 1px solid var(--line); border-radius: 99px; color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }

.privacy-section { min-height: 810px; display: grid; grid-template-columns: 0.8fr 1.2fr; align-items: center; gap: 8vw; padding: 110px max(24px, calc((100vw - 1180px) / 2)); background: #0a303d; color: var(--paper); overflow: hidden; }
.privacy-orbit { position: relative; width: min(32vw, 420px); aspect-ratio: 1; display: grid; place-items: center; margin: auto; border: 1px solid rgba(189, 246, 244, 0.42); border-radius: 50%; }
.privacy-orbit::before, .privacy-orbit::after { content: ""; position: absolute; border: 1px solid rgba(189, 246, 244, 0.17); border-radius: 50%; }
.privacy-orbit::before { inset: 13%; }
.privacy-orbit::after { inset: -13%; }
.privacy-orbit strong { width: 130px; height: 130px; display: grid; place-items: center; border-radius: 50%; background: var(--aqua-bright); color: var(--ink); font-family: var(--display); font-size: 38px; font-weight: 400; }
.privacy-orbit span { position: absolute; width: 16px; height: 16px; border: 4px solid var(--coral); border-radius: 50%; background: #0a303d; animation: orbitPulse 3s ease-in-out infinite; }
.privacy-orbit span:nth-child(1) { top: 8%; left: 22%; }
.privacy-orbit span:nth-child(2) { right: -2%; bottom: 38%; animation-delay: -1s; }
.privacy-orbit span:nth-child(3) { bottom: 2%; left: 28%; animation-delay: -2s; }
.privacy-copy h2 { max-width: 720px; }
.privacy-lead { max-width: 720px; color: #bed2d7; font-size: 20px; line-height: 1.7; }
.privacy-promises { margin: 40px 0; }
.privacy-promises article { display: grid; grid-template-columns: 46px 1fr; gap: 19px; padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.promise-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(189, 246, 244, 0.65); border-radius: 50%; color: var(--aqua-bright); background: rgba(189, 246, 244, 0.04); }
.promise-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.privacy-promises h3 { margin-bottom: 4px; font-family: var(--display); font-size: 25px; font-weight: 430; }
.privacy-promises p { margin-bottom: 0; color: #9cb8bf; font-size: 15px; }
.text-link-light { color: var(--aqua-bright); }

.affordability { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 100px; }
.affordability h2 { margin-bottom: 0; }
.affordability-note { padding: 50px; border-left: 1px solid var(--ink); }
.affordability-note > p:first-child { color: var(--muted); font-size: 20px; line-height: 1.7; }
.mission-statement { margin: 35px 0 0; font-family: var(--display); font-size: 29px; line-height: 1.25; }

.final-cta { position: relative; min-height: 650px; display: grid; place-items: center; padding: 110px 24px; background: var(--aqua); overflow: hidden; text-align: center; }
.final-copy { position: relative; z-index: 2; }
.final-copy > p { margin-bottom: 18px; color: var(--blue); font-size: 13px; font-weight: 760; letter-spacing: 0.16em; text-transform: uppercase; }
.final-copy h2 { margin-bottom: 43px; font-family: var(--display); font-size: clamp(57px, 8vw, 105px); font-weight: 350; line-height: 0.9; letter-spacing: -0.05em; }
.final-wave { position: absolute; right: -5%; bottom: 18px; left: -5%; height: 68px; opacity: 0.3; }
.final-wave::before, .final-wave::after { content: ""; position: absolute; inset: 0; background: repeat-x center / 150px 64px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='90' viewBox='0 0 150 90'%3E%3Cpath d='M0 45 C18 45 18 8 37 8 S56 82 75 82 94 22 112 22 131 45 150 45' fill='none' stroke='%23071f29' stroke-width='2'/%3E%3C/svg%3E"); animation: slideWave 12s linear infinite; }
.final-wave::after { opacity: 0.45; transform: scaleY(-0.7); animation-direction: reverse; }

.site-footer { min-height: 150px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding: 35px max(24px, calc((100vw - 1180px) / 2)); background: var(--ink); color: #9fb9c0; font-size: 13px; }
.site-footer p { margin: 0; }
.site-footer p span { color: var(--coral); }
.site-footer p a { color: var(--paper); }
.site-footer > div { display: flex; justify-self: end; gap: 25px; }
.site-footer > div a:hover { color: var(--aqua-bright); }
.brand-footer .brand-mark { background: #123d4a; }
.brand-footer .brand-name { color: var(--paper); }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes float { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -18px, 0); } }
@keyframes waveTravel { to { stroke-dashoffset: -112px; } }
@keyframes equalize { from { transform: scaleY(0.45); } to { transform: scaleY(1); } }
@keyframes orbitPulse { 50% { box-shadow: 0 0 0 12px rgba(149, 220, 228, 0.1); transform: scale(1.16); } }
@keyframes slideWave { to { background-position-x: 300px; } }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-shell { grid-template-columns: 1fr auto auto; gap: 18px; }
  .hero { grid-template-columns: 1fr; padding-top: 75px; }
  .hero-copy { max-width: 780px; }
  .hero-art { min-height: 470px; }
  .mission-band { grid-template-columns: 1fr; gap: 22px; }
  .story-section { grid-template-columns: 1fr; }
  .story-quote { min-height: 560px; }
  .privacy-section { grid-template-columns: 1fr; }
  .privacy-orbit { width: min(65vw, 390px); }
  .affordability { grid-template-columns: 1fr; gap: 50px; }
  .affordability-note { padding: 40px 0 0; border-top: 1px solid var(--ink); border-left: 0; }
}

@media (max-width: 720px) {
  :root { --content: min(100% - 34px, 620px); }
  body { font-size: 16px; }
  .launch-strip { justify-content: space-between; }
  .launch-strip p { max-width: 180px; }
  .nav-shell { min-height: 72px; padding: 0 17px; }
  .language-menu summary { min-height: 38px; padding: 6px 8px; }
  .language-options { position: fixed; top: 118px; right: 17px; left: 17px; width: auto; }
  .language-options::before { right: 127px; }
  .brand-mark { width: 35px; height: 35px; }
  .brand-name { font-size: 20px; }
  .nav-shell .button { min-height: 39px; padding: 8px 12px; font-size: 12px; box-shadow: 3px 3px 0 var(--aqua); }
  .hero { min-height: 0; gap: 58px; padding: 67px 0 82px; }
  .hero h1 { font-size: clamp(58px, 18vw, 78px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .hero-art { min-height: 395px; }
  .listening-card { min-height: 360px; padding: 18px; border-radius: 3px 34px 3px 34px; box-shadow: 12px 15px 0 rgba(7, 31, 41, 0.06); }
  .book-scene { height: 200px; margin-right: 2%; margin-left: 2%; }
  .book-page { min-height: 180px; padding: 22px 16px; }
  .book-spine { height: 178px; }
  .book-page b { font-size: 20px; }
  .hero-wave { width: calc(100% + 36px); margin-right: -18px; margin-left: -18px; }
  .mission-band { min-height: 350px; padding: 70px 17px; }
  .mission-band h2 { font-size: 42px; }
  .section { padding: 96px 0; }
  .section-intro { margin-bottom: 50px; }
  .section-intro h2, .section-heading h2, .privacy-copy h2, .affordability h2 { font-size: 42px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit, .benefit-featured, .benefit-dark { min-height: 240px; padding: 25px; }
  .story-quote { min-height: 410px; padding: 72px 24px; }
  .story-copy { padding: 78px 24px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 50px; }
  .process-list li { grid-template-columns: 50px 1fr; gap: 20px; padding: 35px 0; }
  .step-note { grid-column: 2; justify-self: start; }
  .privacy-section { gap: 70px; padding: 85px 20px; }
  .privacy-orbit { width: min(80vw, 330px); }
  .privacy-orbit strong { width: 105px; height: 105px; font-size: 31px; }
  .affordability-note { padding-right: 5px; }
  .final-cta { min-height: 590px; }
  .final-copy h2 { font-size: 56px; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; padding: 45px 22px; }
  .site-footer > div { justify-self: start; }
}

@media (max-width: 430px) {
  .language-menu summary > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
  .language-menu summary { gap: 5px; }
}

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