@font-face {
  font-family: InterVariable;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-variable.woff2") format("woff2");
}

@font-face {
  font-family: InterVariable;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-variable-italic.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --page: #ecebe5;
  --page-2: #f1f0ea;
  --surface: #ffffff;
  --surface-2: #f7f6f1;
  --surface-sunken: #e6e5df;
  --ink: #1a2238;
  --ink-2: #3a4360;
  --ink-3: #6b7388;
  --ink-4: #9298aa;
  --ink-5: #b9bdc9;
  --line: rgba(26, 34, 56, 0.1);
  --line-strong: rgba(26, 34, 56, 0.16);
  --line-soft: rgba(26, 34, 56, 0.06);
  --accent: #3f4fcf;
  --accent-hover: #364399;
  --accent-press: #2c3787;
  --accent-soft: #eceefb;
  --accent-ink: #2a368f;
  --ok: #2f8f5b;
  --ok-soft: #e6f1ea;
  --warn: #a87521;
  --warn-soft: #f5ecd9;
  --err: #b5392f;
  --err-soft: #f5e3e1;
  --info: #2b6cb6;
  --info-soft: #e4eef8;
  --shadow-xs: 0 1px 1px rgba(26, 34, 56, 0.04);
  --shadow-sm: 0 1px 2px rgba(26, 34, 56, 0.04), 0 1px 1px rgba(26, 34, 56, 0.03);
  --shadow-md: 0 4px 14px -6px rgba(26, 34, 56, 0.1), 0 1px 2px rgba(26, 34, 56, 0.04);
  --shadow-lg: 0 24px 48px -20px rgba(26, 34, 56, 0.18), 0 6px 16px -8px rgba(26, 34, 56, 0.08);
  --font-sans: "SF Pro Text", "SF Pro Display", InterVariable, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "SF Pro Display", InterVariable, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "SF Mono", Menlo, ui-monospace, monospace;
}

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

html {
  background: var(--page);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-2);
  background: var(--page);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

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

.sprite {
  display: none;
}

.icon {
  width: 16px;
  height: 16px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.container--wide {
  width: min(1200px, calc(100% - 48px));
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(236, 235, 229, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: background 160ms ease, border-color 160ms ease;
}

.nav.is-scrolled {
  border-bottom-color: var(--line-soft);
  background: rgba(236, 235, 229, 0.9);
}

.nav__inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__brand,
.footer__brand-lk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.nav__brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: #ffffff;
  object-fit: cover;
  box-shadow: var(--shadow-xs), 0 0 0 1px rgba(26, 34, 56, 0.045);
}

.nav__brand .word {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 14px;
}

.nav__link {
  padding: 6px 0;
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 140ms ease;
}

.nav__link:hover {
  color: var(--ink);
}

.nav__cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-picker::after {
  position: absolute;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  color: var(--ink-3);
  content: "";
  pointer-events: none;
  transform: rotate(45deg) translateY(-2px);
}

.language-picker select {
  min-height: 34px;
  max-width: 168px;
  appearance: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 7px 31px 7px 11px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}

.language-picker select:hover {
  border-color: rgba(26, 34, 56, 0.24);
  background: var(--surface);
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--ink);
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.btn--sm {
  min-height: 34px;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 13px;
}

.btn--primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 1px 2px rgba(26, 34, 56, 0.18);
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--primary:active {
  background: var(--accent-press);
}

.btn--download {
  color: #ffffff;
  background: #11151d;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 2px 5px rgba(26, 34, 56, 0.18);
}

.btn--download:hover {
  background: #1a202b;
}

.btn--download:active {
  background: #05070a;
}

.btn.is-disabled,
.btn.is-disabled:hover,
.btn.is-disabled:active {
  color: var(--ink-4);
  background: rgba(26, 34, 56, 0.08);
  border-color: rgba(26, 34, 56, 0.1);
  box-shadow: none;
  cursor: not-allowed;
}

.btn--download .icon {
  fill: currentColor;
  stroke: none;
}

.btn--download-large {
  width: min(100%, 420px);
  min-height: 70px;
  gap: 16px;
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: 0;
}

.btn--download-large .icon {
  width: 32px;
  height: 32px;
}

.btn--ghost {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line-strong);
}

.btn--ghost:hover {
  background: var(--surface-2);
}

.btn--quiet {
  padding-right: 4px;
  padding-left: 4px;
  color: var(--ink-2);
}

.btn--quiet:hover {
  color: var(--ink);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: var(--surface);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
}

.pill--ok {
  color: var(--ok);
  background: var(--ok-soft);
  border-color: rgba(47, 143, 91, 0.28);
}

.pill--ok .dot {
  background: var(--ok);
}

.pill--info {
  color: var(--info);
  background: var(--info-soft);
  border-color: rgba(43, 108, 182, 0.28);
}

.pill--info .dot {
  background: var(--info);
}

.pill--warn {
  color: var(--warn);
  background: var(--warn-soft);
  border-color: rgba(168, 117, 33, 0.28);
}

.pill--warn .dot {
  background: var(--warn);
}

.pill--soft {
  color: var(--accent-ink);
  background: var(--accent-soft);
  border-color: rgba(63, 79, 207, 0.18);
}

.section {
  padding: 104px 0;
}

.section--tight {
  padding: 72px 0;
}

.section--bg-2 {
  background: var(--page-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section__head {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 56px;
}

.section__head--center {
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section__title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.section__lead {
  margin: 0;
  color: var(--ink-3);
  font-size: 19px;
  line-height: 1.55;
  text-wrap: pretty;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 96px;
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(26, 34, 56, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(26, 34, 56, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 75%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__head {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin: 0 auto;
  text-align: center;
}

.hero__brand img {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: #ffffff;
  object-fit: cover;
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(26, 34, 56, 0.05);
}

.hero__h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.hero__sub {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero__body {
  max-width: 580px;
  margin: 0;
  color: var(--ink-3);
  font-size: 18px;
  line-height: 1.6;
  text-wrap: pretty;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 4px;
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 13px;
}

.hero__meta .sep {
  opacity: 0.5;
}

.hero__legal {
  max-width: 540px;
  margin: -8px 0 0;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.45;
}

.hero__platform-gate {
  max-width: 560px;
  margin: -6px 0 0;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.45;
}

.hero__platform-gate.is-blocked {
  color: var(--warn);
}

.hero__platform-gate[hidden] {
  display: none;
}

.hero__legal a {
  color: var(--ink);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.app-shot {
  overflow: hidden;
  margin: 0;
  background: #ffffff;
  border: 1px solid rgba(26, 34, 56, 0.1);
  border-radius: 16px;
  box-shadow: none;
}

.app-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.app-shot--section {
  border-radius: 14px;
  box-shadow: none;
}

.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum" 1;
}

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

.flow--stack {
  grid-template-columns: 1fr;
  gap: 12px;
}

.flow__step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.flow__ico,
.feat-item__ico,
.trust-card__ico {
  display: grid;
  place-items: center;
}

.flow__ico {
  width: 42px;
  height: 42px;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border-radius: 11px;
}

.flow__n {
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.flow__step h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.flow__step p {
  margin: 0;
  color: var(--ink-3);
  font-size: 14.5px;
  line-height: 1.56;
  text-wrap: pretty;
}

.flow__arrow {
  position: absolute;
  top: 64px;
  right: -16px;
  z-index: 2;
  color: var(--ink-5);
}

.flow__step:last-child .flow__arrow {
  display: none;
}

.flow--stack .flow__step {
  padding: 20px;
  border-radius: 14px;
}

.flow--stack .flow__arrow {
  display: none;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.split--flip .split__visual {
  order: -1;
}

.split--how {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.split__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split__copy .eyebrow {
  margin-bottom: -2px;
}

.split__copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.split__copy .lead {
  margin: 0;
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.6;
  text-wrap: pretty;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
}

.feat-item:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.feat-item__ico {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border-radius: 8px;
}

.feat-item__txt h4 {
  margin: 0 0 3px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}

.feat-item__txt p {
  margin: 0;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.5;
}

.how-list {
  margin-top: 10px;
}

.how-list .feat-item {
  gap: 16px;
  padding: 18px 0;
}

.how-list .feat-item__ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.step-kicker {
  margin-bottom: 5px;
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 940px;
  margin: 0 auto;
}

.price {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 32px 28px;
  background: var(--surface);
  border: 1px solid rgba(63, 79, 207, 0.32);
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(63, 79, 207, 0.08), var(--shadow-md);
}

.price__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price__name {
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price__badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border: 1px solid rgba(63, 79, 207, 0.14);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
}

.price__amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price__amount .a {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  font-feature-settings: "tnum" 1;
}

.price__amount .b,
.price__desc {
  color: var(--ink-3);
  font-size: 15px;
}

.price__desc {
  min-height: 21px;
  line-height: 1.5;
}

.price__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.price__list .row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 5px 0;
  color: var(--ink-2);
  font-size: 14px;
}

.price__list .icon {
  color: var(--accent);
}

.price-note {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--ink-4);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.price-note--jp-disclosure {
  margin-top: 10px;
}

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

.trust-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.trust-card__ico {
  width: 40px;
  height: 40px;
  color: var(--accent-ink);
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
}

.trust-card h3 {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

.trust-card p {
  margin: 0;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.55;
}

.trust-card .mono {
  color: var(--ink-4);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.dl-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.dl-banner__txt h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.dl-banner__txt p {
  margin: 0;
  color: var(--ink-3);
  font-size: 14px;
}

.dl-banner__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer {
  padding: 56px 0 64px;
  background: var(--page);
  border-top: 1px solid var(--line);
}

.footer__row {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}

.footer__brand {
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__brand-lk img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: #ffffff;
  object-fit: cover;
  box-shadow: var(--shadow-xs), 0 0 0 1px rgba(26, 34, 56, 0.045);
}

.footer__brand-lk .word {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

.footer__brand p {
  margin: 0;
  color: var(--ink-4);
  font-size: 13px;
  line-height: 1.55;
}

.footer__cols {
  display: flex;
  gap: 56px;
  margin-left: auto;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col .lbl {
  margin-bottom: 2px;
  color: var(--ink-4);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer__col a {
  color: var(--ink-2);
  font-size: 13.5px;
  text-decoration: none;
  transition: color 140ms ease;
}

.footer__col a:hover {
  color: var(--ink);
}

.footer__disclaimer {
  max-width: none;
  width: 100%;
  margin-top: 44px;
  padding-top: 28px;
  color: var(--ink-4);
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  line-height: 1.6;
  text-wrap: pretty;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  color: var(--ink-4);
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
}

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

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.support-hero {
  padding: 88px 0 52px;
}

.support-hero h1 {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: 0;
}

.support-hero .lede {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--ink-3);
  font-size: 19px;
  line-height: 1.6;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 96px;
}

.support-card {
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.support-card h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.support-card p,
.support-card li {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.55;
}

.support-card p {
  margin: 0;
}

.support-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.support-card a {
  color: var(--accent-ink);
}

/* Compatibility styles for existing legal pages. */
.shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(236, 235, 229, 0.9);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.site-header .nav {
  position: static;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--accent);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
}

.site-header .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-left: 0;
}

.site-header .nav-links a {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-header .nav-links a:hover {
  color: var(--accent);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 34px;
  align-items: start;
  padding: 52px 0 72px;
}

.legal-main {
  min-width: 0;
}

.legal-main h1 {
  margin: 12px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1.05;
}

.meta {
  margin-top: 14px;
  color: var(--ink-4);
  font-family: var(--font-mono);
}

.legal-card {
  padding: 28px;
  margin-top: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.legal-card h2,
.legal-card h3 {
  color: var(--ink);
  line-height: 1.2;
}

.legal-card h2:first-child,
.legal-card h3:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--ink-2);
}

.legal-card ul,
.legal-card ol {
  padding-left: 24px;
  margin: 14px 0 0;
}

.legal-card li + li {
  margin-top: 8px;
}

.toc {
  position: sticky;
  top: 102px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.toc-title {
  color: var(--ink-4);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.toc a {
  display: block;
  margin-top: 12px;
  color: var(--ink-2);
  font-weight: 600;
  text-decoration: none;
}

.toc a:hover {
  color: var(--accent);
}

table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  font-size: 15px;
}

.legal-card table {
  table-layout: fixed;
}

th,
td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink-2);
  background: var(--surface-2);
}

.legal-card th {
  width: 13rem;
  line-height: 1.45;
}

.legal-card td {
  line-height: 1.65;
}

code {
  padding: 0.12em 0.32em;
  background: var(--surface-sunken);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.92em;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink-4);
}

.footer-row a {
  margin-left: 16px;
  color: var(--ink-2);
  font-weight: 600;
  text-decoration: none;
}

.footer-row a:hover {
  color: var(--accent);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}

.lede {
  max-width: 820px;
  margin-top: 24px;
  color: var(--ink-3);
  font-size: 24px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split--flip .split__visual {
    order: 0;
  }

  .flow,
  .price-grid,
  .trust-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .flow__arrow {
    display: none;
  }

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

  .toc {
    position: static;
  }
}

@media (max-width: 760px) {
  .container,
  .container--wide,
  .shell {
    width: min(100% - 32px, 1120px);
  }

  .nav__inner {
    min-height: 62px;
  }

  .nav__links {
    display: none;
  }

  .nav__cta .btn {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 13px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero__h1 {
    font-size: 56px;
  }

  .hero__sub {
    font-size: 24px;
  }

  .hero__body {
    font-size: 16px;
  }

  .section {
    padding: 72px 0;
  }

  .section__title,
  .support-hero h1,
  .legal-main h1 {
    font-size: 36px;
    overflow-wrap: anywhere;
    line-break: anywhere;
    word-break: break-word;
  }

  .legal-card p,
  .legal-card li {
    overflow-wrap: anywhere;
    line-break: anywhere;
    word-break: break-word;
  }

  .section__lead,
  .support-hero .lede {
    font-size: 17px;
  }

  .dl-banner,
  .footer__row,
  .footer__cols {
    align-items: flex-start;
    flex-direction: column;
  }

  .dl-banner__cta,
  .dl-banner__cta .btn {
    width: 100%;
  }

  .footer__cols {
    gap: 28px;
    margin-left: 0;
  }

  .site-header .nav {
    min-height: 64px;
  }

  .site-header .nav-links {
    display: none;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  .legal-card table,
  .legal-card tbody,
  .legal-card tr,
  .legal-card th,
  .legal-card td {
    display: block;
    width: 100%;
  }

  .legal-card table {
    overflow: visible;
    border: 1px solid var(--line);
    border-radius: 10px;
  }

  .legal-card tr + tr {
    border-top: 1px solid var(--line);
  }

  .legal-card th,
  .legal-card td {
    border: 0;
  }

  .legal-card th {
    padding: 12px 14px 8px;
  }

  .legal-card td {
    padding: 10px 14px 14px;
    overflow-wrap: anywhere;
    line-break: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 520px) {
  .nav__brand .word {
    display: none;
  }

  .legal-main h1 {
    font-size: 30px;
    line-height: 1.16;
  }

  .legal-card {
    padding: 22px 18px;
  }

  .btn--download-large {
    min-height: 62px;
    gap: 12px;
    padding: 16px 22px;
    font-size: 20px;
  }

  .btn--download-large .icon {
    width: 28px;
    height: 28px;
  }

  .hero__h1 {
    font-size: 48px;
  }

  .hero__meta {
    gap: 8px;
  }

  .hero__meta .sep {
    display: none;
  }

  .price {
    padding: 28px 22px 24px;
  }
}
