:root {
  color-scheme: light;
  --ink: #15191c;
  --muted: #59636a;
  --line: #dce2e4;
  --paper: #ffffff;
  --soft: #f2f5f4;
  --charcoal: #10171b;
  --cyan: #009fd1;
  --green: #197e5b;
  --coral: #c85243;
  --amber: #b57814;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

a {
  color: #1764a6;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #0b4b81;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #f2b94d;
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 50;
  padding: 10px 14px;
  color: #fff;
  background: var(--charcoal);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

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

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

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

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

.nav-links .nav-buy {
  padding: 8px 13px;
  border: 1px solid var(--charcoal);
  border-radius: 6px;
  color: #fff;
  background: var(--charcoal);
}

.nav-links .nav-buy:hover {
  color: #fff;
  background: #273137;
}

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

h1 {
  margin-bottom: 22px;
  font-size: 56px;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: 36px;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #7ce3c0;
}

.eyebrow.coral {
  color: var(--coral);
}

.eyebrow.amber {
  color: var(--amber);
}

.content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.narrow {
  width: min(790px, calc(100% - 40px));
}

.product-hero {
  position: relative;
  height: min(680px, calc(100svh - 98px));
  min-height: 540px;
  overflow: hidden;
  color: #fff;
  background: #20282c;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 42%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 16, 19, 0.62);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 0;
}

.hero-copy h1 {
  max-width: 760px;
  text-wrap: balance;
}

.hero-lede {
  max-width: 630px;
  margin: 0 0 28px;
  color: #e8eef0;
  font-size: 21px;
}

.hero-note {
  margin: 18px 0 0;
  color: #c7d3d7;
  font-size: 14px;
}

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

.button {
  min-height: 44px;
  padding: 10px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal);
  border-radius: 6px;
  color: #fff;
  background: var(--charcoal);
  font-weight: 750;
  text-decoration: none;
}

.button:hover {
  color: #fff;
  background: #2c383e;
}

.button.accent {
  border-color: #17aedb;
  background: #17aedb;
  color: #071317;
}

.button.accent:hover {
  border-color: #6fd9f7;
  background: #6fd9f7;
  color: #071317;
}

.button.glass {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  background: rgba(8, 14, 17, 0.42);
}

.button.glass:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.spec-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.spec-inner > div {
  min-width: 0;
  padding: 27px 22px;
  border-right: 1px solid var(--line);
}

.spec-inner > div:first-child {
  padding-left: 0;
}

.spec-inner > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.spec-inner strong,
.spec-inner span {
  display: block;
}

.spec-inner strong {
  font-size: 17px;
}

.spec-inner span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.product-section,
.feature-band {
  border-bottom: 1px solid var(--line);
}

.feature-band.soft,
.app-band {
  background: var(--soft);
}

.product-intro,
.feature-layout,
.app-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: 64px;
}

.product-intro > *,
.feature-layout > *,
.app-layout > * {
  min-width: 0;
}

.section-intro {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
}

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

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

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

.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 20px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.product-figure,
.feature-media {
  margin: 0;
  min-width: 0;
}

.product-figure img,
.feature-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid #cbd5d8;
  border-radius: 6px;
}

.feature-layout {
  grid-template-columns: minmax(480px, 1.2fr) minmax(0, 0.8fr);
}

.feature-layout.reverse {
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
}

.feature-layout.reverse .feature-media {
  grid-column: 2;
  grid-row: 1;
}

.feature-layout.reverse .feature-copy {
  grid-column: 1;
  grid-row: 1;
}

.feature-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.app-band {
  border-bottom: 1px solid var(--line);
}

.app-layout {
  grid-template-columns: 260px minmax(0, 1fr);
  max-width: 980px;
}

.app-mark {
  width: 260px;
  height: 260px;
  border: 1px solid #cbd5d8;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(17, 29, 34, 0.12);
}

.app-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
}

.availability {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-band {
  color: #fff;
  background: var(--charcoal);
}

.contact-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.contact-band h2 {
  max-width: 680px;
  margin-bottom: 10px;
}

.contact-band p:not(.eyebrow) {
  margin: 0;
  color: #bcc9cd;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.light-button {
  border-color: #fff;
  color: var(--charcoal);
  background: #fff;
  white-space: nowrap;
}

.light-button:hover {
  color: var(--charcoal);
  background: #dfe7e9;
}

.text-link-light {
  color: #b8eaf7;
  font-size: 14px;
}

.text-link-light:hover {
  color: #fff;
}

.legal-reminder {
  border-bottom: 1px solid var(--line);
  background: #fff7e8;
}

.legal-reminder .content {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  gap: 22px;
}

.legal-reminder strong {
  white-space: nowrap;
}

.legal-reminder p {
  margin: 0;
  color: #5d4b2c;
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.legal-header .content {
  padding-top: 56px;
  padding-bottom: 46px;
}

.legal-header h1 {
  margin-bottom: 14px;
  font-size: 42px;
}

.legal-header .lede {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.meta {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-body h2 {
  margin-top: 46px;
  font-size: 25px;
}

.legal-body h3 {
  margin-top: 28px;
}

.legal-body ul,
.legal-body ol {
  padding-left: 22px;
}

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

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 15px;
}

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

.data-table th {
  background: var(--soft);
}

.notice {
  margin: 30px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  background: #edf7f2;
}

.warning {
  border-left-color: var(--coral);
  background: #fff1ed;
}

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

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

.faq summary {
  padding: 20px 0;
  cursor: pointer;
  font-weight: 750;
}

.faq details p,
.faq details ol,
.faq details ul {
  margin-top: 0;
  padding-bottom: 20px;
}

.site-footer {
  color: #bdc8cc;
  background: #090f12;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

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

.footer-links a {
  color: #e4ecee;
}

@media (max-width: 900px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 32px;
  }

  .nav-links {
    gap: 16px;
  }

  .spec-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spec-inner > div,
  .spec-inner > div:first-child,
  .spec-inner > div:last-child {
    padding: 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .spec-inner > div:nth-child(2n) {
    border-right: 0;
  }

  .spec-inner > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .product-intro,
  .feature-layout,
  .feature-layout.reverse {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .feature-layout.reverse .feature-media,
  .feature-layout.reverse .feature-copy {
    grid-column: 1;
  }

  .feature-layout.reverse .feature-copy {
    grid-row: 1;
  }

  .feature-layout.reverse .feature-media {
    grid-row: 2;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    min-height: 0;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .product-hero {
    height: calc(100svh - 175px);
    min-height: 520px;
  }

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

  .hero-overlay {
    background: rgba(8, 14, 17, 0.68);
  }

  .hero-copy {
    justify-content: flex-end;
    padding-bottom: 46px;
  }

  .hero-copy h1 {
    max-width: 540px;
  }

  .app-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .app-mark {
    width: 220px;
    height: 220px;
  }

  .contact-layout,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 500px) {
  .nav-wrap,
  .hero-copy,
  .content,
  .spec-inner,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .nav-links .nav-buy {
    padding: 7px 10px;
  }

  h1,
  .legal-header h1 {
    font-size: 38px;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 29px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .actions,
  .actions .button {
    width: 100%;
  }

  .spec-inner {
    grid-template-columns: 1fr;
  }

  .spec-inner > div,
  .spec-inner > div:first-child,
  .spec-inner > div:last-child,
  .spec-inner > div:nth-child(2n),
  .spec-inner > div:nth-last-child(-n + 2) {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .spec-inner > div:last-child {
    border-bottom: 0;
  }

  .content {
    padding: 56px 0;
  }

  .app-points {
    display: grid;
  }

  .legal-reminder .content {
    display: block;
  }

  .legal-reminder p {
    margin-top: 8px;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }
}

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