:root {
  --navy: #02006c;
  --navy-2: #080836;
  --cream: #fff6ec;
  --cream-2: #fffaf4;
  --white: #ffffff;
  --ink: #0b0a24;
  --muted: #6b6b80;
  --line: rgba(2, 0, 108, 0.12);
  --line-light: rgba(255, 246, 236, 0.18);
  --shadow: 0 30px 80px rgba(2, 0, 108, 0.24);
  --radius: 28px;
  --max: 1180px;
  --legal: 780px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font);
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(2, 0, 108, 0.45);
  outline-offset: 4px;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--cream);
  color: var(--navy);
  padding: 10px 14px;
  font-weight: 700;
}

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 0 18px;
}

.nav-shell {
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 246, 236, 0.18);
  border-radius: 999px;
  padding: 8px 9px 8px 18px;
  color: var(--cream);
  background: rgba(2, 0, 108, 0.68);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(22px);
}

.legal-header .nav-shell {
  color: var(--navy);
  background: rgba(255, 250, 244, 0.82);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  background-position: center;
  background-size: cover;
  font-size: 14px;
  font-weight: 820;
  overflow: hidden;
}

.legal-header .brand-mark,
.footer-brand .brand-mark {
  background: var(--navy);
  color: var(--cream);
}

.brand-mark.has-asset {
  background-color: transparent;
}

.brand-mark.has-asset span {
  opacity: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 660;
  color: currentColor;
  opacity: 0.82;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  opacity: 1;
  background: rgba(255, 246, 236, 0.12);
}

.legal-header .nav-links a:hover,
.legal-header .nav-links a[aria-current="page"] {
  background: rgba(2, 0, 108, 0.08);
}

.nav-links .nav-cta {
  margin-left: 8px;
  background: var(--cream);
  color: var(--navy);
  opacity: 1;
  font-weight: 760;
}

.legal-header .nav-links .nav-cta {
  background: var(--navy);
  color: var(--cream);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.section-dark {
  color: var(--cream);
  background: var(--navy);
}

.section-cream {
  background: var(--cream);
}

.section-light {
  background: var(--cream-2);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(112px, 12vh, 148px) 22px 72px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(255, 246, 236, 0.05));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  min-height: calc(100svh - 196px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.86fr);
  align-items: center;
  gap: clamp(40px, 7vw, 104px);
}

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

.eyebrow {
  margin-bottom: 18px;
  color: inherit;
  opacity: 0.66;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 760px;
  color: var(--cream);
  font-size: clamp(62px, 9.5vw, 128px);
  line-height: 0.9;
  font-weight: 820;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 570px;
  color: rgba(255, 246, 236, 0.84);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.3;
}

.hero-note {
  margin-bottom: 32px;
  color: rgba(255, 246, 236, 0.66);
  font-size: 17px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 780;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--cream);
  color: var(--navy);
}

.button-primary.warm {
  background: var(--cream);
  color: var(--navy);
}

.button-quiet {
  border: 1px solid rgba(255, 246, 236, 0.22);
  color: var(--cream);
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.42;
  pointer-events: none;
}

.ambient-one {
  width: 380px;
  height: 380px;
  right: 7%;
  top: 15%;
  background: rgba(255, 246, 236, 0.22);
}

.ambient-two {
  width: 320px;
  height: 320px;
  left: -90px;
  bottom: 14%;
  background: rgba(255, 246, 236, 0.14);
}

.voice-field {
  position: absolute;
  right: 10vw;
  bottom: 14vh;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.16;
}

.voice-field span {
  width: 2px;
  height: 80px;
  border-radius: 999px;
  background: var(--cream);
  animation: wave 3.4s ease-in-out infinite;
}

.voice-field span:nth-child(2) { height: 130px; animation-delay: 120ms; }
.voice-field span:nth-child(3) { height: 180px; animation-delay: 240ms; }
.voice-field span:nth-child(4) { height: 120px; animation-delay: 360ms; }
.voice-field span:nth-child(5) { height: 70px; animation-delay: 480ms; }

.phone-stage {
  position: relative;
  min-height: clamp(540px, 72vh, 660px);
}

.phone {
  position: absolute;
  width: min(70vw, 350px);
  aspect-ratio: 9 / 19.5;
  border-radius: 46px;
  padding: 11px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 236, 0.74));
  box-shadow: var(--shadow);
  will-change: transform;
}

.phone::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  width: 88px;
  height: 25px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #08081f;
  z-index: 2;
}

.phone-front {
  right: 8%;
  top: clamp(18px, 5vh, 42px);
}

.phone-back {
  right: 35%;
  top: clamp(94px, 14vh, 124px);
  opacity: 0.72;
  transform: scale(0.88);
}

.screen-placeholder,
.mini-screen-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(2, 0, 108, 0.1);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 34%, rgba(2, 0, 108, 0.16), transparent 29%),
    linear-gradient(180deg, #fffaf4, #f4e5d7);
  background-position: center;
  background-size: cover;
}

.screen-placeholder span,
.mini-screen-placeholder span {
  max-width: 76%;
  color: rgba(2, 0, 108, 0.54);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.45;
  text-align: center;
}

.asset-slot.has-asset span {
  display: none;
}

.section-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(86px, 10vw, 136px) 0;
}

.section-inner.narrow {
  max-width: 980px;
}

.section-inner.center {
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(40px, 9vw, 120px);
  align-items: center;
}

.section-title,
.section-inner h2,
.legal-hero h1 {
  color: var(--navy);
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 0.98;
  font-weight: 820;
  letter-spacing: 0;
}

.section-dark .section-inner h2,
.section-dark .section-title {
  color: var(--cream);
}

.section-lede {
  max-width: 560px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}

.center .section-lede {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 246, 236, 0.72);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step {
  min-height: 210px;
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.step:last-child {
  border-right: 0;
}

.step span {
  color: rgba(2, 0, 108, 0.42);
  font-size: 13px;
  font-weight: 780;
}

.step h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}

.manifesto h2 {
  margin-bottom: 0;
}

.manifesto-copy p {
  color: var(--navy);
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.08;
  font-weight: 780;
  letter-spacing: 0;
}

.line-list {
  list-style: none;
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.line-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 17px;
}

.voice-section {
  position: relative;
  overflow: hidden;
}

.voice-section .section-inner {
  min-height: clamp(500px, 66vh, 620px);
  display: grid;
  place-items: center;
  align-content: center;
}

.voice-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(74vw, 640px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  opacity: 0.26;
}

.voice-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 246, 236, 0.28);
  border-radius: 50%;
  animation: breathe 6s ease-in-out infinite;
}

.voice-orbit span:nth-child(2) {
  inset: 16%;
  animation-delay: 600ms;
}

.voice-orbit span:nth-child(3) {
  inset: 31%;
  animation-delay: 1200ms;
}

.safety-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.safety-list a,
.safety-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: clamp(21px, 2.3vw, 30px);
  font-weight: 760;
}

.safety-list a::after {
  content: "Read";
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.screenshot-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 22px;
}

.gallery-phone {
  margin: 0;
}

.mini-screen-placeholder {
  aspect-ratio: 9 / 18.8;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 20%, rgba(2, 0, 108, 0.12), transparent 28%),
    linear-gradient(180deg, #fff6ec, #fff);
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 45px rgba(2, 0, 108, 0.12);
}

.gallery-phone figcaption {
  margin-top: 16px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 760;
  text-align: center;
}

.closing-cta .section-inner {
  padding-top: clamp(100px, 14vw, 180px);
  padding-bottom: clamp(100px, 14vw, 180px);
}

.closing-cta h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

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

.footer-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  color: var(--navy);
}

.site-footer p {
  margin: 14px 0 0;
  font-size: 14px;
}

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

.footer-links a,
.footer-meta a,
.footer-meta span {
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover,
.footer-meta a:hover {
  color: var(--navy);
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

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

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

.legal-main {
  min-height: 100vh;
  padding: 122px 22px 78px;
  background:
    radial-gradient(circle at 72% 0%, rgba(2, 0, 108, 0.08), transparent 34%),
    var(--cream);
}

.legal-hero {
  width: min(var(--legal), 100%);
  margin: 0 auto 46px;
  padding-top: 44px;
}

.legal-hero h1 {
  margin-bottom: 18px;
}

.legal-hero p:not(.eyebrow) {
  max-width: 600px;
  font-size: 19px;
  line-height: 1.55;
}

.legal-content,
.faq-section,
.contact-panel {
  width: min(var(--legal), 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.legal-content h2,
.faq-section h2,
.contact-panel h2 {
  margin: 38px 0 12px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.legal-content h2:first-child,
.faq-section h2:first-child,
.contact-panel h2:first-child {
  margin-top: 0;
}

.legal-content p,
.faq-section p,
.contact-panel p {
  font-size: 16.5px;
  line-height: 1.78;
}

.legal-content a,
.faq-section a,
.contact-panel a {
  color: var(--navy);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.editorial-content .intro {
  color: var(--navy);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 740;
}

.support-actions {
  width: min(var(--legal), 100%);
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.support-actions a {
  min-height: 88px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 760;
  transition: background-color 180ms ease;
}

.support-actions a:hover {
  background: rgba(2, 0, 108, 0.05);
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 760;
}

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

summary::after {
  content: "+";
  float: right;
  color: var(--muted);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin-bottom: 24px;
}

.contact-panel {
  margin-top: 48px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes wave {
  0%, 100% { transform: scaleY(0.72); }
  50% { transform: scaleY(1); }
}

@keyframes breathe {
  0%, 100% { transform: scale(0.985); opacity: 0.72; }
  50% { transform: scale(1.025); opacity: 1; }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 90px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(255, 246, 236, 0.18);
    border-radius: 28px;
    padding: 12px;
    background: rgba(2, 0, 108, 0.94);
    color: var(--cream);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .legal-header .nav-links {
    background: rgba(255, 250, 244, 0.96);
    color: var(--navy);
    border-color: var(--line);
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    padding-top: 106px;
  }

  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(60px, 16vw, 92px);
  }

  .phone-stage {
    min-height: clamp(500px, 64vh, 580px);
  }

  .phone-front {
    right: 8%;
  }

  .phone-back {
    right: 32%;
  }

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

  .step {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .screenshot-rail {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
  }

  .gallery-phone {
    flex: 0 0 min(68vw, 280px);
    scroll-snap-align: start;
  }

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

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

  .footer-meta {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    padding: 0 12px;
  }

  .nav-shell {
    width: 100%;
    min-height: 58px;
    padding-left: 14px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    max-width: 9ch;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
  }

  .phone-stage {
    min-height: 470px;
  }

  .phone {
    border-radius: 38px;
  }

  .phone-front {
    width: min(78vw, 292px);
    right: 0;
  }

  .phone-back {
    width: min(72vw, 270px);
    right: 24%;
  }

  .section-inner {
    width: calc(100% - 36px);
  }

  .support-actions {
    grid-template-columns: 1fr;
  }

  .legal-main {
    padding-left: 18px;
    padding-right: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
