:root {
  --canvas: #08080b;
  --canvas-deep: #070812;
  --canvas-soft: #0d0f1e;
  --surface: #111425;
  --surface-neutral: #15151d;
  --surface-raised: #1b1b25;
  --border: #292c40;
  --border-neutral: #30303d;
  --border-soft: rgb(255 255 255 / 0.08);
  --text: #f7f5ff;
  --muted: #abacbd;
  --quiet: #727489;
  --violet: #b29cff;
  --violet-strong: #9d82ff;
  --mint: #6fe4c1;
  --blue: #6ea8ff;
  --danger: #ff7e86;
  --success: #6fe4c1;
  --ink: #070812;
  --shell: 1296px;
  --header-height: 72px;
  --radius-small: 14px;
  --radius-card: 24px;
  --radius-large: 36px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-state: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

h1,
h2,
h3,
p,
dl,
dd,
figure,
ol,
ul {
  margin: 0;
}

h1,
h2,
h3,
.brand-name {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

h1,
h2,
h3 {
  text-wrap: balance;
  overflow-wrap: break-word;
}

p,
dd,
li {
  text-wrap: pretty;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-state);
}

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

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

.i18n-multiline {
  white-space: pre-line;
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header-height);
  border-bottom: 1px solid var(--border-soft);
  background: rgb(8 8 11 / 0.9);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.brand-name {
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.23em;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.875rem;
  font-weight: 540;
  white-space: nowrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  transition: color 180ms var(--ease-state);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.language-control {
  display: flex;
  align-items: center;
}

.language-select {
  min-width: 112px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--border-neutral);
  border-radius: 10px;
  background-color: var(--surface-neutral);
  color: var(--text);
  color-scheme: dark;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 590;
}

.language-select:hover {
  border-color: #55566a;
  background-color: var(--surface-raised);
}

.site-nav .nav-release {
  min-height: 38px;
  padding-inline: 14px;
  border: 1px solid var(--violet);
  border-radius: 999px;
  background: var(--violet);
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 670;
}

.menu-toggle {
  display: none;
  min-width: 64px;
  min-height: 40px;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.04);
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at 75% 45%, rgb(112 228 193 / 0.08), transparent 29%),
    radial-gradient(circle at 64% 20%, rgb(157 130 255 / 0.16), transparent 32%),
    var(--canvas-deep);
}

.hero-glow {
  position: absolute;
  top: -210px;
  right: -190px;
  width: 850px;
  height: 850px;
  border-radius: 50%;
  background: rgb(114 91 222 / 0.13);
  filter: blur(90px);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  min-height: 812px;
  padding-block: 80px 86px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.eyebrow,
.section-kicker {
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 680;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(4.1rem, 5.4vw, 4.75rem);
  font-weight: 620;
  letter-spacing: -0.058em;
  line-height: 0.99;
}

.hero-summary {
  max-width: 570px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.62;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding-inline: 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 670;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms var(--ease-state),
    background-color 180ms var(--ease-state),
    border-color 180ms var(--ease-state);
}

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

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-primary {
  background: var(--violet-strong);
  color: var(--ink);
}

.button-primary:hover {
  background: #b29cff;
}

.button-secondary {
  border-color: var(--border-neutral);
  background: rgb(17 20 37 / 0.72);
  color: var(--text);
}

.button-secondary:hover {
  border-color: #55566a;
  background: var(--surface);
}

.hero-visual {
  position: relative;
  height: 650px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: #07131c;
  box-shadow: 0 44px 120px rgb(0 0 0 / 0.45);
}

.hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  opacity: 0.74;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgb(7 8 18 / 0.22), transparent 42%, rgb(7 8 18 / 0.22)),
    linear-gradient(180deg, transparent 55%, rgb(7 8 18 / 0.58));
}

.sound-field {
  position: absolute;
  top: 18%;
  left: 7%;
  z-index: 2;
  width: 86%;
  height: 42%;
  opacity: 0.92;
  pointer-events: none;
}

.sound-field span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 42px;
  border: 1px solid rgb(178 156 255 / 0.54);
  border-color: rgb(178 156 255 / 0.58) transparent transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 12px rgb(157 130 255 / 0.28));
}

.sound-field span:nth-child(2) {
  width: 82%;
  top: 56%;
  border-color: rgb(110 168 255 / 0.48) transparent transparent;
}

.sound-field span:nth-child(3) {
  width: 64%;
  top: 43%;
  border-color: rgb(111 228 193 / 0.52) transparent transparent;
}

.sound-field span:nth-child(4) {
  width: 42%;
  top: 60%;
  border-color: rgb(178 156 255 / 0.46) transparent transparent;
}

.device {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 42px;
  background: #050509;
  box-shadow: 0 34px 90px rgb(0 0 0 / 0.5);
}

.device img {
  width: 100%;
  height: auto;
}

.hero-device {
  position: absolute;
  right: 7%;
  bottom: -14%;
  z-index: 3;
  width: min(45%, 285px);
}

.scroll-note {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 3;
  color: var(--quiet);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.trust-band {
  border-bottom: 1px solid var(--border-soft);
  background: #0b0c13;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 34px;
}

.trust-grid > div {
  padding-inline: clamp(0px, 3.1vw, 44px);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  padding-right: 0;
}

.trust-grid > div + div {
  border-left: 1px solid var(--border);
}

.trust-grid dt {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.93rem;
  font-weight: 680;
}

.trust-grid dt span {
  color: var(--mint);
  font-size: 0.7rem;
}

.trust-grid dd {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.section {
  padding-block: clamp(112px, 11vw, 168px);
}

.section-copy h2,
.responsible-section h2,
.availability-panel h2 {
  margin-top: 22px;
  font-size: clamp(2.9rem, 5vw, 4.75rem);
  font-weight: 610;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.section-summary,
.availability-panel > div > p:last-child {
  max-width: 640px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.section-kicker-blue {
  color: var(--blue);
}

.personal-section {
  position: relative;
  overflow: hidden;
  background: var(--canvas-deep);
}

.personal-section::before {
  content: "";
  position: absolute;
  right: -170px;
  bottom: 0;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgb(157 130 255 / 0.1);
  filter: blur(92px);
  pointer-events: none;
}

.personal-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(72px, 11vw, 150px);
}

.match-list {
  max-width: 670px;
  margin-top: 54px;
  padding: 0;
  list-style: none;
  counter-reset: match;
}

.match-list li {
  position: relative;
  padding: 25px 0 25px 58px;
  border-top: 1px solid var(--border);
  counter-increment: match;
}

.match-list li:last-child {
  border-bottom: 1px solid var(--border);
}

.match-list li::before {
  content: counter(match, decimal-leading-zero);
  position: absolute;
  top: 27px;
  left: 0;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.match-list h3 {
  font-size: 1.06rem;
  font-weight: 650;
}

.match-list p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.92rem;
}

.phone-stage,
.library-visual,
.account-stage {
  position: relative;
  min-height: 660px;
}

.phone-stage-orbit {
  position: absolute;
  top: 7%;
  left: -12%;
  width: 116%;
  aspect-ratio: 1;
  border: 1px solid rgb(178 156 255 / 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 46px rgb(178 156 255 / 0.035),
    0 0 0 92px rgb(111 228 193 / 0.025);
}

.feature-phone,
.library-phone,
.account-phone {
  position: absolute;
  z-index: 2;
  width: min(78%, 330px);
}

.feature-phone {
  top: 0;
  right: 5%;
}

.stage-caption {
  position: absolute;
  right: 0;
  bottom: 20px;
  z-index: 3;
  width: min(88%, 360px);
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgb(17 20 37 / 0.92);
  color: var(--muted);
  font-size: 0.82rem;
  backdrop-filter: blur(16px);
}

.stage-caption span {
  display: block;
  margin-bottom: 4px;
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.library-section {
  overflow: hidden;
  border-block: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at 18% 50%, rgb(110 168 255 / 0.09), transparent 28%),
    var(--surface-neutral);
}

.library-grid {
  display: grid;
  grid-template-columns: minmax(410px, 0.76fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(74px, 11vw, 150px);
}

.library-phone {
  top: 0;
  left: 12%;
}

.ambient-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 180px;
  padding: 14px 16px;
  border: 1px solid var(--border-neutral);
  border-radius: 16px;
  background: rgb(13 15 30 / 0.9);
  box-shadow: 0 22px 50px rgb(0 0 0 / 0.3);
  color: var(--muted);
  font-size: 0.83rem;
  backdrop-filter: blur(16px);
}

.ambient-card b {
  color: var(--blue);
  font-size: 0.8rem;
}

.ambient-card-rain {
  top: 18%;
  left: 0;
}

.ambient-card-waves {
  top: 45%;
  right: 0;
}

.ambient-card-wind {
  bottom: 13%;
  left: 1%;
}

.feature-facts,
.privacy-facts {
  margin-top: 48px;
}

.feature-facts > div,
.privacy-facts > div {
  display: grid;
  grid-template-columns: minmax(160px, 0.46fr) minmax(0, 1fr);
  gap: 28px;
  padding-block: 21px;
  border-top: 1px solid var(--border-neutral);
}

.feature-facts > div:last-child,
.privacy-facts > div:last-child {
  border-bottom: 1px solid var(--border-neutral);
}

.feature-facts dt,
.privacy-facts dt {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 650;
}

.feature-facts dd,
.privacy-facts dd {
  color: var(--muted);
  font-size: 0.91rem;
}

.shield-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgb(157 130 255 / 0.08), transparent 27%),
    #090a12;
}

.shield-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.4fr);
  align-items: end;
  gap: 76px;
}

.shield-note {
  padding-left: 24px;
  border-left: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.shield-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 78px;
}

.shield-card {
  position: relative;
  min-height: 770px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 70% 28%, rgb(111 228 193 / 0.12), transparent 26%),
    var(--surface);
}

.shield-card-alt {
  background:
    radial-gradient(circle at 70% 28%, rgb(157 130 255 / 0.18), transparent 27%),
    var(--surface);
}

.shield-card-copy {
  position: relative;
  z-index: 2;
  max-width: 460px;
  padding: 38px 38px 0;
}

.shield-index {
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.shield-card h3 {
  margin-top: 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.shield-card-copy > p:last-child {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.shield-phone {
  position: absolute;
  right: 7%;
  bottom: -21%;
  width: min(47%, 300px);
}

.privacy-preview {
  border-top: 1px solid var(--border-soft);
  background: var(--canvas-deep);
}

.privacy-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.66fr);
  align-items: center;
  gap: clamp(78px, 11vw, 150px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 38px;
  color: var(--mint);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgb(111 228 193 / 0.32);
  text-underline-offset: 6px;
}

.text-link:hover {
  text-decoration-color: var(--mint);
}

.account-stage {
  min-height: 650px;
}

.account-phone {
  top: 0;
  right: 5%;
}

.privacy-badge {
  position: absolute;
  bottom: 40px;
  left: 0;
  z-index: 3;
  width: 220px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgb(17 20 37 / 0.92);
  backdrop-filter: blur(16px);
}

.privacy-badge span {
  display: block;
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-badge strong {
  display: block;
  margin-top: 5px;
  font-size: 0.92rem;
}

.responsible-section {
  padding-block: clamp(92px, 9vw, 126px);
  border-block: 1px solid var(--border-soft);
  background: var(--surface-neutral);
}

.responsible-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.62fr);
  align-items: end;
  gap: clamp(72px, 10vw, 142px);
}

.responsible-section h2 {
  max-width: 760px;
}

.responsible-copy p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.responsible-copy p + p {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-neutral);
}

.availability-section {
  padding-block: clamp(86px, 9vw, 132px);
  background: var(--canvas-deep);
}

.availability-panel,
.utility-return {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 52px;
  padding: clamp(38px, 5.5vw, 72px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgb(157 130 255 / 0.12), transparent 48%),
    var(--surface);
}

.availability-panel h2 {
  max-width: 760px;
}

.availability-panel > * {
  min-width: 0;
}

.site-footer {
  padding-block: 54px 34px;
  border-top: 1px solid var(--border-soft);
  background: #070709;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 72px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  max-width: 430px;
}

.footer-brand > span:last-child {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.footer-columns {
  display: flex;
  gap: 64px;
}

.footer-columns nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 120px;
  gap: 11px;
}

.footer-columns nav p {
  margin-bottom: 2px;
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-columns a {
  min-height: 24px;
  color: var(--muted);
  font-size: 0.875rem;
}

.footer-columns a:hover,
.footer-columns a:focus-visible,
.footer-columns a[aria-current="page"] {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  color: var(--quiet);
  font-size: 0.75rem;
}

/* Utility pages */
.utility-page {
  background: var(--canvas-deep);
}

.utility-hero {
  position: relative;
  overflow: hidden;
  padding-block: 42px 78px;
  border-bottom: 1px solid var(--border-soft);
}

.utility-glow {
  position: absolute;
  top: -220px;
  right: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgb(114 91 222 / 0.13);
  filter: blur(65px);
  pointer-events: none;
}

.utility-hero-inner {
  position: relative;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--mint);
  font-size: 0.875rem;
  font-weight: 650;
}

.utility-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 28px;
  padding-inline: 17px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--mint);
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-hero h1 {
  max-width: 820px;
  margin-top: 28px;
  font-size: clamp(4rem, 6vw, 4.75rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.utility-hero h1 + p {
  max-width: 720px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.55;
}

.effective-date {
  margin-top: 48px;
  color: var(--quiet);
  font-size: 0.8125rem;
  font-weight: 550;
}

.mobile-copy {
  display: none;
}

.policy-summary {
  padding-block: 42px 50px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.summary-grid article {
  min-height: 152px;
  padding: 21px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
}

.summary-grid article > span {
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 680;
}

.summary-grid h2 {
  margin-top: 15px;
  font-size: 0.82rem;
  font-weight: 680;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.summary-grid p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.45;
}

.policy-section {
  padding-block: 38px 110px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 844px);
  justify-content: space-between;
  gap: 72px;
}

.policy-index {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.policy-index > p {
  color: var(--quiet);
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-index nav {
  display: grid;
  margin-top: 20px;
}

.policy-index a {
  padding-block: 9px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.35;
}

.policy-index a:hover,
.policy-index a:focus-visible {
  color: var(--mint);
}

.policy-index small {
  display: block;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--quiet);
  font-size: 0.76rem;
  line-height: 1.5;
}

.policy-content {
  min-width: 0;
}

.policy-block {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 24px;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.policy-block + .policy-block {
  padding-top: 58px;
}

.policy-number {
  padding-top: 8px;
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 680;
}

.policy-block h2 {
  font-size: 1.9rem;
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.policy-block p,
.policy-block li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.policy-block p,
.policy-block ul {
  margin-top: 20px;
}

.policy-block p + p {
  margin-top: 16px;
}

.policy-block ul {
  display: grid;
  gap: 16px;
  padding-left: 20px;
}

.policy-block strong {
  color: var(--text);
  font-weight: 650;
}

.policy-block a {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.utility-return-section {
  padding-block: 76px;
  border-top: 1px solid var(--border-soft);
}

.utility-return {
  padding: 31px;
}

.utility-return h2 {
  font-size: 1.65rem;
  font-weight: 620;
  letter-spacing: -0.025em;
}

.utility-return p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Support */
.support-hero {
  padding-bottom: 64px;
}

.support-hero .utility-hero-inner > p:not(.utility-label) {
  max-width: 640px;
}

.support-status {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  width: min(100%, 520px);
  margin-top: 42px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgb(17 20 37 / 0.78);
}

.status-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgb(111 228 193 / 0.08);
}

.support-status small {
  display: block;
  color: var(--quiet);
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-status a {
  display: inline-block;
  margin-top: 7px;
  color: var(--mint);
  font-size: 1.05rem;
  font-weight: 650;
}

.support-status p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.support-workspace {
  padding-block: 70px 96px;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(360px, 444px);
  justify-content: space-between;
  align-items: start;
  gap: 44px;
}

.support-form-card,
.quick-help,
.safety-note {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
}

.support-form-card {
  padding: 34px 36px 36px;
}

.support-form-card h2,
.quick-help h2,
.faq-content > h2,
.safety-note h2 {
  margin-top: 18px;
  font-size: 2rem;
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.form-intro {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.support-form-card form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  color: var(--quiet);
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: var(--canvas-soft);
  color: var(--text);
  font-size: 1rem;
}

.field-group input,
.field-group select {
  min-height: 54px;
  padding-inline: 15px;
}

.field-group textarea {
  min-height: 166px;
  padding: 14px 15px;
  resize: vertical;
  line-height: 1.5;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #77798c;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--violet);
  outline: 0;
  box-shadow: 0 0 0 3px rgb(178 156 255 / 0.16);
}

.field-hint {
  color: var(--quiet);
  font-size: 0.74rem;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  justify-self: start;
  min-width: 190px;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-note,
.noscript-note {
  color: var(--quiet);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-status {
  min-height: 0;
  color: var(--success);
  font-size: 0.88rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.noscript-note {
  margin-top: 20px;
}

.noscript-note a {
  color: var(--mint);
}

.quick-help {
  padding: 29px 28px;
  background: var(--canvas-soft);
}

.quick-help ol {
  margin-top: 24px;
  padding: 0;
  list-style: none;
  counter-reset: help;
}

.quick-help li {
  position: relative;
  padding: 20px 0 20px 50px;
  border-top: 1px solid var(--border);
  counter-increment: help;
}

.quick-help li::before {
  content: counter(help, decimal-leading-zero);
  position: absolute;
  top: 21px;
  left: 0;
  color: var(--mint);
  font-size: 0.7rem;
  font-weight: 680;
}

.quick-help h3 {
  font-size: 1rem;
  font-weight: 650;
}

.quick-help li p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.81rem;
}

.faq-section {
  padding-block: 96px;
  border-top: 1px solid var(--border-soft);
  background: #090a12;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(360px, 444px);
  justify-content: space-between;
  align-items: start;
  gap: 44px;
}

.faq-content > h2 {
  font-size: clamp(2.4rem, 4vw, 3rem);
}

.faq-content > p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.faq-list details {
  border: 1px solid var(--border-neutral);
  border-radius: 18px;
  background: var(--surface-neutral);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 20px 62px 20px 23px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  color: var(--violet);
  font-size: 1.45rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 23px 24px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.faq-list details strong {
  color: var(--text);
}

.safety-note {
  padding: 28px;
  background: var(--surface);
}

.safety-note > span {
  color: var(--mint);
  font-size: 1.75rem;
}

.safety-note h2 {
  margin-top: 17px;
  font-size: 1.55rem;
}

.safety-note p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.safety-note strong {
  display: block;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.86rem;
  line-height: 1.55;
}

.js .reveal {
  opacity: 0;
  translate: 0 28px;
}

.js .reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  transition:
    opacity 700ms var(--ease-out),
    translate 700ms var(--ease-out);
}

@media (prefers-reduced-motion: no-preference) {
  [data-motion="hero-copy"] {
    animation: desktop-hero-copy-opacity 2s linear both, desktop-hero-copy-translate 2s linear both;
  }

  [data-motion="sound-field"] {
    animation: desktop-field-opacity 2s linear both, desktop-field-translate 2s linear both, desktop-field-scale 2s linear both;
  }

  [data-motion="hero-phone"] {
    animation: desktop-phone-opacity 2s linear both, desktop-phone-translate 2s linear both, desktop-phone-rotate 2s linear both;
  }
}

@keyframes desktop-hero-copy-opacity {
  0% { opacity: 0; animation-timing-function: ease-out; }
  29%, 100% { opacity: 1; }
}

@keyframes desktop-hero-copy-translate {
  0% { translate: 0 22px; animation-timing-function: ease-out; }
  29%, 100% { translate: 0 0; }
}

@keyframes desktop-field-opacity {
  0%, 4% { opacity: 0; }
  4% { animation-timing-function: ease-out; }
  46%, 100% { opacity: 0.92; }
}

@keyframes desktop-field-translate {
  0%, 4% { translate: 0 18px; }
  4% { animation-timing-function: ease-out; }
  46%, 100% { translate: 0 0; }
}

@keyframes desktop-field-scale {
  0%, 4% { scale: 0.96; }
  4% { animation-timing-function: ease-out; }
  46%, 100% { scale: 1; }
}

@keyframes desktop-phone-opacity {
  0%, 9% { opacity: 0; }
  9% { animation-timing-function: ease-out; }
  52.5%, 100% { opacity: 1; }
}

@keyframes desktop-phone-translate {
  0%, 9% { translate: 0 46px; }
  9% { animation-timing-function: ease-out; }
  52.5%, 100% { translate: 0 0; }
}

@keyframes desktop-phone-rotate {
  0%, 9% { rotate: -0.038rad; }
  9% { animation-timing-function: ease-out; }
  52.5%, 100% { rotate: 0rad; }
}

@keyframes mobile-title-opacity {
  0% { opacity: 0; animation-timing-function: ease-out; }
  24%, 100% { opacity: 1; }
}

@keyframes mobile-title-translate {
  0% { translate: 0 18px; animation-timing-function: ease-out; }
  24%, 100% { translate: 0 0; }
}

@keyframes mobile-summary-opacity {
  0%, 9% { opacity: 0; }
  9% { animation-timing-function: ease-out; }
  35%, 100% { opacity: 1; }
}

@keyframes mobile-summary-translate {
  0%, 9% { translate: 0 14px; }
  9% { animation-timing-function: ease-out; }
  35%, 100% { translate: 0 0; }
}

@keyframes mobile-field-opacity {
  0%, 7.5% { opacity: 0; }
  7.5% { animation-timing-function: ease-out; }
  47.5%, 100% { opacity: 0.9; }
}

@keyframes mobile-field-scale {
  0%, 7.5% { scale: 0.95; }
  7.5% { animation-timing-function: ease-out; }
  47.5%, 100% { scale: 1; }
}

@keyframes mobile-phone-opacity {
  0%, 14% { opacity: 0; }
  14% { animation-timing-function: ease-out; }
  56%, 100% { opacity: 1; }
}

@keyframes mobile-phone-translate {
  0%, 14% { translate: 0 38px; }
  14% { animation-timing-function: ease-out; }
  56%, 100% { translate: 0 0; }
}

@keyframes mobile-phone-rotate {
  0%, 14% { rotate: 0.009rad; }
  14% { animation-timing-function: ease-out; }
  56%, 100% { rotate: 0.052rad; }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 15px;
    font-size: 0.82rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
    gap: 42px;
  }

  .shield-heading {
    gap: 46px;
  }

  .policy-layout {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 48px;
  }

  .support-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 24px;
    left: 24px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border-neutral);
    border-radius: var(--radius-card);
    background: var(--surface);
    box-shadow: 0 30px 80px rgb(0 0 0 / 0.48);
  }

  .js .site-nav {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px) scale(0.985);
    transition:
      opacity 180ms var(--ease-state),
      transform 180ms var(--ease-state),
      visibility 180ms;
  }

  .js .site-nav[data-open="true"] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .site-nav a,
  .site-nav .nav-release {
    justify-content: flex-start;
    min-height: 48px;
    padding-inline: 14px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--muted);
  }

  .site-nav a:hover {
    background: var(--surface-raised);
  }

  .language-control {
    min-height: 52px;
    padding-inline: 14px;
  }

  .language-select {
    width: 100%;
    min-height: 46px;
  }

  .no-js .site-header {
    height: auto;
  }

  .no-js .nav-shell {
    flex-wrap: wrap;
    padding-block: 10px;
  }

  .no-js .site-nav {
    position: static;
    flex-basis: 100%;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1.14fr);
  }

  .personal-grid,
  .privacy-preview-grid {
    gap: 68px;
  }

  .shield-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .shield-note {
    max-width: 650px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-index {
    position: static;
  }

  .policy-index nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

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

  .quick-help,
  .safety-note {
    max-width: none;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .shell {
    width: min(calc(100% - 48px), var(--shell));
  }

  .nav-shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .brand-name {
    font-size: 0.8125rem;
    letter-spacing: 0.2em;
  }

  .hero {
    min-height: 950px;
  }

  .hero-layout {
    display: block;
    min-height: 0;
    padding-block: 39px 70px;
  }

  .hero-copy {
    max-width: none;
  }

  .eyebrow {
    margin-bottom: 28px;
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 11vw, 3.2rem);
    line-height: 1.08;
  }

  .hero-summary {
    margin-top: 25px;
    font-size: 1.04rem;
    line-height: 1.55;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

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

  .hero-visual {
    height: 460px;
    margin-top: 36px;
    border-radius: 28px;
  }

  .hero-device {
    right: 8%;
    bottom: -18%;
    width: min(48%, 228px);
  }

  .sound-field {
    top: 15%;
    left: 4%;
    width: 92%;
  }

  .scroll-note {
    bottom: 22px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    padding: 20px 0;
  }

  .trust-grid > div + div {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .section {
    padding-block: 90px;
  }

  .section-copy h2,
  .responsible-section h2,
  .availability-panel h2 {
    margin-top: 18px;
    font-size: clamp(2.5rem, 10.6vw, 3.15rem);
  }

  .section-summary {
    margin-top: 22px;
    font-size: 0.98rem;
  }

  .personal-grid,
  .library-grid,
  .privacy-preview-grid,
  .responsible-grid {
    grid-template-columns: 1fr;
  }

  .personal-grid,
  .library-grid,
  .privacy-preview-grid {
    gap: 58px;
  }

  .match-list {
    margin-top: 42px;
  }

  .phone-stage,
  .library-visual,
  .account-stage {
    min-height: 610px;
  }

  .feature-phone,
  .library-phone,
  .account-phone {
    width: min(72%, 305px);
  }

  .feature-phone,
  .account-phone {
    right: 8%;
  }

  .library-copy {
    grid-row: 1;
  }

  .library-phone {
    left: 14%;
  }

  .ambient-card {
    width: 150px;
    padding: 12px 14px;
  }

  .feature-facts > div,
  .privacy-facts > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .shield-gallery {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .shield-card {
    min-height: 680px;
  }

  .shield-card-copy {
    padding: 28px 26px 0;
  }

  .shield-card h3 {
    font-size: 2.25rem;
  }

  .shield-phone {
    right: 9%;
    width: min(48%, 260px);
  }

  .responsible-grid {
    gap: 42px;
  }

  .availability-panel,
  .utility-return {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
  }

  .availability-panel .button,
  .utility-return .button {
    width: 100%;
  }

  .availability-panel .button {
    min-width: 0;
    padding-block: 14px;
    line-height: 1.25;
    white-space: normal;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-columns {
    gap: 48px;
  }

  .utility-hero {
    padding-block: 20px 56px;
  }

  .utility-hero h1 {
    margin-top: 22px;
    font-size: clamp(2.5rem, 10.4vw, 3rem);
    line-height: 1.12;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  .utility-hero h1 + p {
    margin-top: 26px;
    font-size: 1.03rem;
  }

  .effective-date {
    margin-top: 34px;
  }

  .summary-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .summary-grid article {
    min-height: 0;
  }

  .policy-section {
    padding-top: 20px;
  }

  .policy-index nav {
    grid-template-columns: 1fr;
  }

  .policy-block {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 16px;
    padding-bottom: 48px;
  }

  .policy-block + .policy-block {
    padding-top: 48px;
  }

  .policy-block h2 {
    font-size: 1.5rem;
  }

  .policy-block p,
  .policy-block li {
    font-size: 0.94rem;
  }

  .support-status {
    margin-top: 34px;
  }

  .support-workspace,
  .faq-section {
    padding-block: 56px 76px;
  }

  .support-form-card,
  .quick-help,
  .safety-note {
    border-radius: 24px;
  }

  .support-form-card {
    padding: 24px 20px;
  }

  .support-form-card h2,
  .quick-help h2,
  .safety-note h2 {
    font-size: 1.65rem;
  }

  .faq-content > h2 {
    font-size: 2.3rem;
  }

  .faq-list summary {
    min-height: 72px;
    padding-left: 18px;
    font-size: 0.94rem;
  }

  .faq-list details p {
    padding-inline: 18px;
  }

  .utility-return-section {
    padding-block: 56px;
  }

  @media (prefers-reduced-motion: no-preference) {
    [data-motion="hero-copy"] {
      animation: none;
    }

    .hero h1 {
      animation: mobile-title-opacity 2s linear both, mobile-title-translate 2s linear both;
    }

    .hero-summary {
      animation: mobile-summary-opacity 2s linear both, mobile-summary-translate 2s linear both;
    }

    [data-motion="sound-field"] {
      animation: mobile-field-opacity 2s linear both, mobile-field-scale 2s linear both;
    }

    [data-motion="hero-phone"] {
      animation: mobile-phone-opacity 2s linear both, mobile-phone-translate 2s linear both, mobile-phone-rotate 2s linear both;
    }
  }
}

@media (max-width: 520px) {
  .site-nav {
    right: 16px;
    left: 16px;
  }

  .hero {
    min-height: 920px;
  }

  .hero-visual {
    height: 430px;
  }

  .phone-stage,
  .library-visual,
  .account-stage {
    min-height: 560px;
  }

  .ambient-card-waves {
    right: -4px;
  }

  .stage-caption {
    bottom: 8px;
  }

  .shield-card {
    min-height: 630px;
  }

  .shield-phone {
    bottom: -17%;
    width: 53%;
  }

  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }

  .support-status a {
    overflow-wrap: anywhere;
  }

  .form-submit {
    width: 100%;
  }
}

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

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

  .js .reveal,
  .js .reveal.is-visible,
  [data-motion] {
    opacity: 1;
    translate: none;
    scale: 1;
    rotate: 0deg;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .site-nav,
  .stage-caption,
  .privacy-badge,
  .ambient-card {
    background: var(--surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
