@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap");

:root {
  --ink: #0c0c0d;
  --muted: #66666f;
  --line: #e9e9ec;
  --soft: #f6f6f7;
  --warm: #f0a329;
  --warm-soft: #fff2d8;
  --shadow: 0 26px 80px rgba(12, 12, 13, .13);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
}

.site-header {
  height: 76px;
  padding: 0 clamp(22px, 4vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  position: relative;
  border-bottom: 1px solid rgba(233,233,236,.72);
}

.brand img { width: 88px; }
.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 42px;
  font-size: 16px;
  font-weight: 800;
  color: #111115;
}
.main-nav a:hover { color: var(--warm); }
.header-actions { display: flex; align-items: center; gap: 12px; }

.btn {
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.hero-actions .btn {
  min-height: 52px;
  padding: 0 28px;
  font-size: 15px;
}
.btn-dark { color: #fff; background: var(--ink); }
.btn-outline { color: var(--ink); background: transparent; border: 1px solid var(--ink); }

.language-menu { position: relative; }
.language-trigger {
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 780;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.language-trigger:hover,
.language-menu.is-open .language-trigger {
  border-color: rgba(12,12,13,.18);
  background: #fafafa;
}
.language-trigger img { width: 17px; height: 17px; }
.language-trigger .language-glyph { width: 18px; height: 18px; }
.language-trigger .chevron { width: 14px; transition: transform .18s ease; }
.language-menu.is-open .chevron,
.language-menu:focus-within .chevron { transform: rotate(180deg); }
.language-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 190px;
  padding: 8px;
  border: 1px solid rgba(12,12,13,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 50px rgba(12,12,13,.12);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 20;
}
.language-menu.is-open .language-popover,
.language-menu:focus-within .language-popover { opacity: 1; pointer-events: auto; transform: translateY(0); }
.language-popover button {
  width: 100%;
  min-height: 44px;
  padding: 8px 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2px;
  text-align: left;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  color: var(--ink);
  transition: background .16s ease;
}
.language-popover button:hover,
.language-popover button[aria-selected="true"] {
  background: #f4f4f5;
  color: var(--ink);
}
.language-popover span { font-weight: 700; }
.language-popover small { grid-column: 1; color: var(--muted); font-size: 12px; font-weight: 450; }

.hero {
  position: relative;
  min-height: 780px;
  padding: 74px 44px 0;
  text-align: center;
  overflow: hidden;
  background: #fff;
}

.hero > :not(.hero-bursts) {
  position: relative;
  z-index: 2;
}

.hero-bursts {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-bursts span {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  opacity: 0;
  filter: blur(22px) saturate(1.2);
  transform: translate3d(-50%, -50%, 0) scale(.12);
  mix-blend-mode: multiply;
  animation: heroBurst 8.8s cubic-bezier(.18,.72,.22,1) infinite;
  will-change: transform, opacity;
}

.hero-bursts span:nth-child(1) {
  left: 20%;
  top: 31%;
  background: radial-gradient(circle, rgba(255, 87, 145, .78) 0 16%, rgba(255, 87, 145, .40) 44%, rgba(255, 87, 145, .04) 74%);
  animation-delay: .2s;
}

.hero-bursts span:nth-child(2) {
  left: 76%;
  top: 27%;
  background: radial-gradient(circle, rgba(79, 178, 255, .74) 0 16%, rgba(79, 178, 255, .36) 46%, rgba(79, 178, 255, .04) 74%);
  animation-delay: 2.1s;
  animation-duration: 10.6s;
}

.hero-bursts span:nth-child(3) {
  left: 67%;
  top: 64%;
  background: radial-gradient(circle, rgba(119, 239, 145, .78) 0 16%, rgba(119, 239, 145, .38) 46%, rgba(119, 239, 145, .04) 74%);
  animation-delay: 4.4s;
  animation-duration: 10.9s;
}

.hero-bursts span:nth-child(4) {
  left: 30%;
  top: 66%;
  background: radial-gradient(circle, rgba(143, 103, 255, .72) 0 16%, rgba(143, 103, 255, .34) 46%, rgba(143, 103, 255, .04) 74%);
  animation-delay: 6.5s;
  animation-duration: 11.2s;
}

.hero-bursts span:nth-child(5) {
  left: 52%;
  top: 19%;
  background: radial-gradient(circle, rgba(255, 184, 49, .74) 0 16%, rgba(255, 184, 49, .34) 46%, rgba(255, 184, 49, .04) 74%);
  animation-delay: 8.2s;
  animation-duration: 10.8s;
}

@keyframes heroBurst {
  0%, 12% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(.1);
  }
  34% {
    opacity: .64;
    transform: translate3d(-50%, -50%, 0) scale(8.4);
  }
  72%, 100% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(15.5);
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: #777780;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 820;
}

.hero h1 {
  max-width: 780px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.9vw, 104px);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 500;
}

.hero-lead {
  max-width: 560px;
  margin: 20px auto 0;
  color: #303036;
  font-size: 17px;
  line-height: 1.55;
}

.hero-actions { margin-top: 26px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hero-actions .btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease, color .22s ease;
}
.hero-actions .btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(120deg, transparent 0 28%, rgba(255,255,255,.46) 42%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform .58s cubic-bezier(.2,.8,.2,1), opacity .22s ease;
}
.hero-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(12,12,13,.16);
}
.hero-actions .btn:hover::before {
  opacity: 1;
  transform: translateX(120%);
}
.hero-actions .btn-dark:hover {
  background-color: #050506;
  color: var(--warm);
  box-shadow: 0 20px 50px rgba(12,12,13,.24);
}
.hero-actions .btn-outline:hover {
  color: #fff;
  background: #101012;
  border-color: #101012;
}
.hero-actions .btn:active {
  transform: translateY(-1px) scale(.99);
}

.hero-orbit {
  position: relative;
  height: 430px;
  max-width: 1050px;
  margin: 34px auto 0;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  border: 1px solid rgba(12,12,13,.08);
  border-radius: 50% 50% 0 0;
  border-bottom: 0;
}
.hero-orbit::before { width: 780px; height: 390px; }
.hero-orbit::after { width: 560px; height: 280px; bottom: 6px; }

.phone-card {
  position: absolute;
  left: 50%;
  bottom: -140px;
  width: 338px;
  padding: 0;
  transform: translateX(-50%);
  background: #fff;
  border: 12px solid #151518;
  border-radius: 42px;
  box-shadow: var(--shadow);
  z-index: 4;
  text-align: left;
  overflow: hidden;
}
.phone-app-header {
  height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.phone-app-header img { width: 59px; height: 30px; object-fit: contain; }
.phone-app-header span,
.phone-title-row span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}
.phone-screen { padding: 14px 18px 18px; background: #fff; }
.phone-title-row {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-title-row strong { font-size: 24px; font-weight: 800; }
.phone-discover-card {
  position: relative;
  height: 316px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 28px;
  background: #f5f5f7;
}
.phone-profile-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.phone-discover-card::after {
  display: none;
}
.phone-name-row { display: flex; align-items: center; gap: 8px; }
.phone-name-row h2 { margin: 0; font-size: 26px; letter-spacing: -.008em; }
.phone-name-row img { width: 20px; height: 20px; }
.phone-actions { display: flex; justify-content: space-between; padding: 18px 23px 2px; }
.phone-actions span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--cardStrokeSoft);
  box-shadow: 0 8px 18px rgba(12,12,13,.06);
}
.phone-actions img,
.phone-app-header img[aria-hidden],
.phone-title-row img {
  width: 22px;
  height: 22px;
}
.phone-actions span:nth-child(2) { color: #101012; }
.phone-actions span:nth-child(3) { color: #101012; }

.float-card {
  --float-x: 0px;
  --float-y: 0px;
  --float-r: 0deg;
  position: absolute;
  z-index: 3;
  border-radius: 40px;
  corner-shape: squircle;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translate3d(var(--float-x), var(--float-y), 0) rotate(var(--float-r));
  transition: transform .75s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease;
  will-change: transform;
}
.hero-orbit:hover .float-card {
  box-shadow: 0 30px 90px rgba(12,12,13,.16);
}
.float-video { left: 11%; top: 40px; width: 165px; height: 150px; --float-depth: 18; --float-tilt: -2.2; }
.float-video img, .float-photo img { width: 100%; height: 100%; object-fit: cover; }
.float-video span {
  position: absolute;
  left: 12px;
  top: 10px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  font-weight: 850;
}
.float-score {
  left: 0;
  top: 238px;
  width: 225px;
  min-height: 108px;
  padding: 18px;
  background: #ffe27d;
  text-align: left;
  --float-depth: 12;
  --float-tilt: 1.6;
}
.float-score small { display: block; color: #6f5a00; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; font-size: 10px; }
.float-score strong { display: block; margin-top: 8px; font-size: 42px; font-weight: 800;  line-height: 1; letter-spacing: -.02em; }
.float-score span { display: block; margin-top: 6px; font-size: 12px; font-weight: 700; }
.float-trial {
  right: 10%;
  top: 48px;
  width: 230px;
  padding: 20px;
  background: #b8f4be;
  text-align: left;
  --float-depth: 16;
  --float-tilt: 2.1;
}
.float-trial strong { display: block; font-size: 50px; font-weight: 800; line-height: .9; letter-spacing: -.02em; }
.float-trial span { display: block; margin-top: 8px; max-width: 140px; font-weight: 780; }
.float-photo { right: 0; top: 238px; width: 210px; height: 142px; --float-depth: 22; --float-tilt: -1.8; }
.float-photo span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #151518;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bursts {
    display: none;
  }

  .float-card {
    transform: none;
    transition: none;
  }
}

.signal-strip {
  position: relative;
  z-index: 5;
  margin: 44px -44px 0;
  padding: 30px 44px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(12,12,13,.05);
  background: #fff;
}
.signal-strip span {
  min-height: 76px;
  padding: 0 clamp(18px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(12,12,13,.08);
}
.signal-strip span:last-child { border-right: 0; }
.signal-strip strong {
  display: block;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: .95;
  letter-spacing: -.012em;
  font-weight: 760;
  font-variation-settings: "opsz" 28;
}
.signal-strip small {
  display: block;
  margin-top: 8px;
  color: #6c6c74;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: .01em;
  font-weight: 650;
}

.section { padding: 108px 62px; }
.section-heading { max-width: 820px; margin: 0 auto 44px; text-align: center; }
.section h2,
.split-feature h2,
.premium-section h2,
.download-section h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 74px);
  line-height: 1.06;
  letter-spacing: -.018em;
  font-weight: 820;
}
.section-heading p:not(.eyebrow),
.split-copy p,
.premium-panel p,
.download-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.bento-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}
.bento-card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border-radius: 34px;
  background: #f7f7f8;
  overflow: hidden;
}
.bento-profile {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(250px, .82fr) minmax(360px, 1fr);
  align-items: center;
  grid-row: span 2;
  gap: clamp(26px, 4vw, 54px);
  background:
    radial-gradient(circle at 84% 18%, rgba(184,244,190,.5), transparent 22%),
    radial-gradient(circle at 12% 88%, rgba(240,163,41,.22), transparent 26%),
    linear-gradient(135deg, #f7f7f8, #fff);
}
.bento-profile::before {
  content: "";
  position: absolute;
  right: -80px;
  top: 70px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(12,12,13,.08);
  box-shadow: inset 0 0 0 44px rgba(255,255,255,.42);
}
.bento-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 24px 0 24px 6px;
  max-width: 390px;
}
.bento-copy .eyebrow { margin-bottom: 18px; }
.bento-card h3 { margin: 0 0 12px; font-size: clamp(28px, 2.6vw, 42px); line-height: 1.08; letter-spacing: -.012em; }
.bento-profile .bento-copy h3 { font-size: clamp(34px, 3.4vw, 56px); }
.bento-card p { margin: 0; color: var(--muted); line-height: 1.62; font-size: 16px; }
.profile-preview {
  position: relative;
  min-height: 548px;
  padding: 18px 18px 0 0;
}
.profile-preview > img {
  width: 100%;
  height: 548px;
  border-radius: 38px;
  object-fit: cover;
  box-shadow: 0 34px 90px rgba(12,12,13,.16);
}
.profile-context-stack {
  position: absolute;
  top: -44px;
  left: -90px;
  width: min(220px, 58%);
  display: grid;
  gap: 10px;
  z-index: 3;
}
.profile-context-stack span {
  min-height: 58px;
  padding: 11px 14px;
  display: grid;
  align-content: center;
  border-radius: 40px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 46px rgba(12,12,13,.13);
  backdrop-filter: blur(16px);
  corner-shape: squircle;
}
.profile-context-stack span:nth-child(2) { margin-left: 24px; }
.profile-context-stack span:nth-child(3) { margin-left: 8px; background: rgba(16,16,18,.92); color: #fff; }
.profile-context-stack small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.profile-context-stack span:nth-child(3) small { color: rgba(255,255,255,.58); }
.profile-context-stack strong { margin-top: 4px; font-size: 15px; font-weight: 920; }
.profile-sheet {
  position: absolute;
  left: 18px;
  right: 0;
  bottom: -80px;
  padding: 22px;
  border-radius: 30px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 28px 74px rgba(12,12,13,.17);
  backdrop-filter: blur(18px);
}
.profile-sheet strong { display: block; font-size: 26px; letter-spacing: -.008em; }
.profile-sheet span { display: block; margin-top: 6px; color: var(--muted); font-weight: 750; }
.sheet-tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.sheet-tags em {
  padding: 8px 11px;
  border-radius: 999px;
  background: #f1f1f3;
  font-style: normal;
  font-size: 12px;
  font-weight: 850;
}
.bento-mini-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.icon-dot {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,.32), transparent 24%),
    #101012;
  color: #fff;
  box-shadow: 0 16px 34px rgba(16,16,18,.16), inset 0 0 0 1px rgba(255,255,255,.08);
}
.bento-mini-head .icon-dot { margin-bottom: 0; }
.asset-icon {
  display: block;
  object-fit: contain;
}
.icon-dot .asset-icon {
  width: 36px;
  height: 36px;
  filter: invert(1);
}
.icon-interest {
  color: #fff;
}
.interest-mark {
  position: relative;
  width: 38px;
  height: 28px;
  display: block;
}
.interest-mark::before,
.interest-mark::after {
  content: "";
  position: absolute;
  height: 2px;
  background: rgba(255,255,255,.55);
  transform-origin: left center;
}
.interest-mark::before {
  left: 11px;
  top: 11px;
  width: 17px;
  transform: rotate(18deg);
}
.interest-mark::after {
  left: 12px;
  top: 19px;
  width: 18px;
  transform: rotate(-16deg);
}
.interest-mark i {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
}
.interest-mark i:nth-child(1) { left: 0; top: 7px; }
.interest-mark i:nth-child(2) { right: 0; top: 0; background: #b8f4be; }
.interest-mark i:nth-child(3) { right: 2px; bottom: 0; background: #ffe27d; }
.icon-language {
  color: #fff;
}
.icon-language .asset-icon { width: 38px; height: 38px; }
.language-mark {
  position: relative;
  width: 38px;
  height: 34px;
  display: block;
}
.language-mark strong,
.language-mark em {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-family: Inter, system-ui, sans-serif;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}
.language-mark strong {
  left: 0;
  top: 2px;
  width: 25px;
  height: 25px;
  background: #fff;
  color: #101012;
  font-size: 18px;
}
.language-mark em {
  right: 0;
  bottom: 0;
  width: 23px;
  height: 23px;
  background: #b8f4be;
  color: #101012;
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
}
.language-mark::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 15px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  transform: rotate(-24deg);
}
.bento-interest {
  min-height: 296px;
  background:
    radial-gradient(circle at 88% 92%, rgba(255,226,125,.48), transparent 30%),
    linear-gradient(135deg, #fffdf7, #f8f8f9);
}
.interest-map {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 80px;
  min-height: 142px;
}
.interest-map i {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12,12,13,.18), transparent);
  transform-origin: left center;
}
.interest-map i:nth-of-type(1) { left: 70px; right: 74px; top: 72px; transform: rotate(-9deg); }
.interest-map i:nth-of-type(2) { left: 98px; right: 34px; top: 92px; transform: rotate(12deg); }
.interest-node {
  position: absolute;
  padding: 12px 15px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(12,12,13,.08);
  box-shadow: 0 14px 36px rgba(12,12,13,.09);
  font-size: 13px;
  font-weight: 850;
  z-index: 2;
}
.node-primary { left: 4px; top: 48px; background: #101012; color: #fff; }
.node-soft { left: 34%; top: 8px; }
.node-dark { right: 4px; top: 40px; background: #fff; }
.node-warm { left: 22%; bottom: 2px; background: #fff1cc; }
.node-line { right: 10%; bottom: 0; }
.bento-languages {
  min-height: 390px;
  background:
    radial-gradient(circle at 88% 16%, rgba(184,244,190,.58), transparent 26%),
    linear-gradient(145deg, #f8faf9, #f4f5f7);
}
.locale-orbit {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 32px;
  min-height: 214px;
  padding: 16px;
  display: grid;
  grid-template-columns: 146px 1fr;
  grid-template-rows: 1fr auto;
  gap: 12px;
  border-radius: 32px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(12,12,13,.06);
  box-shadow: 0 24px 70px rgba(12,12,13,.075);
  overflow: hidden;
  backdrop-filter: blur(18px);
}
.locale-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,12,13,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12,12,13,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 72% 42%, #000 0 46%, transparent 78%);
  pointer-events: none;
}
.locale-orbit::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -38px;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: rgba(184,244,190,.52);
  filter: blur(4px);
  pointer-events: none;
}
.locale-showcase-head {
  position: relative;
  z-index: 2;
  grid-row: 1 / 3;
  padding: 18px;
  display: grid;
  align-content: space-between;
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 18%, rgba(184,244,190,.28), transparent 34%),
    #101012;
  color: #fff;
  box-shadow: 0 18px 46px rgba(12,12,13,.14);
}
.locale-showcase-head span {
  max-width: 92px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.25;
}
.locale-showcase-head strong {
  justify-self: start;
  padding: 8px 12px;
  border-radius: 999px;
  background: #b8f4be;
  color: #101012;
  font-size: 13px;
  font-weight: 950;
}
.locale-language-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  align-self: stretch;
}
.locale-language-grid span {
  min-height: 58px;
  padding: 11px 12px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(12,12,13,.055);
}
.locale-language-grid span:nth-child(5) { background: #fff4d6; }
.locale-language-grid span:nth-child(6) { background: #ddf9e1; }
.locale-language-grid strong {
  font-size: 16px;
  line-height: 1;
  font-weight: 950;
}
.locale-language-grid small {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 760;
}
.locale-caption {
  position: relative;
  z-index: 2;
  grid-column: 2;
  justify-self: start;
  padding: 0 2px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 820;
}

.split-feature {
  margin: 0;
  padding: clamp(84px, 9vw, 132px) clamp(22px, 6vw, 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255,223,135,.32), transparent 24%),
    linear-gradient(180deg, #f8f8f9, #fff);
}
.split-art { position: relative; }
.split-art::before {
  content: "";
  position: absolute;
  inset: 34px -24px -28px 34px;
  border-radius: 38px;
  background: #101012;
}
.split-art img {
  position: relative;
  width: 100%;
  height: clamp(470px, 42vw, 620px);
  object-fit: cover;
  border-radius: 38px;
  box-shadow: var(--shadow);
}
.split-card {
  position: absolute;
  z-index: 2;
  min-width: 212px;
  min-height: 82px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 48px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 24px 70px rgba(12,12,13,.16);
  backdrop-filter: blur(18px);
  corner-shape: squircle;
}
.split-card i {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 36px;
  background: #101012;
  color: #fff;
  font-style: normal;
  corner-shape: squircle;
}
.split-card i .asset-icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
}
.split-card-top { left: -20px; top: 42px; }
.split-card-bottom { right: 28px; bottom: 18px; background: rgb(184 244 190); }
.split-card-bottom i { background: #101012; color: #b8f4be; }
.split-card strong { display: block; font-size: 25px; line-height: 1; letter-spacing: -.012em; }
.split-card span { display: block; margin-top: 6px; color: var(--muted); font-weight: 780; font-size: 13px; }
.split-copy { max-width: 620px; }

.premium-section {
  padding: 0;
  background: #050505;
  color: #fff;
}
.premium-panel {
  min-height: 620px;
  padding: clamp(74px, 8vw, 124px) clamp(28px, 6vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
  border-radius: 0;
  background:
    radial-gradient(circle at 80% 22%, rgba(240,163,41,.28), transparent 24%),
    radial-gradient(circle at 18% 92%, rgba(255,255,255,.12), transparent 26%),
    #050505;
  color: #fff;
}
.premium-copy { max-width: 720px; }
.premium-panel .eyebrow { color: #ffce7f; font-size: 14px; }
.premium-panel p { color: rgba(255,255,255,.72); }
.premium-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(220px, .75fr);
  align-items: center;
  gap: 22px;
  padding: 26px 0;
}
.premium-radar {
  position: relative;
  z-index: 2;
  width: min(380px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.16) 0 33%, transparent 34%),
    repeating-radial-gradient(circle, rgba(255,255,255,.12) 0 1px, transparent 1px 58px);
}
.radar-core {
  position: absolute;
  inset: 50%;
  width: 148px;
  height: 148px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: #fff;
  color: #101012;
  box-shadow: 0 34px 90px rgba(0,0,0,.38);
}
.radar-core strong { font-size: 50px; line-height: .9; letter-spacing: -.02em; }
.radar-core span { margin-top: 8px; color: var(--muted); font-weight: 850; font-size: 12px; }
.radar-node {
  position: absolute;
  min-height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #101012;
  box-shadow: 0 22px 60px rgba(0,0,0,.26);
  font-weight: 900;
  white-space: nowrap;
}
.node-a { left: -4px; top: 22%; }
.node-b { right: -10px; top: 42%; background: #b8f4be; }
.node-c { left: 18%; bottom: 8%; background: #fff2d8; }
.premium-benefit-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}
.premium-benefit-list div {
  min-height: 66px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 40px;
  corner-shape: squircle;
  background: rgba(255,255,255,.1);
  color: #fff;
}
.premium-benefit-list span { color: #ffce7f; font-weight: 950; }
.premium-benefit-list strong { font-size: 18px; }

.safety-section {
  display: grid;
  grid-template-columns: minmax(300px, .74fr) 1fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
  background:
    radial-gradient(circle at 92% 8%, rgba(184,244,190,.54), transparent 24%),
    #f7f7f8;
}
.safety-heading { position: sticky; top: 92px; }
.safety-heading h2 { margin-top: 0; }
.safety-heading h2 span {
  color: #12805c;
  background: linear-gradient(90deg, #12805c 0%, #12a778 46%, #0f6f94 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.safety-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; line-height: 1.58; }
.safety-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.safety-grid article {
  min-height: 150px;
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  border-radius: 90px;
  corner-shape: squircle;
  background: #fff;
  border: 1px solid rgba(12,12,13,.06);
  box-shadow: 0 18px 54px rgba(12,12,13,.06);
}
.safety-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,.28), transparent 26%),
    #101012;
  color: #fff;
  box-shadow: 0 16px 36px rgba(12,12,13,.12), inset 0 0 0 1px rgba(255,255,255,.08);
}
.safety-icon .asset-icon {
  width: 30px;
  height: 30px;
  filter: invert(1);
}
.safety-media-icon .asset-icon {
  width: 31px;
  height: 31px;
}
.safety-media-icon {
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,.28), transparent 26%),
    #101012;
}
.safety-grid h3 { margin: 0 0 10px; font-size: 24px; letter-spacing: -.006em; }
.safety-grid p { margin: 0; color: var(--muted); line-height: 1.55; }

.download-section { padding: 120px 62px; text-align: center; }
.download-section p:not(.eyebrow) { margin: 16px auto 0; }
.store-row { margin-top: 30px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.store-badge {
  min-width: 190px;
  min-height: 62px;
  padding: 9px 18px;
  border-radius: 36px;
  corner-shape: squircle;
  background: #050505;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  box-shadow: 0 16px 34px rgba(12,12,13,.18);
}
.store-badge img { width: 30px; height: 30px; }
.store-badge small { display: block; font-size: 11px; line-height: 1; opacity: .8; }
.store-badge strong { display: block; margin-top: 2px; font-size: 18px; line-height: 1; }

.site-footer {
  position: relative;
  padding: clamp(48px, 6vw, 76px) clamp(22px, 5vw, 72px) clamp(28px, 4vw, 42px);
  display: grid;
  gap: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 14%, rgba(184,244,190,.12), transparent 24%),
    #070708;
  color: #fff;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 18px clamp(18px, 4vw, 48px) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}
.footer-main,
.footer-bottom {
  position: relative;
  z-index: 1;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 280px);
  align-items: start;
  gap: clamp(34px, 7vw, 110px);
}
.footer-brand { max-width: 620px; }
.footer-side {
  width: min(280px, 100%);
  justify-self: end;
}
.site-footer img {
  width: 104px;
}
.footer-brand h2 {
  max-width: 360px;
  margin: 24px 0 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -.012em;
}
.site-footer p {
  max-width: 440px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 16px;
  line-height: 1.58;
}
.footer-meta {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}
.footer-meta span {
  min-height: 34px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 820;
}
.footer-meta span:first-child {
  background: #fff;
  color: #101012;
}
.footer-domain {
  min-height: 54px;
  padding: 0 14px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 999px;
  background: #fff;
  color: #fff;
  box-shadow: 0 14px 38px rgba(0,0,0,.24);
}
.footer-socials {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  color: #fff;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.footer-socials a:hover {
  background: #fff;
  border: 1px solid #fff;
  color: #101012;
}
.footer-socials a:hover img {
  filter: none;
}
.footer-socials img {
  width: 30px;
  height: 30px;
  filter: invert(1);
}
.footer-domain span {
  color: #101012;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.018em;
}
.footer-domain img {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  filter: none;
  padding: 4px;
  border-radius: 50%;
  background: #101012;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.footer-bottom > span {
  color: rgba(255,255,255,.46);
  font-weight: 780;
}
.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.4vw, 30px);
  flex-wrap: wrap;
  font-weight: 820;
}
.site-footer a {
  color: rgba(255,255,255,.82);
  transition: color .18s ease;
}
.site-footer a:hover { color: #fff; }

.legal-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 76% 0%, rgba(184,244,190,.24), transparent 28%),
    linear-gradient(180deg, #fafafa, #f4f4f5);
}
.legal-shell {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 44px;
}
.legal-header {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
}
.legal-brand img { width: 100px; }
.legal-header nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.legal-header nav a {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #101012;
  font-size: 14px;
  font-weight: 700;
}
.legal-header nav a:hover { background: var(--warm); color: #101012; }
.legal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}
.legal-header .language-trigger {
  min-height: 40px;
  padding: 0 13px;
  background: rgba(255,255,255,.82);
  border-color: rgba(12,12,13,.09);
  box-shadow: 0 12px 36px rgba(12,12,13,.055);
}
.legal-header .language-popover {
  right: 0;
  left: auto;
}
.legal-hero {
  margin-top: 28px;
  padding: clamp(34px, 6vw, 56px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 94% 10%, rgba(184,244,190,.5), transparent 24%),
    #fff;
  box-shadow: 0 24px 80px rgba(12,12,13,.08);
}
.legal-hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 500;
}
.legal-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px 0 0;
  color: #303036;
  font-size: 18px;
  line-height: 1.58;
}
.legal-meta {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.legal-meta span,
.legal-primary-link {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  background: #101012;
  color: #fff;
  font-size: 13px;
  font-weight: 820;
}
.legal-meta span:nth-child(2) {
  background: #f4f4f5;
  color: #303036;
}
.legal-meta a,
.legal-card a { text-decoration: underline; text-underline-offset: 3px; }
.legal-card {
  margin-top: 14px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(12,12,13,.065);
  box-shadow: 0 16px 50px rgba(12,12,13,.045);
}
.legal-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.14;
  letter-spacing: -.014em;
}
.legal-card p,
.legal-card li {
  color: #4f4f57;
  font-size: 16px;
  line-height: 1.72;
}
.legal-card p { margin: 0; }
.legal-card ul,
.legal-card ol {
  margin: 0;
  padding-left: 22px;
}
.legal-card li + li { margin-top: 8px; }
.legal-contact-card {
  background:
    radial-gradient(circle at 88% 18%, rgba(255,226,125,.32), transparent 28%),
    #fff;
}
.legal-primary-link {
  width: fit-content;
  margin-top: 20px;
  text-decoration: none !important;
}
.legal-link-list {
  padding-left: 0 !important;
  list-style: none;
}
.legal-link-list li + li { margin-top: 10px; }
.legal-link-list a {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f4f4f5;
  text-decoration: none;
  font-weight: 800;
}
.legal-footer {
  margin-top: 22px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #777780;
  font-size: 13px;
  font-weight: 760;
}
.legal-footer a { color: #101012; }

@media (max-width: 1100px) {
  .page-shell { width: 100%; margin: 0; }
  .main-nav { display: none; }
  .hero { padding: 54px 24px 0; }
  .hero-orbit { height: 540px; max-width: 720px; }
  .float-video { left: 0; }
  .float-score { left: 2%; top: 250px; }
  .float-trial { right: 2%; }
  .float-photo { right: 0; top: 284px; }
  .signal-strip { margin: 34px -24px 0; padding: 28px 24px; grid-template-columns: repeat(2, 1fr); }
  .bento-grid, .bento-profile, .split-feature, .premium-panel, .safety-grid { grid-template-columns: 1fr; }
  .safety-section { grid-template-columns: 1fr; }
  .safety-heading { position: static; }
  .bento-profile { grid-row: auto; }
  .profile-preview { min-height: auto; }
  .footer-main { grid-template-columns: 1fr; align-items: start; }
  .footer-side { width: min(420px, 100%); justify-self: start; }
  .footer-domain { width: 100%; }
  .footer-socials { justify-content: center; }
}

@media (max-width: 720px) {
  body { background: #fff; }
  .page-shell { width: 100%; margin: 0; }
  .site-header { height: 70px; padding: 0 16px; }
  .brand img { width: 68px; }
  .header-actions > .btn { display: none; }
  .language-trigger { width: 80px; padding: 0; justify-content: center; }
  .language-trigger span { display: none; }
  .language-popover { right: -0; width: min(160px, calc(100vw - 30px)); }
  .hero { min-height: auto; padding: 38px 18px 0; }
  .eyebrow { font-size: 10px; }
  .hero h1 { font-size: clamp(42px, 12vw, 54px); line-height: 1; letter-spacing: -.045em; }
  .hero-lead { font-size: 16px; line-height: 1.48; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: min(280px, 100%); }
  .hero-orbit { height: 480px; margin-top: 24px; }
  .hero-orbit::before { width: 430px; height: 220px; bottom: 4px; }
  .hero-orbit::after { display: none; }
  .phone-card { width: 282px; bottom: 8px; border-width: 10px; border-radius: 36px; }
  .phone-app-header { height: 50px; padding: 0 14px; }
  .phone-screen { padding: 12px 14px 14px; }
  .phone-title-row strong { font-size: 21px; }
  .phone-discover-card { height: 250px; margin-top: 10px; border-radius: 24px; }
  .phone-overlay { left: 16px; right: 16px; bottom: 16px; }
  .phone-name-row h2 { font-size: 22px; }
  .phone-overlay p { font-size: 12px; }
  .phone-actions { padding: 14px 18px 0; }
  .phone-actions span { width: 46px; height: 46px; }
  .float-video { width: 124px; height: 112px; left: -8px; top: 110px; border-radius: 16px; }
  .float-score { width: 150px; min-height: 82px; left: -10px; top: 272px; padding: 12px; border-radius: 16px; }
  .float-score strong { font-size: 28px; }
  .float-score span { font-size: 10px; }
  .float-trial { width: 138px; right: -8px; top: 92px; padding: 13px; border-radius: 16px; }
  .float-trial strong { font-size: 32px; }
  .float-trial span { font-size: 11px; }
  .float-photo { width: 130px; height: 96px; right: -10px; top: 286px; border-radius: 16px; }
  .signal-strip { grid-template-columns: 1fr 1fr; gap: 0; }
  .signal-strip span { min-height: 74px; padding: 12px 8px; }
  .signal-strip span:nth-child(2n) { border-right: 0; }
  .signal-strip span:nth-child(-n+2) { border-bottom: 1px solid rgba(12,12,13,.08); }
  .signal-strip strong { font-size: 28px; letter-spacing: -.012em; }
  .signal-strip small { font-size: 11px; margin-top: 6px; }
  .section { padding: 72px 18px; }
  .section h2, .split-feature h2, .premium-section h2, .download-section h2 { font-size: clamp(34px, 10vw, 44px); line-height: 1.08; letter-spacing: -.012em; }
  .bento-grid { grid-template-rows: auto; }
  .bento-card { padding: 24px; border-radius: 26px; min-height: 320px; }
  .bento-profile { gap: 22px; min-height: 0; }
  .bento-interest { min-height: 380px; }
  .bento-languages { min-height: 460px; }
  .profile-preview { min-height: 360px; padding: 0; }
  .profile-preview > img { height: 450px; border-radius: 24px; }
  .profile-context-stack { display: none; top: -46px; left: 12px; width: min(190px, 62%); gap: 7px; }
  .profile-context-stack span { min-height: 44px; padding: 8px 11px; border-radius: 16px; }
  .profile-context-stack span:nth-child(2) { margin-left: 12px; }
  .profile-context-stack span:nth-child(3) { margin-left: 0; }
  .profile-context-stack small { font-size: 9px; }
  .profile-context-stack strong { font-size: 12px; }
  .profile-sheet { left: 14px; right: 14px; bottom: 14px; padding: 16px; border-radius: 22px; }
  .bento-mini-head { grid-template-columns: 1fr; gap: 14px; }
  .interest-map { left: 20px; right: 20px; bottom: 24px; }
  .interest-node { font-size: 11px; padding: 8px 10px; }
  .locale-orbit { left: 22px; right: 22px; bottom: 24px; min-height: 218px; padding: 12px; grid-template-columns: 112px 1fr; gap: 9px; border-radius: 26px; }
  .locale-showcase-head { padding: 14px; border-radius: 20px; }
  .locale-language-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .locale-language-grid span { min-height: 42px; padding: 8px 9px; border-radius: 15px; }
  .locale-language-grid strong { font-size: 13px; }
  .locale-language-grid small { display: none; }
  .locale-caption { grid-column: 1 / -1; font-size: 10px; justify-self: center; }
  .split-feature { margin: 0; padding: 72px 18px; gap: 26px; }
  .split-art img { height: 330px; border-radius: 22px; }
  .split-art::before { inset: 20px -10px -16px 20px; border-radius: 26px; }
  .split-card { min-width: 176px; min-height: 64px; padding: 10px 12px; border-radius: 20px; gap: 9px; }
  .split-card i { width: 34px; height: 34px; border-radius: 12px; flex-basis: 34px; }
  .split-card i .asset-icon { width: 19px; height: 19px; }
  .split-card strong { font-size: 20px; }
  .split-card span { font-size: 11px; }
  .split-card-top { left: 10px; top: 16px; }
  .split-card-bottom { right: 8px; bottom: -12px; }
  .premium-section { padding: 0; }
  .premium-panel { padding: 64px 18px; border-radius: 0; gap: 0; }
  .premium-visual { min-height: 500px; grid-template-columns: 1fr; padding: 0; gap: 18px; }
  .premium-visual::before { inset: 36px 0 70px 28px; border-radius: 32px; }
  .premium-radar { width: min(310px, 94%); }
  .radar-core { width: 118px; height: 118px; }
  .radar-core strong { font-size: 40px; }
  .radar-node { min-height: 38px; padding: 0 12px; font-size: 11px; }
  .premium-benefit-list { width: 100%; }
  .premium-benefit-list div { min-height: 54px; padding: 0 16px; border-radius: 18px; }
  .safety-section { overflow: hidden; }
  .safety-grid article { grid-template-columns: 1fr; gap: 16px; align-items: start; min-height: 0; padding: 22px; border-radius: 60px; }
  .safety-icon { width: 52px; height: 52px; }
  .download-section { padding: 82px 18px; }
  .store-badge { width: min(280px, 100%); justify-content: center; }
  .site-footer { padding: 52px 18px 32px; gap: 28px; }
  .site-footer img { width: 94px; }
  .footer-brand h2 { margin-top: 22px; font-size: 26px; line-height: 1.12; letter-spacing: -.012em; }
  .site-footer p { margin-top: 16px; font-size: 15px; }
  .footer-brand { text-align: center; display: flex; flex-direction: column; align-items: center;}
  .footer-side { justify-self: center; }
  .footer-meta { margin-top: 20px; justify-content: center; }
  .footer-domain { min-height: 54px; padding: 0 14px 0 18px; border-radius: 999px; }
  .footer-domain span { font-size: 22px; letter-spacing: -.018em; }
  .footer-domain img { width: 22px; height: 22px; }
  .footer-socials { justify-content: center; }
  .footer-bottom { align-items: center; flex-direction: column-reverse; gap: 18px; }
  .site-footer nav { justify-content: flex-start; gap: 12px 18px; }
  .legal-shell { width: min(100% - 28px, 860px); padding-top: 14px; }
  .legal-header { min-height: auto; align-items: center; flex-direction: column; gap: 10px; }
  .legal-header nav { position: static; transform: none; justify-content: flex-start; }
  .legal-actions { justify-content: flex-start; margin-left: 0; }
  .legal-header .language-popover { left: 0; right: auto; }
  .legal-header nav a { padding: 0 10px; font-size: 12px; }
  .legal-hero { margin-top: 14px; padding: 28px 22px; border-radius: 28px; }
  .legal-hero h1 { font-size: clamp(34px, 10vw, 46px); letter-spacing: -.036em; }
  .legal-hero p:not(.eyebrow) { font-size: 16px; }
  .legal-card { padding: 22px; border-radius: 24px; }
  .legal-card h2 { font-size: 21px; }
  .legal-card p,
  .legal-card li { font-size: 15px; }
  .legal-footer { align-items: flex-start; flex-direction: column-reverse; }
}
