:root {
  --bg: #060b14;
  --bg-soft: #0b1622;
  --surface: #101f2c;
  --surface-2: #132b3a;
  --paper: #f4f9ff;
  --paper-soft: rgba(244, 249, 255, 0.72);
  --muted: rgba(244, 249, 255, 0.52);
  --line: rgba(244, 249, 255, 0.14);
  --line-strong: rgba(244, 249, 255, 0.24);
  --cyan: #28c8ff;
  --mint: #6be7ff;
  --warning: #8bdcff;
  --danger: #ff626a;
  --max: 1180px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #060b14 0%, #0b1724 46%, #060b14 100%);
  color: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

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

:focus-visible {
  outline: 3px solid var(--warning);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 18px;
  font-size: 80px;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
}

h2 {
  margin-bottom: 0;
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0;
}

p {
  margin-bottom: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header);
  padding: 14px 42px;
  border-bottom: 1px solid rgba(244, 249, 255, 0.08);
  background: rgba(6, 11, 20, 0.84);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions,
.proof-band,
.guide-tabs,
.final-cta,
.site-footer,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
}

.brand-sign {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.brand-sign::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 16px;
  background: #ffffff;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2027%2016%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M19.4%2016H7.2C3.8%2016%201%2013.5%201%2010.4C1%207.5%203.3%205.1%206.4%204.9C7.8%202%2010.8%200%2014.2%200C18.1%200%2021.3%202.7%2022%206.2C24.3%206.7%2026%208.6%2026%2010.9C26%2013.8%2023.4%2016%2019.4%2016Z%27/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2027%2016%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M19.4%2016H7.2C3.8%2016%201%2013.5%201%2010.4C1%207.5%203.3%205.1%206.4%204.9C7.8%202%2010.8%200%2014.2%200C18.1%200%2021.3%202.7%2022%206.2C24.3%206.7%2026%208.6%2026%2010.9C26%2013.8%2023.4%2016%2019.4%2016Z%27/%3E%3C/svg%3E") center / contain no-repeat;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
  line-height: 1;
}

.brand-text strong {
  font-size: 17px;
  font-weight: 820;
  white-space: nowrap;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.site-nav {
  justify-self: center;
  gap: 28px;
  color: var(--paper-soft);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a,
.header-cta,
.button,
.plan-card a,
.guide-tab,
summary {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

.site-nav a:hover {
  color: var(--paper);
}

.header-cta {
  justify-self: end;
  min-height: 42px;
  border: 1px solid rgba(107, 231, 255, 0.42);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--mint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 760;
}

.header-cta:hover {
  border-color: var(--mint);
  background: rgba(107, 231, 255, 0.1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(244, 249, 255, 0.05);
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle span {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 118px 32px 46px;
  background:
    linear-gradient(90deg, rgba(6, 11, 20, 0.98) 0%, rgba(6, 11, 20, 0.92) 42%, rgba(6, 11, 20, 0.46) 100%),
    linear-gradient(145deg, rgba(40, 200, 255, 0.2) 0%, rgba(47, 128, 255, 0.14) 42%, rgba(6, 11, 20, 0) 72%),
    var(--bg);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 11, 20, 0), var(--bg));
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(244, 249, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 249, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, #000 62%, transparent 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 48px;
  align-items: center;
  width: min(var(--max), 100%);
  min-height: 590px;
  margin-inline: auto;
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: 670px;
  animation: hero-in 720ms ease-out;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lead {
  width: 100%;
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--paper);
  font-size: 42px;
  font-weight: 780;
  line-height: 1.05;
}

.hero-text {
  width: 100%;
  max-width: 570px;
  color: var(--paper-soft);
  font-size: 19px;
  line-height: 1.58;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 780;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #03101c;
  background: var(--mint);
  box-shadow: 0 18px 60px rgba(40, 200, 255, 0.2);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--paper);
  background: rgba(244, 249, 255, 0.05);
}

.button-secondary:hover {
  border-color: rgba(35, 181, 238, 0.6);
  background: rgba(35, 181, 238, 0.1);
}

.button-dark {
  color: var(--paper);
  background: var(--bg);
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 560px;
  isolation: isolate;
  animation: hero-visual-in 820ms ease-out 120ms;
}

.route-line {
  position: absolute;
  inset: 12% 4% auto 0;
  height: 300px;
  border-top: 1px solid rgba(107, 231, 255, 0.56);
  border-right: 1px solid rgba(47, 128, 255, 0.42);
  border-radius: 0 8px 0 0;
  transform: skewY(-7deg);
}

.route-line::before,
.route-line::after {
  content: "";
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  animation: signal 3.2s ease-in-out infinite;
}

.route-line::before {
  top: -1px;
  left: 8%;
  width: 44%;
}

.route-line::after {
  right: 10%;
  bottom: -1px;
  width: 36%;
  animation-delay: 850ms;
}

.route-node {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--paper);
  background: rgba(6, 11, 20, 0.76);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
  font-size: 14px;
  font-weight: 760;
}

.route-node-bot {
  top: 7%;
  left: 4%;
  border-color: rgba(35, 181, 238, 0.46);
}

.route-node-key {
  right: 5%;
  bottom: 18%;
  border-color: rgba(107, 231, 255, 0.48);
}

.device-frame {
  overflow: hidden;
  border: 1px solid rgba(244, 249, 255, 0.2);
  border-radius: 8px;
  background: #030914;
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.device-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone {
  position: absolute;
  right: 12%;
  top: 5%;
  z-index: 3;
  width: 440px;
  height: 360px;
  transform: rotate(2deg);
}

.hero-phone img {
  object-fit: contain;
  padding: 18px;
}

.hero-terminal {
  position: absolute;
  left: 6%;
  bottom: 9%;
  z-index: 4;
  display: grid;
  gap: 8px;
  width: 280px;
  border: 1px solid rgba(244, 249, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(6, 11, 20, 0.82);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.hero-terminal span,
.hero-terminal small {
  color: var(--muted);
  font-size: 13px;
}

.hero-terminal strong {
  color: var(--mint);
  font-size: 28px;
  line-height: 1;
}

.proof-band {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-band div {
  flex: 1;
  min-width: 0;
  padding: 24px 24px 24px 0;
  border-right: 1px solid rgba(244, 249, 255, 0.08);
}

.proof-band div:last-child {
  border-right: 0;
}

.proof-band span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.proof-band strong {
  display: block;
  font-size: 20px;
  line-height: 1.16;
}

.section,
.final-cta,
.site-footer {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  scroll-margin-top: 96px;
  padding: 98px 0;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 78px;
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 110px;
}

.section-heading h2,
.section-top h2,
.device-copy h2,
.included-section h2 {
  max-width: 760px;
}

.section-top {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-top > p,
.device-copy > p {
  color: var(--paper-soft);
  font-size: 18px;
  line-height: 1.6;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  column-gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item span {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 820;
}

.timeline-item p {
  grid-column: 2;
  color: var(--paper-soft);
  font-size: 17px;
  line-height: 1.58;
}

.plans-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plan-card {
  position: relative;
  min-height: 284px;
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(244, 249, 255, 0.04);
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%);
}

.plan-card-accent {
  border-color: rgba(107, 231, 255, 0.34);
  background: rgba(107, 231, 255, 0.07);
}

.plan-label {
  width: fit-content;
  margin-bottom: 22px;
  border: 1px solid rgba(35, 181, 238, 0.38);
  border-radius: 8px;
  padding: 6px 9px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 780;
}

.plan-card p {
  min-height: 72px;
  color: var(--paper-soft);
  font-size: 15px;
  line-height: 1.52;
}

.plan-card strong {
  display: block;
  margin-top: 24px;
  font-size: 34px;
  line-height: 1;
}

.plan-card a {
  width: fit-content;
  margin-top: 22px;
  color: var(--mint);
  font-size: 15px;
  font-weight: 780;
}

.plan-card a:hover {
  color: var(--paper);
}

.plan-card .plan-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(107, 231, 255, 0.42);
  border-radius: 8px;
  padding: 0 14px;
  color: #03101c;
  background: var(--mint);
  text-decoration: none;
}

.plan-card .plan-action:hover {
  color: #03101c;
  background: #94efff;
  transform: translateY(-2px);
}

.devices-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(520px, 1.08fr);
  gap: 64px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.device-copy {
  position: sticky;
  top: 110px;
}

.guide-tabs {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.guide-tab {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--paper-soft);
  background: rgba(244, 249, 255, 0.04);
  cursor: pointer;
  font-weight: 760;
}

.guide-tab:hover,
.guide-tab.is-active,
.guide-tab[aria-selected="true"] {
  border-color: rgba(35, 181, 238, 0.58);
  color: var(--paper);
  background: rgba(35, 181, 238, 0.12);
}

.guide-shell,
.guide-panel {
  min-width: 0;
}

.guide-panel {
  animation: guide-panel-in 320ms ease both;
}

.guide-panel[hidden] {
  display: none;
}

.guide-preview {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 22%, rgba(40, 200, 255, 0.16), transparent 42%),
    var(--surface);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.32);
}

.carousel-note {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.carousel-topline,
.carousel-controls,
.carousel-dots {
  display: flex;
  align-items: center;
}

.carousel-topline {
  position: absolute;
  z-index: 5;
  top: 16px;
  left: 16px;
  right: 16px;
  justify-content: space-between;
  color: var(--paper-soft);
  font-size: 13px;
  font-weight: 780;
}

.carousel-topline strong {
  color: var(--mint);
}

.carousel-viewport {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  margin: 0;
  padding: 54px 24px 88px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(0.98);
  transition:
    opacity 260ms ease,
    transform 360ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.carousel-slide img {
  align-self: end;
  justify-self: center;
  width: 100%;
  height: 100%;
  max-width: 320px;
  max-height: 500px;
  object-fit: contain;
}

.carousel-slide figcaption {
  display: grid;
  gap: 6px;
  max-width: 430px;
  margin-inline: auto;
  text-align: center;
}

.carousel-slide figcaption strong {
  color: var(--paper);
  font-size: 21px;
  line-height: 1.1;
}

.carousel-slide figcaption span {
  color: var(--paper-soft);
  font-size: 15px;
  line-height: 1.45;
}

.carousel-controls {
  position: absolute;
  z-index: 6;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 78px;
  align-items: center;
  gap: 12px;
}

.carousel-button {
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--paper);
  background: rgba(6, 11, 20, 0.72);
  cursor: pointer;
}

.carousel-button:hover {
  border-color: rgba(107, 231, 255, 0.62);
  background: rgba(40, 200, 255, 0.12);
}

.carousel-dots {
  justify-content: center;
  gap: 7px;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(244, 249, 255, 0.32);
}

.carousel-dot.is-active {
  width: 24px;
  background: var(--mint);
}

.pc-guide-section {
  border-top: 1px solid var(--line);
}

.pc-carousel {
  min-height: 650px;
}

.pc-carousel .carousel-slide {
  padding: 58px 24px 92px;
}

.pc-carousel .carousel-slide img {
  align-self: center;
  max-width: min(100%, 1040px);
  max-height: 470px;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.pc-carousel .carousel-slide figcaption {
  max-width: 620px;
}

.included-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
  gap: 74px;
  border-top: 1px solid var(--line);
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.included-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(244, 249, 255, 0.035);
}

.included-list p {
  color: var(--paper-soft);
  font-size: 15px;
  line-height: 1.56;
}

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

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

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

summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--paper);
  cursor: pointer;
  font-size: 20px;
  font-weight: 760;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--mint);
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 780px;
  padding: 0 0 24px;
  color: var(--paper-soft);
  font-size: 17px;
  line-height: 1.58;
}

.final-cta {
  scroll-margin-top: 96px;
  justify-content: space-between;
  gap: 42px;
  margin-top: 34px;
  margin-bottom: 84px;
  border-radius: 8px;
  padding: 48px;
  color: #03101c;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18)),
    var(--mint);
}

.final-cta .eyebrow {
  color: #064760;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 16px;
  color: #03101c;
}

.final-cta p {
  max-width: 620px;
  color: rgba(3, 16, 28, 0.76);
  font-size: 18px;
  line-height: 1.56;
}

.site-footer {
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 36px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: var(--paper);
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer nav a {
  flex: 0 0 auto;
}

.site-footer a:hover {
  color: var(--paper);
}

.legal-main {
  width: min(920px, calc(100% - 64px));
  margin: 0 auto;
  padding: 138px 0 72px;
}

.legal-hero {
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin-bottom: 20px;
  font-size: 64px;
  white-space: normal;
}

.legal-hero p {
  max-width: 760px;
  color: var(--paper-soft);
  font-size: 19px;
  line-height: 1.58;
}

.legal-content {
  display: grid;
  gap: 0;
}

.legal-content article {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 18px;
  font-size: 28px;
  line-height: 1.16;
}

.legal-content p,
.legal-content li {
  color: var(--paper-soft);
  font-size: 17px;
  line-height: 1.68;
}

.legal-content p + p {
  margin-top: 14px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--mint);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: rgba(107, 231, 255, 0.42);
  text-underline-offset: 3px;
}

.legal-content .legal-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(107, 231, 255, 0.42);
  border-radius: 8px;
  margin-top: 16px;
  padding: 0 16px;
  color: #03101c;
  background: var(--mint);
  text-decoration: none;
}

.legal-content .legal-button:hover {
  background: #94efff;
}

.legal-content .legal-button + p {
  margin-top: 18px;
}

.legal-content strong {
  color: var(--paper);
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
}

.legal-footer {
  padding-top: 10px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-in {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes hero-visual-in {
  from {
    transform: translateX(24px);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes signal {
  0%,
  100% {
    opacity: 0.18;
    transform: translateX(-20px);
  }
  46% {
    opacity: 0.92;
    transform: translateX(42px);
  }
}

@keyframes guide-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 46px;
  }

  .site-header {
    padding-inline: 24px;
  }

  .hero-inner,
  .section-split,
  .devices-section,
  .included-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 26px;
    min-height: 0;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-phone {
    top: 0;
    right: 12%;
    width: min(80vw, 360px);
    height: 290px;
  }

  .section-heading {
    position: static;
  }

  .device-copy {
    position: static;
  }

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

@media (max-width: 820px) {
  :root {
    --header: 66px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 30px;
    line-height: 1.08;
    text-wrap: wrap;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-inline: 16px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    width: 58px;
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0;
  }

  .header-cta::after {
    content: attr(data-mobile-label);
    font-size: 13px;
  }

  .hero {
    padding: 84px 16px 28px;
  }

  .hero-inner {
    width: 100%;
    max-width: calc(100vw - 32px);
    overflow: hidden;
  }

  .hero-copy,
  .hero-lead,
  .hero-text {
    width: 100%;
    max-width: 100%;
  }

  .hero-lead {
    font-size: 30px;
    overflow-wrap: anywhere;
  }

  .hero-text {
    max-width: 342px;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button-secondary {
    display: none;
  }

  .hero-visual {
    min-height: 190px;
  }

  .route-node,
  .hero-terminal {
    display: none;
  }

  .route-line {
    inset: 10% 0 auto 0;
    height: 102px;
  }

  .hero-phone {
    right: 50%;
    width: 230px;
    height: 180px;
    transform: translateX(50%) rotate(1deg);
  }

  .proof-band,
  .section,
  .final-cta,
  .site-footer {
    width: calc(100% - 48px);
    max-width: var(--max);
  }

  .proof-band {
    display: grid;
    grid-template-columns: 1fr;
  }

  .proof-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 249, 255, 0.08);
    padding: 18px 0;
  }

  .proof-band div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-top {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    min-width: 0;
  }

  .timeline-item {
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 14px;
  }

  .plans-grid,
  .included-list {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .plan-card {
    min-height: auto;
    min-width: 0;
  }

  h1,
  h2,
  h3,
  p,
  .proof-band strong,
  .plan-card strong,
  summary {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .section-heading h2,
  .section-top h2,
  .device-copy h2,
  .included-section h2 {
    max-width: 318px;
  }

  .section-top > p,
  .device-copy > p,
  .plan-card p,
  .included-list p {
    max-width: 292px;
  }

  .timeline-item h3,
  .timeline-item p {
    max-width: 258px;
  }

  .plan-card p,
  .timeline-item p,
  .section-top > p,
  .device-copy > p {
    word-break: normal;
    overflow-wrap: normal;
  }

  .plan-card p {
    min-height: 0;
  }

  .guide-tabs {
    margin-top: 22px;
  }

  .guide-tab {
    flex: 1 1 30%;
  }

  .guide-preview {
    width: calc(100vw - 48px);
    max-width: 100%;
    min-height: 650px;
  }

  .carousel-slide {
    padding: 54px 14px 88px;
  }

  .carousel-slide img {
    max-width: 286px;
    max-height: 478px;
  }

  .pc-carousel {
    min-height: 520px;
  }

  .pc-carousel .carousel-slide img {
    max-width: 100%;
    max-height: 330px;
  }

  .carousel-controls {
    gap: 8px;
    left: 28px;
    right: 28px;
  }

  .carousel-button {
    min-width: 76px;
    padding-inline: 10px;
  }

  .final-cta {
    display: grid;
    padding: 28px 20px;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .legal-main {
    width: calc(100% - 48px);
    max-width: 920px;
    padding-top: 104px;
  }

  .legal-hero h1 {
    font-size: 42px;
  }

  .legal-hero p,
  .legal-content p,
  .legal-content li {
    font-size: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .brand-text small {
    display: none;
  }

  .hero-lead {
    font-size: 26px;
  }

  .section-heading h2,
  .section-top h2,
  .device-copy h2,
  .included-section h2 {
    max-width: 318px;
  }

  .section-top > p,
  .device-copy > p,
  .plan-card p,
  .included-list p {
    max-width: 292px;
  }

  .timeline-item h3,
  .timeline-item p {
    max-width: 258px;
  }

  .button {
    padding-inline: 14px;
    white-space: normal;
    text-align: center;
  }

  .guide-preview {
    min-height: 620px;
  }

  .pc-carousel {
    min-height: 470px;
  }

  .pc-carousel .carousel-slide {
    padding: 54px 12px 88px;
  }

  .pc-carousel .carousel-slide img {
    max-height: 245px;
  }

  .carousel-controls {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    left: 28px;
    right: 28px;
  }

  .carousel-button {
    min-width: 44px;
    padding: 0;
    font-size: 0;
  }

  .carousel-button::before {
    font-size: 18px;
    line-height: 1;
  }

  .carousel-button[data-carousel-prev]::before {
    content: "<";
  }

  .carousel-button[data-carousel-next]::before {
    content: ">";
  }

  summary {
    min-height: 66px;
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
