:root {
  color-scheme: light;
  --canvas: #f4f3ee;
  --surface: #fcfbf7;
  --surface-low: #ecece8;
  --navy: #111b29;
  --navy-raised: #1a2636;
  --ink: #18212d;
  --muted: #5e6876;
  --outline: #c6cbd1;
  --blue: #2455a6;
  --blue-soft: #dce6f7;
  --red: #d52b1e;
  --white: #f7f8fa;
  --focus: #0b57d0;
  --shadow: 0 20px 54px rgba(17, 27, 41, .12);
  --page: min(1440px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-synthesis-weight: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-160%);
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.button[href]:hover {
  transform: translateY(-2px);
}

.button--filled {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 5px 14px rgba(17, 27, 41, .16);
}

.button--filled:hover {
  background: var(--navy-raised);
  box-shadow: 0 8px 18px rgba(17, 27, 41, .22);
}

.button--tonal {
  background: var(--blue-soft);
  color: var(--navy);
}

.button--tonal:hover {
  background: #ccdaf1;
}

.button--disabled {
  background: #e1e3e6;
  color: #69727e;
  cursor: not-allowed;
  user-select: none;
}

.button--light {
  width: 100%;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

.button--light:hover {
  background: #e9edf2;
}

.play-mark {
  font-size: 11px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .18em;
  text-decoration: none;
}

.brand img {
  border-radius: 11px;
}

.site-header {
  width: var(--page);
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid rgba(17, 27, 41, .12);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 38px);
}

.site-nav a {
  padding: 12px 0;
  color: #465160;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--navy);
}

.hero {
  width: var(--page);
  min-height: 690px;
  margin: 0 auto;
  padding: 70px 0 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(450px, .95fr);
  align-items: center;
  gap: clamp(42px, 6vw, 100px);
}

.hero__copy {
  position: relative;
  z-index: 4;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow > span {
  width: 28px;
  height: 5px;
  background: var(--blue);
  box-shadow: -8px 6px 0 var(--red);
}

.hero h1 {
  max-width: 850px;
  margin: 30px 0 25px;
  font-size: clamp(58px, 6.8vw, 108px);
  font-weight: 840;
  letter-spacing: -.075em;
  line-height: .88;
}

.hero__lead {
  max-width: 640px;
  margin: 0 0 34px;
  color: #4d5968;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.availability {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #687383;
  font-size: 12px;
}

.availability span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4e8c65;
  box-shadow: 0 0 0 4px rgba(78, 140, 101, .12);
}

.product-stage {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}

.stage-orbit {
  position: absolute;
  border: 1px solid rgba(17, 27, 41, .12);
  border-radius: 50%;
}

.stage-orbit--outer {
  width: min(610px, 100%);
  aspect-ratio: 1;
}

.stage-orbit--inner {
  width: min(440px, 74%);
  aspect-ratio: 1;
  background: #e7e8e8;
}

.product-phone {
  width: 276px;
  height: 540px;
  position: relative;
  z-index: 3;
  padding: 31px 23px 24px;
  border: 9px solid #253143;
  border-radius: 48px;
  background: var(--navy);
  color: var(--white);
  box-shadow: -18px 14px 0 var(--red), 18px -14px 0 var(--blue), 0 32px 58px rgba(17, 27, 41, .28);
}

.product-phone__speaker {
  width: 70px;
  height: 5px;
  position: absolute;
  top: 12px;
  left: 50%;
  border-radius: 10px;
  background: #263345;
  transform: translateX(-50%);
}

.product-phone__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.phone-menu {
  color: #8693a4;
  letter-spacing: .05em;
}

.product-phone__mark {
  height: 272px;
  display: grid;
  place-items: center;
}

.mark-ring {
  width: 184px;
  height: 184px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 248, 250, .2);
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px rgba(247, 248, 250, .025);
}

.mark-ring img {
  width: 148px;
  height: 148px;
}

.product-phone__state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-phone__state strong {
  margin-bottom: 8px;
  font-size: 17px;
}

.product-phone__state span {
  color: #aeb8c6;
  font-size: 11px;
  line-height: 1.45;
}

.product-phone__action {
  height: 52px;
  margin-top: 25px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.status-card {
  min-width: 182px;
  min-height: 76px;
  position: absolute;
  z-index: 5;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(17, 27, 41, .12);
  border-radius: 18px;
  background: rgba(252, 251, 247, .96);
  box-shadow: 0 14px 34px rgba(17, 27, 41, .14);
}

.status-card strong,
.status-card small {
  display: block;
}

.status-card strong {
  font-size: 13px;
}

.status-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.status-card__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dcebdd;
  color: #2e7046;
  font-weight: 900;
}

.status-card__number {
  color: var(--blue);
  font-size: 29px;
  font-weight: 850;
  letter-spacing: -.05em;
}

.status-card--access {
  top: 72px;
  left: -20px;
}

.status-card--devices {
  right: -14px;
  bottom: 72px;
}

.metrics {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(17, 27, 41, .14);
  border-bottom: 1px solid rgba(17, 27, 41, .14);
}

.metric {
  min-height: 126px;
  padding: 27px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(17, 27, 41, .14);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  margin-bottom: 7px;
  font-size: 30px;
  letter-spacing: -.04em;
}

.metric span {
  color: #657080;
  font-size: 13px;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 118px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 49px;
}

.section-heading h2,
.legal-zone__intro h2,
.access-card h2 {
  margin: 16px 0 20px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 820;
  letter-spacing: -.06em;
  line-height: .98;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.28fr .86fr .86fr;
  gap: 16px;
}

.feature-card {
  min-height: 350px;
  padding: 31px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #d0d4d9;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 5px 16px rgba(17, 27, 41, .035);
}

.feature-card--primary {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.feature-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.feature-card__index {
  color: #768292;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
}

.feature-card--primary .feature-card__index {
  color: #9eabba;
}

.feature-card__symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 18px;
}

.feature-card__symbol--blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.feature-card__symbol--red {
  background: #f5dedb;
  color: var(--red);
}

.feature-card h3 {
  max-width: 450px;
  margin: 0 0 12px;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.feature-card p {
  max-width: 460px;
  margin: 0;
  color: #677282;
  font-size: 14px;
  line-height: 1.6;
}

.feature-card--primary p {
  color: #adb8c7;
}

.touch-visual {
  height: 95px;
  position: relative;
}

.touch-ring,
.touch-core {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.touch-ring {
  border: 1px solid rgba(247, 248, 250, .18);
}

.touch-ring--one {
  width: 92px;
  height: 92px;
}

.touch-ring--two {
  width: 60px;
  height: 60px;
}

.touch-core {
  width: 22px;
  height: 22px;
  background: var(--white);
  box-shadow: -7px 5px 0 var(--red), 7px -5px 0 var(--blue);
}

.start {
  padding-top: 46px;
}

.section-heading--compact {
  margin-bottom: 42px;
}

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 27, 41, .15);
  border-bottom: 1px solid rgba(17, 27, 41, .15);
}

.step {
  min-height: 305px;
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(17, 27, 41, .15);
}

.step:last-child {
  border-right: 0;
}

.step__number {
  color: #737e8c;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
}

.step__icon {
  width: 62px;
  height: 62px;
  margin: 38px 0 40px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--surface);
  color: var(--blue);
  font-size: 26px;
  box-shadow: 0 7px 20px rgba(17, 27, 41, .08);
}

.step h3 {
  margin: auto 0 10px;
  font-size: 22px;
  letter-spacing: -.035em;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.access {
  padding-top: 48px;
}

.access-card {
  min-height: 570px;
  padding: clamp(44px, 6vw, 88px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  border-radius: 38px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.access-card__intro > p:last-child {
  max-width: 590px;
  margin: 0;
  color: #adb8c7;
  font-size: 16px;
  line-height: 1.65;
}

.section-label--light {
  color: #83a9e7;
}

.access-card__offer {
  padding: 34px;
  border: 1px solid rgba(247, 248, 250, .14);
  border-radius: 28px;
  background: var(--navy-raised);
}

.price {
  padding-bottom: 27px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(247, 248, 250, .14);
}

.price__value {
  font-size: clamp(44px, 4.2vw, 68px);
  font-weight: 850;
  letter-spacing: -.06em;
  line-height: .9;
}

.price__period {
  padding-bottom: 5px;
  color: #aeb8c6;
  font-size: 13px;
}

.offer-list {
  margin: 27px 0 30px;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
}

.offer-list li {
  display: flex;
  gap: 11px;
  align-items: center;
  color: #d9dfe7;
  font-size: 14px;
}

.offer-list li span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(247, 248, 250, .1);
  color: #a9c4ef;
  font-size: 11px;
}

.access-card__offer small {
  margin-top: 14px;
  display: block;
  color: #8490a0;
  font-size: 11px;
  text-align: center;
}

.legal-zone {
  margin-top: 25px;
  padding: 112px max(32px, calc((100% - min(1440px, calc(100% - 64px))) / 2));
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  column-gap: clamp(60px, 8vw, 140px);
  background: #0c1521;
  color: var(--white);
}

.legal-zone__intro {
  max-width: 560px;
}

.legal-zone__intro h2 {
  font-size: clamp(42px, 4.4vw, 66px);
}

.legal-zone__intro > p:not(.section-label) {
  margin: 0;
  color: #aeb8c6;
  font-size: 16px;
  line-height: 1.65;
}

.draft-chip {
  min-height: 34px;
  margin-top: 28px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(247, 248, 250, .18);
  border-radius: 17px;
  color: #b8c2cf;
  font-size: 11px;
}

.legal-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

.legal-links a {
  min-height: 62px;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(247, 248, 250, .15);
  color: var(--white);
  font-size: 13px;
  text-decoration: none;
}

.legal-links a:hover {
  color: #9ebbea;
}

.legal-links a span:last-child {
  color: #77879a;
}

.site-footer {
  grid-column: 1 / -1;
  margin-top: 80px;
  padding-top: 29px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
  border-top: 1px solid rgba(247, 248, 250, .15);
  color: #8490a0;
  font-size: 11px;
}

.brand--light {
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

/* Public information pages */
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.info-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.info-hero {
  padding: 52px clamp(24px, 5vw, 56px);
  border-radius: var(--radius-card);
  background: var(--surface-container);
}

.info-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .96;
}

.info-hero p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: #3e4a59;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
}

.info-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.info-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--outline-variant);
  border-radius: 24px;
  background: var(--surface);
}

.info-card h2,
.info-card h3 {
  margin-top: 0;
}

.info-card p,
.info-card li {
  color: #3e4a59;
  line-height: 1.65;
}

.info-card ol,
.info-card ul {
  padding-left: 1.4em;
}

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

.info-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--on-surface);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 720px) {
  .site-footer__nav {
    justify-content: flex-start;
  }

  .info-main {
    width: min(100% - 24px, 920px);
    padding: 32px 0 64px;
  }

  .info-hero {
    padding: 32px 22px;
  }
}

.site-footer__link {
  color: inherit;
  font: inherit;
  text-decoration-color: rgba(132, 144, 160, .45);
  text-underline-offset: 3px;
}

.site-footer__link:hover {
  color: #aab4c1;
}

/* Legal documents */
.legal-page {
  min-height: 100vh;
  background: var(--canvas);
}

.legal-header {
  width: min(1120px, calc(100% - 48px));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(17, 27, 41, .13);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #475361;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--blue);
}

.legal-document {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 110px;
}

.legal-document > h1 {
  margin: 17px 0 16px;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -.06em;
  line-height: .98;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-version {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.draft-notice {
  margin: 34px 0 50px;
  padding: 20px 22px;
  border-left: 4px solid var(--blue);
  border-radius: 0 16px 16px 0;
  background: var(--blue-soft);
  color: #27384f;
  font-size: 14px;
  line-height: 1.6;
}

.draft-notice--critical {
  border-left-color: var(--red);
  background: #f5dedb;
  color: #54251f;
}

.legal-document section {
  padding: 33px 0;
  border-top: 1px solid rgba(17, 27, 41, .13);
}

.legal-document h2 {
  margin: 0 0 16px;
  font-size: 24px;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.legal-document h3 {
  margin: 28px 0 12px;
  font-size: 17px;
}

.legal-document p,
.legal-document li {
  color: #4e5967;
  font-size: 16px;
  line-height: 1.75;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document ul,
.legal-document ol {
  margin: 16px 0 0;
  padding-left: 24px;
}

.legal-document li + li {
  margin-top: 8px;
}

.legal-toc {
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid rgba(17, 27, 41, .13);
}

.legal-toc h2 {
  margin-bottom: 18px;
  font-size: 17px;
}

.legal-toc nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

.legal-toc a {
  color: var(--blue);
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  :root {
    --page: min(100% - 48px, 960px);
  }

  .site-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .hero__copy {
    max-width: 800px;
  }

  .product-stage {
    min-height: 600px;
  }

  .status-card--access {
    left: calc(50% - 250px);
  }

  .status-card--devices {
    right: calc(50% - 250px);
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card--primary {
    grid-column: 1 / -1;
  }

  .access-card,
  .legal-zone {
    grid-template-columns: 1fr;
  }

  .access-card__offer {
    max-width: 520px;
  }

  .legal-links {
    margin-top: 55px;
  }
}

@media (max-width: 720px) {
  :root {
    --page: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    min-height: 72px;
  }

  .brand {
    font-size: 13px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 17px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 47px 0 20px;
    gap: 20px;
  }

  .hero h1 {
    margin-top: 27px;
    font-size: clamp(48px, 14.5vw, 70px);
    line-height: .91;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .availability {
    align-items: flex-start;
    line-height: 1.45;
  }

  .availability span {
    margin-top: 5px;
    flex: none;
  }

  .product-stage {
    min-height: 530px;
    transform: scale(.86);
    transform-origin: top center;
    margin-bottom: -68px;
  }

  .status-card--access {
    left: 6px;
  }

  .status-card--devices {
    right: 6px;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 105px;
    padding: 23px 5px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 27, 41, .14);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading h2,
  .legal-zone__intro h2,
  .access-card h2 {
    font-size: 43px;
  }

  .section-heading > p:last-child {
    font-size: 16px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--primary {
    grid-column: auto;
  }

  .feature-card {
    min-height: 310px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: 265px;
    padding: 26px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 27, 41, .15);
  }

  .step:last-child {
    border-bottom: 0;
  }

  .access {
    width: 100%;
    padding-bottom: 0;
  }

  .access-card {
    min-height: auto;
    padding: 68px 20px;
    gap: 44px;
    border-radius: 0;
  }

  .access-card__offer {
    padding: 26px 20px;
  }

  .price {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-zone {
    margin-top: 0;
    padding: 78px 16px 36px;
  }

  .legal-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .legal-header {
    width: calc(100% - 32px);
  }

  .legal-document {
    width: calc(100% - 32px);
    padding: 56px 0 84px;
  }

  .legal-document > h1 {
    font-size: 44px;
  }

  .legal-document p,
  .legal-document li {
    font-size: 16px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Material 3 refresh — 2026-07-29 */
:root {
  --canvas: #f7f7f3;
  --surface: #ffffff;
  --surface-container: #eeefea;
  --surface-container-high: #e5e7e1;
  --surface-blue: #e9eef9;
  --surface-red: #f8e8e5;
  --navy: #17202c;
  --navy-raised: #222d3c;
  --ink: #17202c;
  --muted: #606a78;
  --outline: #c8cdc8;
  --blue: #204f9e;
  --blue-soft: #dce7fb;
  --red: #c7352a;
  --white: #fbfcff;
  --focus: #155bc1;
  --radius-card: 28px;
  --radius-control: 999px;
  --shadow-1: 0 1px 2px rgba(22, 32, 44, .08), 0 4px 14px rgba(22, 32, 44, .05);
  --shadow-2: 0 18px 48px rgba(22, 32, 44, .10);
  --page: min(1240px, calc(100% - 64px));
}

body {
  background: var(--canvas);
  font-family: Inter, Roboto, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -.01em;
}

.icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  width: min(1240px, calc(100% - 40px));
  min-height: 68px;
  margin: 12px auto 0;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(23, 32, 44, .09);
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(18px);
}

.brand {
  gap: 11px;
  font-size: 14px;
  letter-spacing: .14em;
}

.brand img {
  width: 38px;
  height: 38px;
}

.site-nav {
  gap: 6px;
}

.site-nav a {
  min-height: 44px;
  padding: 0 14px;
  border-radius: var(--radius-control);
  color: #4f5966;
  font-size: 13px;
  line-height: 44px;
  text-decoration: none;
  transition: color .18s ease, background-color .18s ease;
}

.site-nav a:hover {
  background: var(--surface-container);
  color: var(--ink);
}

.button {
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-control);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .005em;
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

a.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(23, 32, 44, .13);
}

.button--filled {
  background: var(--navy);
  color: var(--white);
}

.button--tonal {
  background: var(--blue-soft);
  color: #173f82;
}

.button--disabled {
  border: 1px solid rgba(23, 32, 44, .12);
  background: var(--surface-container);
  color: #747d87;
}

.header-cta {
  min-height: 46px;
  padding: 0 18px;
}

.hero {
  grid-template-columns: minmax(0, 1fr) minmax(460px, .88fr);
  gap: clamp(42px, 6vw, 92px);
  min-height: 760px;
  padding: 82px 0 110px;
}

.hero__copy {
  align-self: center;
  max-width: 660px;
  padding-bottom: 10px;
}

.eyebrow {
  display: inline-flex;
  width: auto;
  min-height: 36px;
  margin: 0;
  padding: 0 15px 0 12px;
  border: 1px solid rgba(32, 79, 158, .15);
  border-radius: var(--radius-control);
  background: var(--surface-blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .045em;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--blue);
  box-shadow: none;
}

.hero h1 {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--ink);
  font-size: clamp(64px, 6.4vw, 96px);
  line-height: .91;
  letter-spacing: -.068em;
}

.hero__lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.hero__actions {
  gap: 12px;
  margin-top: 34px;
}

.availability {
  max-width: 590px;
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .65);
  color: #6b7480;
  font-size: 11px;
  line-height: 1.45;
}

.availability span {
  background: #d68a23;
  box-shadow: 0 0 0 4px rgba(214, 138, 35, .12);
}

.product-stage {
  position: relative;
  min-height: 610px;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(32, 79, 158, .08);
  border-radius: 44px;
  background: var(--surface-blue);
  box-shadow: inset 0 1px rgba(255, 255, 255, .9);
}

.stage-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.stage-shape--blue {
  top: -102px;
  right: -90px;
  width: 310px;
  height: 310px;
  border: 62px solid rgba(32, 79, 158, .10);
}

.stage-shape--red {
  bottom: -104px;
  left: -86px;
  width: 260px;
  height: 260px;
  border: 52px solid rgba(199, 53, 42, .10);
}

.product-phone {
  top: 37px;
  width: 300px;
  height: 536px;
  padding: 27px 23px 24px;
  border: 7px solid #121a25;
  border-radius: 42px;
  background: #17202c;
  box-shadow: 0 34px 60px rgba(23, 32, 44, .28);
  transform: rotate(2deg);
}

.product-phone__speaker {
  top: 9px;
  width: 66px;
  height: 5px;
  background: #344050;
}

.product-phone__top {
  color: #f8fafc;
  font-size: 10px;
  letter-spacing: .11em;
}

.phone-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.phone-brand img {
  width: 22px;
  height: 22px;
}

.phone-settings {
  width: 20px;
  height: 20px;
  color: #aeb9c8;
}

.product-phone__mark {
  margin-top: 50px;
}

.connection-orbit {
  display: grid;
  width: 176px;
  height: 176px;
  place-items: center;
  border: 1px solid rgba(91, 136, 214, .45);
  border-radius: 50%;
  box-shadow: 0 0 0 17px rgba(32, 79, 158, .13), 0 0 0 34px rgba(32, 79, 158, .07);
}

.connection-button {
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border-radius: 50%;
  background: #f8fafc;
  color: var(--blue);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .26);
}

.connection-button .icon {
  width: 44px;
  height: 44px;
  stroke-width: 1.55;
}

.product-phone__state {
  margin-top: 53px;
}

.product-phone__state strong {
  color: #f7f9fc;
  font-size: 17px;
  letter-spacing: -.025em;
}

.product-phone__state span {
  margin-top: 8px;
  color: #9eabba;
  font-size: 11px;
  line-height: 1.5;
}

.phone-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 25px;
}

.phone-chips span {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 13px;
  background: #222e3e;
  color: #d8dee7;
  font-size: 9px;
}

.phone-chips .icon {
  width: 14px;
  height: 14px;
  color: #82a9ed;
}

.status-card {
  min-width: 194px;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(23, 32, 44, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-2);
}

.status-card__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: none;
  place-items: center;
  border-radius: 12px;
  background: #e4f1e8;
  color: #267447;
}

.status-card__icon--blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.status-card__icon .icon {
  width: 21px;
  height: 21px;
}

.status-card strong {
  font-size: 12px;
}

.status-card small {
  margin-top: 3px;
  font-size: 10px;
}

.status-card--access {
  top: 118px;
  left: 20px;
}

.status-card--devices {
  right: 18px;
  bottom: 76px;
}

.metrics {
  position: relative;
  z-index: 3;
  width: var(--page);
  margin: -46px auto 0;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 44, .08);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-1);
}

.metric {
  position: relative;
  min-height: 150px;
  padding: 28px 34px 28px 84px;
  align-items: flex-start;
  text-align: left;
}

.metric__icon {
  position: absolute;
  top: 30px;
  left: 30px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-blue);
  color: var(--blue);
}

.metric:nth-child(2) .metric__icon {
  background: var(--surface-red);
  color: var(--red);
}

.metric strong {
  font-size: 31px;
  letter-spacing: -.045em;
}

.metric span:last-child {
  max-width: 230px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.section {
  padding: 132px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 64px;
}

.section-label {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.section-heading h2,
.legal-zone__intro h2,
.access-card h2 {
  margin-top: 14px;
  font-size: clamp(50px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  grid-column: auto;
  min-height: 330px;
  padding: 30px;
  border: 1px solid rgba(23, 32, 44, .07);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: none;
}

.feature-card--primary {
  grid-column: auto;
  min-height: 330px;
  background: var(--navy);
  color: var(--white);
}

.feature-card__top {
  align-items: center;
}

.feature-card__index {
  color: #7a8490;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .12em;
}

.feature-card__symbol {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 16px;
  background: var(--surface-red);
  color: var(--red);
  font-size: 0;
}

.feature-card__symbol--blue {
  background: var(--surface-blue);
  color: var(--blue);
}

.feature-card--primary .feature-card__symbol {
  background: rgba(255, 255, 255, .09);
  color: #9fc0fa;
}

.feature-card__symbol .icon {
  width: 25px;
  height: 25px;
}

.feature-card h3 {
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.feature-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.feature-card--primary p {
  color: #b8c2cf;
}

.touch-visual {
  width: 130px;
  height: 130px;
  margin: 8px auto 18px;
}

.touch-ring {
  border-color: rgba(132, 171, 238, .28);
}

.touch-ring--one {
  inset: 14px;
}

.touch-ring--two {
  inset: 35px;
}

.touch-core {
  width: 46px;
  height: 46px;
  background: var(--red);
  box-shadow: 0 0 0 11px rgba(199, 53, 42, .14);
}

.section-heading--compact {
  margin-bottom: 44px;
}

.steps {
  gap: 14px;
  overflow: visible;
  border: 0;
  border-radius: 0;
}

.step {
  min-height: 0;
  padding: 28px;
  border: 1px solid rgba(23, 32, 44, .07);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.step__number {
  color: #7a8490;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .12em;
}

.step__icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 30px 0 0;
  place-items: center;
  border-radius: 20px;
  background: var(--surface-blue);
  color: var(--blue);
  font-size: 0;
}

.step:nth-child(2) .step__icon {
  background: var(--surface-red);
  color: var(--red);
}

.step__icon .icon {
  width: 29px;
  height: 29px;
}

.step h3 {
  margin: 28px 0 10px;
  font-size: 22px;
  letter-spacing: -.03em;
}

.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.access {
  width: var(--page);
  padding-top: 70px;
  padding-bottom: 132px;
}

.access-card {
  min-height: 560px;
  gap: clamp(50px, 7vw, 110px);
  padding: clamp(50px, 7vw, 94px);
  border-radius: 40px;
  background: var(--navy);
  box-shadow: var(--shadow-2);
}

.access-card__intro > p:not(.section-label) {
  color: #b8c2cf;
  font-size: 15px;
  line-height: 1.65;
}

.access-card__intro > p:last-child {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  color: #9ba7b7;
  font-size: 12px;
}

.access-card__offer {
  max-width: 500px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius-card);
  background: #f8fafc;
  color: var(--ink);
}

.price {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(23, 32, 44, .10);
}

.price__value {
  font-size: 48px;
  letter-spacing: -.05em;
}

.price__period {
  color: #526072;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.offer-list {
  margin: 24px 0;
  gap: 13px;
}

.offer-list li {
  align-items: center;
  gap: 10px;
  color: #3e4a59;
  font-size: 14px;
  font-weight: 550;
}

.offer-list .icon {
  width: 18px;
  height: 18px;
  color: #32764c;
  stroke-width: 2.2;
}

.button--light {
  background: var(--navy);
  color: var(--white);
}

.access-card__offer small {
  color: #526072;
  font-size: 12px;
  font-weight: 550;
  line-height: 1.55;
}

.site-footer-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 34px max(32px, calc((100vw - 1240px) / 2));
  border-radius: 0;
  background: #111923;
}

.legal-zone__intro {
  max-width: 520px;
}

.legal-zone__intro h2 {
  color: var(--white);
  font-size: clamp(48px, 4.7vw, 68px);
}

.legal-zone__intro > p:not(.section-label) {
  color: #aab5c4;
  font-size: 15px;
  line-height: 1.65;
}

.draft-chip {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, .06);
  color: #c5cfdb;
  font-size: 10px;
  line-height: 36px;
}

.legal-links {
  gap: 10px;
  margin: 0;
}

.legal-links a {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 20px;
  gap: 12px;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 17px;
  background: rgba(255, 255, 255, .045);
  color: #e8edf4;
  font-size: 12px;
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease;
}

.legal-links a:hover {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
}

.legal-links a > .icon:first-child {
  color: #84a9e8;
}

.legal-links__arrow {
  width: 17px;
  height: 17px;
  color: #8491a2;
}

.site-footer {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 18px;
}

.legal-header {
  min-height: 78px;
}

.legal-document {
  max-width: 820px;
}

.legal-document > h1 {
  color: var(--ink);
  letter-spacing: -.05em;
}

.legal-document section {
  border-color: rgba(23, 32, 44, .10);
}

@media (max-width: 1100px) {
  :root {
    --page: min(920px, calc(100% - 48px));
  }

  .site-header {
    width: calc(100% - 32px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 54px;
  }

  .hero__copy {
    max-width: 790px;
  }

  .product-stage {
    min-height: 520px;
  }

  .status-card--access {
    left: calc(50% - 265px);
  }

  .status-card--devices {
    right: calc(50% - 265px);
  }

  .feature-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step:nth-child(3) {
    grid-column: 1 / -1;
  }

  .access-card {
    grid-template-columns: 1fr;
  }

  .access-card__offer {
    max-width: none;
  }

  .site-footer-shell {
    padding-right: 32px;
    padding-left: 32px;
  }

  .legal-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --page: calc(100% - 32px);
    --radius-card: 24px;
  }

  .site-header {
    top: 8px;
    min-height: 64px;
    margin-top: 8px;
    padding: 8px 9px 8px 13px;
    border-radius: 19px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    width: auto;
    min-height: 46px;
    padding: 0 15px;
  }

  .hero {
    padding: 56px 0 64px;
    gap: 36px;
  }

  .eyebrow {
    min-height: 34px;
    font-size: 10px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(48px, 15vw, 66px);
    letter-spacing: -.063em;
  }

  .hero__lead {
    margin-top: 23px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero__actions {
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .header-cta {
    width: auto;
  }

  .availability {
    padding: 12px;
    font-size: 10px;
  }

  .product-stage {
    min-height: 510px;
    margin: 0;
    border-radius: 30px;
    transform: none;
  }

  .stage-shape--blue {
    right: -130px;
  }

  .product-phone {
    top: 31px;
    width: 258px;
    height: 455px;
    padding: 24px 19px 19px;
    border-width: 6px;
    border-radius: 35px;
  }

  .product-phone__mark {
    margin-top: 40px;
  }

  .connection-orbit {
    width: 142px;
    height: 142px;
  }

  .connection-button {
    width: 102px;
    height: 102px;
  }

  .connection-button .icon {
    width: 36px;
    height: 36px;
  }

  .product-phone__state {
    margin-top: 42px;
  }

  .product-phone__state strong {
    font-size: 15px;
  }

  .product-phone__state span {
    font-size: 9px;
  }

  .phone-chips {
    margin-top: 17px;
  }

  .phone-chips span {
    min-height: 34px;
    font-size: 8px;
  }

  .status-card {
    min-width: 0;
    padding: 10px;
    border-radius: 15px;
  }

  .status-card--access {
    top: 92px;
    left: 8px;
  }

  .status-card--devices {
    right: 8px;
    bottom: 52px;
  }

  .status-card__icon {
    width: 34px;
    height: 34px;
  }

  .status-card strong {
    font-size: 10px;
  }

  .status-card small {
    display: none;
  }

  .metrics {
    margin-top: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .metric {
    min-height: 118px;
    margin-bottom: 10px;
    padding: 22px 20px 22px 74px;
    border: 1px solid rgba(23, 32, 44, .07);
    border-radius: 20px;
    background: var(--surface);
  }

  .metric__icon {
    top: 22px;
    left: 20px;
  }

  .metric strong {
    font-size: 27px;
  }

  .section {
    padding: 94px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .legal-zone__intro h2,
  .access-card h2 {
    font-size: 43px;
    line-height: 1;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card--primary,
  .feature-card:nth-child(3) {
    grid-column: auto;
    min-height: auto;
    padding: 25px;
  }

  .feature-card--primary {
    min-height: 360px;
  }

  .feature-card h3 {
    font-size: 22px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: 0;
    padding: 25px;
    border: 1px solid rgba(23, 32, 44, .07);
  }

  .step:nth-child(3) {
    grid-column: auto;
  }

  .step__icon {
    margin-top: 30px;
  }

  .access {
    width: 100%;
    padding: 48px 0 0;
  }

  .access-card {
    padding: 72px 16px;
    border-radius: 0;
  }

  .access-card__offer {
    padding: 24px 20px;
  }

  .price__value {
    font-size: 42px;
  }

  .site-footer-shell {
    padding: 28px 16px;
  }

  .legal-links {
    grid-template-columns: 1fr;
  }

  .legal-links a {
    min-height: 60px;
  }

  .site-footer {
    margin-top: 20px;
  }
}
