:root {
  color-scheme: dark;
  --page: #0a0c0f;
  --surface: #11161b;
  --surface-strong: #181f26;
  --surface-blue: #101923;
  --text: #f5f8fa;
  --muted: #aab5bf;
  --line: #2b3540;
  --line-soft: rgba(255, 255, 255, 0.1);
  --teal: #39d4b3;
  --teal-dark: #118a76;
  --coral: #ff7b63;
  --focus: #ffd166;
  --max-width: 1220px;
  --reading-width: 840px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: var(--page);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
}

a {
  color: var(--teal);
}

a:hover {
  color: #76e5ce;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

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

code,
kbd {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
}

code {
  padding: 2px 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #d9fff6;
  background: #090d10;
}

kbd {
  display: inline-block;
  min-width: 28px;
  padding: 2px 7px;
  border: 1px solid #52606d;
  border-bottom-width: 2px;
  border-radius: 5px;
  color: var(--text);
  background: var(--surface-strong);
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(10, 12, 15, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-weight: 760;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

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

.hero {
  position: relative;
  display: flex;
  height: calc(100svh - 112px);
  min-height: 500px;
  max-height: 760px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #07090b;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: rgba(5, 8, 10, 0.73);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 56px 0;
}

.hero-product {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.hero-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-product .eyebrow {
  margin: 0;
  color: #d5fff6;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 4.8rem;
}

h2 {
  margin-bottom: 20px;
  font-size: 2.65rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.lede {
  max-width: 720px;
  margin: 0;
  color: #e0e6ea;
  font-size: 1.25rem;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  color: #06100e;
  background: var(--teal);
  font-weight: 760;
  text-decoration: none;
}

.button:hover {
  color: #06100e;
  background: #79e7d0;
}

.button.secondary {
  border-color: #697783;
  color: var(--text);
  background: rgba(8, 11, 14, 0.76);
}

.button.secondary:hover {
  border-color: #9aa8b4;
  color: var(--text);
  background: #151b20;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: #0c1014;
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 84px;
  align-items: center;
  margin: 0 auto;
}

.proof-inner span {
  padding: 8px 22px;
  border-left: 1px solid var(--line);
  color: #cbd3d9;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.proof-inner span:last-child {
  border-right: 1px solid var(--line);
}

.wide-inner,
.section-inner,
.document {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.intro-band,
.showcase-band,
.capabilities-band,
.privacy-band,
.final-cta {
  border-bottom: 1px solid var(--line);
}

.intro-band {
  background: var(--surface-blue);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: end;
  padding: 88px 0;
}

.intro-layout h2 {
  max-width: 580px;
  margin-bottom: 0;
}

.intro-layout > p {
  max-width: 650px;
  margin: 0;
  color: #c6d0d8;
  font-size: 1.12rem;
}

.showcase-band {
  background: var(--page);
}

.showcase-band.alternate {
  background: var(--surface);
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: 64px;
  align-items: center;
  padding: 92px 0;
}

.showcase-row.reverse {
  grid-template-columns: minmax(0, 1.32fr) minmax(260px, 0.68fr);
}

.showcase-row.reverse .showcase-copy {
  grid-column: 2;
  grid-row: 1;
}

.showcase-row.reverse .product-shot {
  grid-column: 1;
  grid-row: 1;
}

.showcase-copy h2 {
  font-size: 2.25rem;
}

.showcase-copy > p:not(.step-label) {
  color: var(--muted);
}

.step-label {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-top: 1px solid var(--line);
  color: #d6dde2;
}

.check-list li::before {
  position: absolute;
  top: 12px;
  left: 2px;
  color: var(--teal);
  content: "\2713";
  font-weight: 800;
}

.product-shot {
  margin: 0;
}

.product-shot img {
  width: 100%;
  border: 1px solid #3a4651;
  border-radius: 8px;
  background: #080a0c;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.product-shot figcaption {
  margin-top: 12px;
  color: #86939f;
  font-size: 0.78rem;
  text-align: right;
}

.inline-note {
  margin: 26px 0 20px;
  padding: 15px 17px;
  border-left: 4px solid var(--teal);
  color: #d8e6e2;
  background: #0b1214;
}

.text-link {
  display: inline-block;
  font-weight: 750;
  text-decoration: none;
}

.capabilities-band {
  background: #0d1115;
}

.capabilities-band .wide-inner {
  padding: 92px 0;
}

.capabilities-band h2 {
  max-width: 760px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.capability {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
}

.capability-number {
  display: block;
  margin-bottom: 34px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 800;
}

.capability p {
  margin-bottom: 0;
  color: var(--muted);
}

.privacy-band {
  background: #101820;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: start;
  padding: 88px 0;
}

.section-intro {
  max-width: 650px;
  color: var(--muted);
}

.privacy-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-points li {
  padding: 15px 0;
  border-top: 1px solid #35424d;
}

.final-cta {
  background: var(--surface);
}

.final-cta-inner {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: space-between;
  gap: 52px;
  padding: 64px 0;
}

.final-cta-inner h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.final-cta .actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.page-heading {
  border-bottom: 1px solid var(--line);
  background: var(--surface-blue);
}

.page-heading .section-inner {
  padding: 72px 0 66px;
}

.page-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.legal-title {
  max-width: 860px;
  margin: 0 0 20px;
  font-size: 4rem;
}

.document {
  max-width: var(--reading-width);
  padding: 76px 0;
}

.document section {
  margin-bottom: 54px;
}

.document h2 {
  padding-top: 10px;
  font-size: 1.7rem;
}

.document h3 {
  margin-top: 30px;
}

.document p,
.document li {
  color: #d2d9df;
}

.document ul,
.document ol {
  padding-left: 24px;
}

.document li + li {
  margin-top: 9px;
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.notice,
.callout {
  margin: 30px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
  background: var(--surface);
}

.notice.warning,
.callout.warning {
  border-left-color: var(--coral);
}

.support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 36px;
  margin: 32px 0 48px;
  padding: 0;
  list-style: none;
}

.support-list li {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.guide-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 64px 0 96px;
}

.guide-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.guide-nav {
  position: sticky;
  top: 98px;
}

.guide-nav p {
  margin: 0 0 10px;
  color: #7f8c97;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-nav a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.guide-nav a:hover {
  color: var(--text);
}

.guide-content {
  min-width: 0;
  max-width: 880px;
}

.guide-section {
  padding: 0 0 72px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 72px;
}

.guide-section:last-child {
  margin-bottom: 0;
}

.guide-section h2 {
  font-size: 2.25rem;
}

.guide-section > p {
  color: #cbd3d9;
}

.guide-section h3 {
  margin-top: 34px;
  font-size: 1.28rem;
}

.guide-image {
  margin: 30px 0 36px;
}

.guide-image img {
  width: 100%;
  border: 1px solid #3a4651;
  border-radius: 8px;
}

.guide-image figcaption {
  margin-top: 10px;
  color: #84919c;
  font-size: 0.8rem;
}

.step-list {
  margin: 30px 0;
  padding: 0;
  list-style: none;
  counter-reset: guide-steps;
}

.step-list li {
  position: relative;
  min-height: 52px;
  padding: 16px 0 16px 58px;
  border-top: 1px solid var(--line);
  color: #d3dae0;
  counter-increment: guide-steps;
}

.step-list li::before {
  position: absolute;
  top: 13px;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--teal-dark);
  border-radius: 50%;
  color: var(--teal);
  content: counter(guide-steps);
  font-size: 0.78rem;
  font-weight: 800;
}

.provider-table-wrap {
  margin: 30px 0 38px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.provider-table {
  width: 100%;
  min-width: 690px;
  border-collapse: collapse;
  background: var(--surface);
}

.provider-table th,
.provider-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.provider-table th {
  color: #e9eef1;
  background: var(--surface-strong);
  font-size: 0.82rem;
}

.provider-table td {
  color: #c9d1d7;
  font-size: 0.9rem;
}

.provider-table tr:last-child td {
  border-bottom: 0;
}

.provider-table strong {
  color: var(--text);
}

.provider-block {
  margin-top: 46px;
  padding-top: 8px;
}

.provider-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.provider-heading h3 {
  margin: 0;
}

.status-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 3px 9px;
  border: 1px solid #38534d;
  border-radius: 5px;
  color: #adf0e1;
  background: #10221f;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.external-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 20px 0 0;
}

.external-links a {
  font-size: 0.92rem;
  font-weight: 720;
}

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

.shortcut {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.shortcut span {
  color: #cad2d8;
  font-size: 0.92rem;
}

.key-group {
  display: flex;
  flex: 0 0 auto;
  gap: 5px;
}

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

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

.faq summary {
  padding: 18px 34px 18px 0;
  color: var(--text);
  cursor: pointer;
  font-weight: 720;
}

.faq details p {
  margin-top: 0;
  padding: 0 0 20px;
  color: var(--muted);
}

.site-footer {
  color: var(--muted);
  background: #07090b;
}

.footer-inner {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
}

@media (max-width: 980px) {
  h1 {
    font-size: 4rem;
  }

  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.2fr);
    gap: 38px;
  }

  .guide-layout {
    grid-template-columns: 195px minmax(0, 1fr);
    gap: 42px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .nav {
    min-height: 62px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.84rem;
  }

  .hero {
    height: calc(100svh - 104px);
    min-height: 470px;
  }

  .hero-media {
    object-position: 42% center;
  }

  .hero-inner {
    padding: 42px 0;
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .lede {
    max-width: 620px;
    font-size: 1.1rem;
  }

  .proof-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px 0;
  }

  .proof-inner span,
  .proof-inner span:last-child {
    min-height: 44px;
    border: 0;
  }

  .intro-layout,
  .showcase-row,
  .showcase-row.reverse,
  .capability-grid,
  .privacy-layout,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .intro-layout {
    gap: 24px;
    padding: 68px 0;
  }

  .showcase-row,
  .showcase-row.reverse {
    gap: 34px;
    padding: 68px 0;
  }

  .showcase-row.reverse .showcase-copy,
  .showcase-row.reverse .product-shot {
    grid-column: auto;
    grid-row: auto;
  }

  .showcase-row.reverse .showcase-copy {
    order: 1;
  }

  .showcase-row.reverse .product-shot {
    order: 2;
  }

  .capabilities-band .wide-inner {
    padding: 72px 0;
  }

  .capability {
    min-height: 0;
  }

  .privacy-layout {
    gap: 28px;
    padding: 68px 0;
  }

  .final-cta-inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 68px 0;
  }

  .final-cta .actions {
    margin-top: 0;
  }

  .legal-title {
    font-size: 3.2rem;
  }

  .guide-shell {
    padding-top: 0;
  }

  .guide-nav {
    position: static;
    margin: 0 -20px 56px;
    padding: 18px 20px;
    overflow-x: auto;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
  }

  .guide-nav p {
    display: none;
  }

  .guide-nav ul {
    display: flex;
    width: max-content;
    gap: 20px;
  }

  .guide-nav a {
    padding: 5px 0;
    border-bottom: 0;
    white-space: nowrap;
  }

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0;
  }
}

@media (max-width: 560px) {
  .nav {
    gap: 12px;
    width: min(calc(100% - 24px), var(--max-width));
  }

  .brand span {
    display: none;
  }

  .nav-links {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 12px;
  }

  .nav-links li:last-child {
    display: none;
  }

  .hero {
    min-height: 440px;
  }

  .hero-icon {
    width: 48px;
    height: 48px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2,
  .showcase-copy h2,
  .guide-section h2 {
    font-size: 1.9rem;
  }

  .legal-title {
    font-size: 2.55rem;
  }

  .wide-inner,
  .section-inner,
  .document,
  .guide-shell,
  .footer-inner {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-inner {
    width: calc(100% - 28px);
  }

  .proof-inner span {
    padding: 7px;
    font-size: 0.78rem;
  }

  .product-shot figcaption {
    text-align: left;
  }

  .guide-nav {
    margin-right: -14px;
    margin-left: -14px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .provider-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

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