:root {
  color-scheme: dark;
  --ink: #031324;
  --ink-deep: #020b13;
  --ink-soft: #071c31;
  --paper: #f4f4f1;
  --paper-cool: #e7edf2;
  --text: #f8fbff;
  --muted: #b7c4d1;
  --quiet: #8092a3;
  --dark-text: #07111a;
  --dark-muted: #52616d;
  --blue: #1473e6;
  --blue-bright: #2585f7;
  --line: rgba(255, 255, 255, 0.17);
  --dark-line: rgba(7, 17, 26, 0.18);
  --shell: 1440px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: #fff;
}

:focus-visible {
  outline: 3px solid #79b9ff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue);
  transform: translateY(-160%);
}

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

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

.home-release {
  position: relative;
  z-index: 70;
  border-bottom: 1px solid var(--line);
  color: #d4dee8;
  background: #04111f;
}

.home-release .home-shell {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-block: 8px;
  font-size: 12px;
  text-align: center;
}

.home-release strong {
  flex: none;
  color: #87c3ff;
  font: 700 10px var(--mono);
  letter-spacing: 0.14em;
}

.home-release p {
  margin: 0;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 19, 36, 0.94);
  backdrop-filter: blur(16px);
}

.home-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
}

.home-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.home-nav a {
  color: #d5dfe8;
  font-size: 14px;
  font-weight: 600;
}

.home-nav a:hover {
  color: #fff;
}

.home-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-links {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding-right: 15px;
  border-right: 1px solid var(--line);
}

.language-links a {
  min-width: 30px;
  padding: 5px 7px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.language-links a:hover,
.language-links a[aria-current="page"] {
  color: #fff;
}

.home-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid #2d8bf4;
  border-radius: 12px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(0, 75, 170, 0.28);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.1;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.home-button:hover {
  color: #fff;
  background: var(--blue-bright);
  box-shadow: 0 18px 42px rgba(0, 75, 170, 0.38);
  transform: translateY(-1px);
}

.home-button--compact {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 14px;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 15px;
  font-weight: 700;
}

.home-kicker {
  margin: 0 0 20px;
  color: #88c3ff;
  font: 700 11px var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.home-hero__background,
.home-final__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__background img,
.home-final__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__layout {
  position: relative;
  z-index: 1;
  min-height: 820px;
  padding-block: 72px 44px;
  display: grid;
  grid-template-columns: minmax(430px, 0.78fr) minmax(690px, 1.35fr);
  align-items: center;
  gap: clamp(28px, 3vw, 56px);
}

.home-hero__copy {
  padding-bottom: 86px;
}

.home-hero h1 {
  max-width: 8.6em;
  margin: 0;
  font-size: clamp(56px, 4.85vw, 78px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.home-hero h1 span {
  display: block;
  white-space: nowrap;
}

.home-hero__lede {
  max-width: 33em;
  margin: 28px 0 0;
  color: #d5dee7;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.58;
}

.home-hero__actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.home-hero__trust {
  margin: 18px 0 0;
  color: #dbe5ee;
  font-size: 13px;
}

.home-hero__legal {
  max-width: 50em;
  margin: 8px 0 0;
  color: #9babb9;
  font-size: 11px;
}

.home-showcase {
  align-self: end;
  min-width: 0;
}

.home-showcase ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.home-showcase__item {
  min-width: 0;
  display: grid;
  align-content: end;
}

.home-showcase__phone {
  height: clamp(430px, 37vw, 560px);
  display: flex;
  align-items: end;
  justify-content: center;
}

.home-showcase__phone img {
  width: auto;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 32px rgba(0, 7, 15, 0.48));
}

.home-showcase__caption {
  min-height: 110px;
  margin-top: 18px;
  padding-top: 18px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.home-showcase__caption > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font: 700 12px var(--mono);
}

.home-showcase__caption strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
}

.home-showcase__caption p {
  margin: 5px 0 0;
  color: #b7c4d1;
  font-size: 12px;
  line-height: 1.45;
}

.home-proof {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--line);
  background: #06172a;
}

.home-proof__grid {
  min-height: 128px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.home-proof__grid > div {
  padding: 26px 28px;
  border-left: 1px solid var(--line);
}

.home-proof__grid > div:last-child {
  border-right: 1px solid var(--line);
}

.home-proof strong,
.home-proof span {
  display: block;
}

.home-proof strong {
  color: #fff;
  font: 700 11px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-proof span {
  margin-top: 9px;
  color: #aebdcc;
  font-size: 13px;
  line-height: 1.45;
}

.home-section {
  padding: 128px 0;
}

.home-section--compact {
  padding-block: 96px;
}

.home-section--light {
  color: var(--dark-text);
  background: var(--paper);
}

.home-section--paper {
  color: var(--dark-text);
  background: var(--paper-cool);
}

.home-section--ink {
  color: var(--text);
  background: var(--ink-soft);
}

.home-section--night {
  color: var(--text);
  background: var(--ink-deep);
}

.home-section--light .home-kicker,
.home-section--paper .home-kicker {
  color: #1263bd;
}

.home-section__head {
  max-width: 850px;
}

.home-section__head h2,
.home-final h2 {
  margin: 0;
  font-size: clamp(43px, 5vw, 72px);
  font-weight: 740;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.home-section__head > p:not(.home-kicker),
.home-final__content > p:not(.home-kicker) {
  max-width: 58em;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.home-section--light .home-section__head > p:not(.home-kicker),
.home-section--paper .home-section__head > p:not(.home-kicker) {
  color: var(--dark-muted);
}

.home-steps {
  margin: 70px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
  list-style: none;
}

.home-steps li {
  min-height: 255px;
  padding-top: 22px;
  border-top: 2px solid var(--dark-text);
}

.home-steps li > span {
  color: #1263bd;
  font: 700 13px var(--mono);
}

.home-steps h3 {
  margin: 64px 0 0;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.home-steps p {
  margin: 12px 0 0;
  color: var(--dark-muted);
  font-size: 15px;
  line-height: 1.7;
}

.home-privacy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1fr);
  align-items: start;
  gap: clamp(70px, 9vw, 150px);
}

.home-privacy .home-text-link {
  margin-top: 30px;
}

.home-facts {
  margin: 2px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
}

.home-facts li {
  min-height: 142px;
  padding: 24px 24px 26px 0;
  border-top: 1px solid var(--line);
}

.home-facts li:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.home-facts span,
.home-facts strong {
  display: block;
}

.home-facts span {
  color: #82bfff;
  font: 700 12px var(--mono);
}

.home-facts strong {
  margin-top: 36px;
  font-size: 17px;
  line-height: 1.4;
}

.home-features {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-features article {
  min-height: 360px;
  padding: 28px 38px 34px 0;
}

.home-features article + article {
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.home-features article > span {
  color: #82bfff;
  font: 700 11px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-features h3 {
  margin: 92px 0 0;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.home-features p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.home-features a {
  display: inline-block;
  margin-top: 25px;
  color: #82bfff;
  font-size: 14px;
  font-weight: 700;
}

.language-badge {
  color: #82bfff;
  font: 700 9px var(--mono);
}

.home-guides {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1fr);
  gap: clamp(70px, 9vw, 150px);
}

.home-guides__links {
  border-top: 2px solid var(--dark-text);
}

.home-guides__links a {
  min-height: 112px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--dark-line);
}

.home-guides__links span {
  color: #1263bd;
  font: 700 12px var(--mono);
}

.home-guides__links strong {
  font-size: 17px;
  line-height: 1.35;
}

.home-guides__links small {
  color: #1263bd;
  font-size: 12px;
  font-weight: 700;
}

.home-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.15fr);
  gap: clamp(70px, 9vw, 150px);
}

.home-faq__items {
  border-top: 2px solid var(--dark-text);
}

.home-faq details {
  border-bottom: 1px solid var(--dark-line);
}

.home-faq summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 720;
  list-style: none;
}

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

.home-faq summary span {
  color: #1263bd;
  font: 700 12px var(--mono);
}

.home-faq details p {
  margin: -5px 0 26px 56px;
  color: var(--dark-muted);
  font-size: 15px;
  line-height: 1.7;
}

.home-final {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
}

.home-final__content {
  position: relative;
  z-index: 1;
  padding-block: 118px;
  text-align: center;
}

.home-final__content h2,
.home-final__content > p:not(.home-kicker) {
  max-width: 900px;
  margin-inline: auto;
}

.home-final .home-button {
  margin-top: 34px;
}

.home-final__content > span,
.home-final__content > small {
  display: block;
}

.home-final__content > span {
  margin-top: 18px;
  color: #dbe5ee;
  font-size: 13px;
}

.home-final__content > small {
  max-width: 760px;
  margin: 10px auto 0;
  color: #98a9b8;
  font-size: 11px;
  line-height: 1.6;
}

.site-footer {
  padding: 64px 0 52px;
  border-top: 1px solid var(--line);
  background: #01080f;
}

.site-footer > .container {
  width: min(var(--shell), calc(100% - 96px));
  margin-inline: auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(140px, 0.55fr));
  gap: 44px;
}

.site-footer__brand p {
  max-width: 34em;
  color: var(--quiet);
  font-size: 13px;
}

.site-footer h2 {
  margin: 0 0 13px;
  color: #8194a5;
  font: 700 10px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.site-footer li,
.site-footer a {
  color: #aebbc7;
  font-size: 13px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-note {
  margin: 40px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #738595;
  font-size: 12px;
}

@media (max-width: 1240px) {
  .home-shell,
  .site-footer > .container {
    width: min(100% - 56px, var(--shell));
  }

  .home-nav {
    gap: 18px;
  }

  .home-hero__layout {
    grid-template-columns: minmax(370px, 0.72fr) minmax(560px, 1.25fr);
  }

  .home-showcase__phone {
    height: clamp(390px, 37vw, 500px);
  }

  .home-hero h1 {
    font-size: clamp(53px, 4.65vw, 68px);
  }
}

@media (max-width: 1020px) {
  .home-nav {
    display: none;
  }

  .home-header__actions {
    margin-left: auto;
  }

  .home-hero__layout {
    padding-top: 84px;
    grid-template-columns: 1fr;
  }

  .home-hero__copy {
    max-width: 760px;
    padding-bottom: 12px;
  }

  .home-hero h1 {
    max-width: 10em;
    font-size: clamp(60px, 9vw, 86px);
  }

  .home-showcase__phone {
    height: clamp(420px, 58vw, 610px);
  }

  .home-privacy,
  .home-guides,
  .home-faq {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .home-section__head {
    max-width: 760px;
  }

  .site-footer__grid {
    grid-template-columns: 1.2fr repeat(2, 0.7fr);
  }

  .site-footer__grid nav:last-of-type {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .home-shell,
  .site-footer > .container {
    width: min(100% - 28px, var(--shell));
  }

  .home-release .home-shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding-block: 9px;
    text-align: left;
  }

  .home-header__inner {
    min-height: 72px;
    gap: 10px;
  }

  .brand {
    gap: 9px;
    font-size: 16px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .language-links {
    display: none;
  }

  .home-button--compact {
    min-height: 40px;
    padding: 9px 13px;
    font-size: 12px;
  }

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

  .home-hero__layout {
    min-height: auto;
    padding-block: 72px 44px;
    gap: 52px;
  }

  .home-hero__copy {
    padding-bottom: 0;
  }

  .home-kicker {
    margin-bottom: 16px;
  }

  .home-hero h1 {
    max-width: 9em;
    font-size: clamp(48px, 14.4vw, 64px);
    line-height: 0.98;
  }

  .home-hero h1 span {
    white-space: normal;
  }

  .home-hero__lede {
    margin-top: 22px;
    font-size: 17px;
  }

  .home-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .home-showcase {
    width: calc(100vw - 14px);
  }

  .home-showcase ol {
    padding-right: 22vw;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(202px, 68vw);
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .home-showcase__item {
    scroll-snap-align: start;
  }

  .home-showcase__phone {
    height: min(520px, 120vw);
  }

  .home-showcase__caption {
    min-height: 104px;
  }

  .home-proof__grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-proof__grid > div,
  .home-proof__grid > div:last-child {
    padding: 22px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-proof__grid > div:nth-child(odd) {
    border-left: 0;
  }

  .home-section {
    padding: 86px 0;
  }

  .home-section--compact {
    padding-block: 76px;
  }

  .home-section__head h2,
  .home-final h2 {
    font-size: clamp(38px, 11.5vw, 54px);
  }

  .home-section__head > p:not(.home-kicker),
  .home-final__content > p:not(.home-kicker) {
    font-size: 16px;
  }

  .home-steps {
    margin-top: 48px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-steps li {
    min-height: 0;
  }

  .home-steps h3 {
    margin-top: 42px;
  }

  .home-privacy,
  .home-guides,
  .home-faq {
    gap: 44px;
  }

  .home-facts {
    grid-template-columns: 1fr;
  }

  .home-facts li,
  .home-facts li:nth-child(even) {
    min-height: 112px;
    padding: 20px 0;
    border-left: 0;
  }

  .home-facts strong {
    margin-top: 25px;
  }

  .home-features {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }

  .home-features article,
  .home-features article + article {
    min-height: 0;
    padding: 25px 0 38px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-features article:last-child {
    border-bottom: 0;
  }

  .home-features h3 {
    margin-top: 50px;
  }

  .home-guides__links a {
    min-height: 108px;
    grid-template-columns: 36px 1fr;
  }

  .home-guides__links small {
    display: none;
  }

  .home-faq summary {
    grid-template-columns: 36px 1fr;
    font-size: 16px;
  }

  .home-faq details p {
    margin-left: 48px;
  }

  .home-final {
    min-height: 620px;
  }

  .home-final__content {
    padding-block: 92px;
    text-align: left;
  }

  .home-final__content h2,
  .home-final__content > p:not(.home-kicker),
  .home-final__content > small {
    margin-left: 0;
  }

  .site-footer {
    padding-top: 52px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__grid nav:last-of-type {
    grid-column: auto;
  }
}

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

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

@media print {
  .home-header,
  .home-release,
  .home-hero__actions,
  .home-final,
  .site-footer {
    display: none;
  }

  body {
    color: #111;
    background: #fff;
  }
}
