:root {
  --ink: #0c1720;
  --ink-deep: #07111f;
  --muted: #52616b;
  --line: #dfe8e5;
  --paper: #ffffff;
  --surface: #f6f8f7;
  --surface-soft: #eef2f0;
  --mint: #30d0a4;
  --mint-dark: #0e725d;
  --footer-line: #24313a;
  --footer-text: #dde9e7;
  --footer-muted: #b9c8c6;
  --wrap: 1248px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

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

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

.site-shell {
  background: var(--surface);
  overflow: hidden;
}

.hero {
  position: relative;
  height: 760px;
  padding: 32px max(32px, calc((100vw - var(--wrap)) / 2)) 0;
  background: linear-gradient(90deg, #07111f 0%, #0d2d35 58%, #11483e 100%);
  color: #fff;
}

.glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.glow-teal {
  width: 360px;
  height: 360px;
  right: 64px;
  top: -10px;
  background: radial-gradient(circle, rgba(48, 208, 164, 0.28) 0%, rgba(48, 208, 164, 0) 68%);
}

.glow-blue {
  width: 440px;
  height: 440px;
  left: -136px;
  top: 420px;
  background: radial-gradient(circle, rgba(205, 224, 251, 0.72) 0%, rgba(205, 224, 251, 0) 68%);
}

.nav {
  position: relative;
  z-index: 2;
  width: min(100%, var(--wrap));
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: var(--mint);
  color: var(--ink-deep);
  font-size: 24px;
  line-height: 1;
}

.brand-name {
  color: #fff;
  font-size: 23px;
  line-height: 1.2;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 40px;
  color: #dde9e7;
  font-size: 15px;
  font-weight: 700;
}

.nav-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  position: relative;
  z-index: 4;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.button-small {
  min-height: 42px;
  padding: 0 20px;
}

.button-primary {
  background: var(--mint);
  color: var(--ink-deep);
}

.button-ghost {
  min-height: 42px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-outline {
  border: 1px solid #d6e7e4;
  color: #fff;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(100%, var(--wrap));
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: 470px minmax(0, 744px);
  gap: 38px;
  align-items: start;
}

.hero-copy {
  padding-top: 72px;
}

.eyebrow {
  margin: 0;
  color: var(--mint);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 30px 0 34px;
  max-width: 470px;
  color: #fff;
  font-size: 62px;
  font-weight: 800;
  line-height: 70px;
}

.hero-body {
  max-width: 505px;
  margin-bottom: 18px;
  color: #d5e7e5;
  font-size: 20px;
  line-height: 30px;
}

.portal-preview {
  margin: 0;
}

.portal-preview img {
  width: 744px;
  height: 436px;
  object-fit: cover;
  border: 1px solid rgba(61, 74, 77, 0.65);
  border-radius: 18px;
  box-shadow: 0 24px 34px rgba(5, 15, 26, 0.24);
}

.portal-preview figcaption {
  margin: 16px 0 0 24px;
  color: rgba(214, 232, 227, 0.82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.proof-bar {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 48px), var(--wrap));
  height: 126px;
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: 220px 262px 273px 220px;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 48px 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 14px rgba(5, 15, 26, 0.14);
}

.proof-bar span {
  display: block;
  margin-bottom: 19px;
  color: #71808a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.proof-bar strong {
  display: block;
  color: var(--ink);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
}

.proof-bar div:first-child strong,
.proof-bar div:last-child strong {
  font-size: 30px;
}

.value-section,
.workflow-section,
.pricing-section {
  padding-inline: max(32px, calc((100vw - var(--wrap)) / 2));
}

.value-section {
  padding-top: 110px;
  padding-bottom: 102px;
}

.section-heading {
  width: min(100%, var(--wrap));
  margin: 0 auto;
}

.section-heading h2 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 46px;
  font-weight: 800;
  line-height: 56px;
}

.section-heading p:not(.eyebrow) {
  max-width: 1170px;
  color: var(--muted);
  font-size: 19px;
  line-height: 28px;
}

.feature-grid {
  width: min(100%, var(--wrap));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.icon-tile {
  position: relative;
  width: 46px;
  height: 46px;
  margin-bottom: 42px;
  border-radius: 8px;
}

.icon-sms {
  background: #e8fbf5;
}

.icon-sms span {
  position: absolute;
  left: 14px;
  width: 22px;
  height: 4px;
  border-radius: 2px;
  background: var(--mint-dark);
}

.icon-sms span:first-child {
  top: 16px;
}

.icon-sms span:last-child {
  top: 28px;
  width: 16px;
}

.icon-call {
  background: #eef5ff;
}

.icon-call::before,
.icon-call::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 5px solid #1e84d6;
  transform: rotate(-25deg);
}

.icon-call::before {
  width: 12px;
  height: 20px;
  left: 13px;
  top: 12px;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.icon-call::after {
  width: 8px;
  height: 8px;
  left: 24px;
  top: 22px;
  border-left-color: transparent;
  border-top-color: transparent;
}

.icon-vpn {
  background: #f2f7ee;
}

.icon-vpn::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 13px;
  top: 13px;
  border-radius: 4px;
  background: #86b649;
  transform: rotate(45deg);
}

.icon-api {
  background: #fff6e3;
}

.icon-api::before,
.icon-api::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 21px;
  width: 20px;
  height: 4px;
  border-radius: 2px;
  background: #ad7400;
}

.icon-api::after {
  transform: rotate(90deg);
}

.feature-card h3,
.timeline h3,
.price-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.feature-card p,
.timeline p,
.price-card li {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 23px;
}

.workflow-section {
  height: 420px;
  padding-top: 94px;
  padding-bottom: 0;
  background: #fff;
}

.workflow-section .section-heading h2 {
  max-width: 1120px;
}

.timeline {
  position: relative;
  width: min(100%, var(--wrap));
  margin: -12px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 72px;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 62px;
  right: 60px;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
}

.timeline li {
  position: relative;
  padding-top: 94px;
}

.step-number {
  position: absolute;
  top: 0;
  left: 34px;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-dark);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

.pricing-section {
  padding-top: 126px;
  padding-bottom: 72px;
}

.pricing-grid {
  width: min(100%, var(--wrap));
  margin: 29px auto 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: center;
}

.price-card {
  min-height: 292px;
  padding: 50px 32px 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.price-card-featured {
  min-height: 374px;
  padding-top: 32px;
  background: var(--mint-dark);
  color: #fff;
}

.badge {
  margin: 0 0 26px;
  color: #a6f2df;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-card-featured h3,
.price-card-featured .price,
.price-card-featured .price span {
  color: #fff;
}

.price-card-featured li {
  color: #d5e7e5;
}

.price {
  margin: 18px 0 3px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.2;
}

.price span {
  margin-right: 24px;
  color: var(--ink);
  font-size: 46px;
  font-weight: 800;
  line-height: 56px;
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li + li {
  margin-top: 10px;
}

.footer-cta {
  width: min(100%, var(--wrap));
  min-height: 78px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.footer-cta p {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.site-footer {
  background: var(--ink-deep);
  color: var(--footer-text);
  padding-inline: max(32px, calc((100vw - var(--wrap)) / 2));
}

.footer-inner {
  width: min(100%, var(--wrap));
  min-height: 330px;
  margin: 0 auto;
  padding: 58px 0 12px;
  display: grid;
  grid-template-columns: 360px 1fr;
  column-gap: 104px;
  row-gap: 0;
  border-top: 1px solid var(--footer-line);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand p {
  margin: 28px 0 14px;
  color: var(--footer-muted);
  font-size: 17px;
  line-height: 26px;
}

.footer-brand a:not(.brand) {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 36px;
}

.footer-links h2 {
  margin: 4px 0 24px;
  color: var(--mint);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.footer-links a {
  display: block;
  margin-top: 15px;
  color: var(--footer-text);
  font-size: 16px;
  font-weight: 500;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 27px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--footer-line);
  color: #8fa09d;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.subpage {
  min-height: 100vh;
  padding: 32px max(32px, calc((100vw - var(--wrap)) / 2)) 70px;
  background: #f1f7f6;
}

.subpage *,
.subpage *::before,
.subpage *::after {
  min-width: 0;
}

.subpage-nav {
  background: transparent;
}

.subpage-nav .brand-name,
.subpage-nav .nav-links,
.subpage-nav .button-ghost {
  color: var(--ink);
}

.subpage-nav .brand-mark {
  width: 0;
  height: 0;
  overflow: hidden;
  margin-right: -14px;
  opacity: 0;
}

.subpage-hero,
.route-grid,
.contact-layout,
.device-callouts,
.overview-section,
.spec-grid,
.plan-grid,
.comparison-table-card,
.subpage-cta {
  width: min(100%, var(--wrap));
  margin-inline: auto;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(300px, 360px);
  justify-content: space-between;
  gap: 54px;
  padding-top: 48px;
  align-items: start;
}

.subpage-copy h1 {
  margin: 28px 0 28px;
  max-width: 790px;
  color: var(--ink);
  font-size: 68px;
  line-height: 78px;
  overflow-wrap: anywhere;
}

.subpage-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 24px;
  line-height: 36px;
  overflow-wrap: anywhere;
}

.dark-note {
  min-height: 330px;
  padding: 50px 40px;
  border-radius: 18px;
  background: #081218;
  color: #fff;
}

.dark-note h2 {
  margin: 28px 0 16px;
  font-size: 29px;
  line-height: 36px;
  overflow-wrap: anywhere;
}

.dark-note p:not(.eyebrow) {
  margin: 0;
  color: #b8cccc;
  font-size: 17px;
  line-height: 25px;
  overflow-wrap: anywhere;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pill-row span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--mint-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.pill-row .pill-dark {
  background: #081218;
}

.price-mini {
  width: 260px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.price-mini span,
.price-mini em {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-mini strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 54px;
  line-height: 1;
}

.device-diagram {
  margin: 24px 0 0;
  padding: 42px 34px 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.device-card {
  position: relative;
  height: 236px;
  border-radius: 18px;
  background: linear-gradient(145deg, #182531, #09141c);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 26px 34px rgba(5, 15, 26, 0.18);
}

.antenna {
  position: absolute;
  top: -36px;
  width: 8px;
  height: 66px;
  border-radius: 999px;
  background: #081218;
}

.antenna-left {
  left: 58px;
  transform: rotate(-18deg);
}

.antenna-right {
  right: 58px;
  transform: rotate(18deg);
}

.router-face {
  position: absolute;
  inset: 42px 36px;
  display: grid;
  align-content: end;
  gap: 12px;
}

.router-face span {
  width: 64px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint);
}

.router-face strong {
  margin-top: 28px;
  color: #fff;
  font-size: 28px;
}

.device-diagram figcaption {
  margin-top: 30px;
}

.device-diagram figcaption strong,
.device-diagram figcaption span {
  display: block;
}

.device-diagram figcaption strong {
  font-size: 18px;
  line-height: 1.3;
}

.device-diagram figcaption span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
}

.device-callouts,
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 68px;
}

.device-callouts {
  grid-template-columns: repeat(5, 1fr);
}

.device-callouts article,
.route-grid article,
.spec-grid article,
.plan-card,
.comparison-table-card,
.form-card,
.info-card {
  border: 1px solid #d1e0de;
  border-radius: 14px;
  background: #fff;
}

.device-callouts article,
.route-grid article,
.spec-grid article {
  padding: 28px;
}

.callout-dot {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--mint);
}

.callout-dot.blue {
  background: #1e84d6;
}

.callout-dot.lime {
  background: #86b649;
}

.callout-dot.amber {
  background: #ad7400;
}

.callout-dot.violet {
  background: #7b68d8;
}

.device-callouts h2,
.route-grid h2,
.spec-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 28px;
  overflow-wrap: anywhere;
}

.device-callouts p,
.route-grid a,
.spec-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.route-grid h2 {
  margin-top: 22px;
  min-height: 86px;
}

.route-grid a {
  font-weight: 800;
}

.overview-section {
  margin-top: 104px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.subpage-cta {
  margin-top: 70px;
}

.subpage-cta span {
  display: block;
  max-width: 760px;
  margin-top: 10px;
  color: #b8cccc;
  font-size: 16px;
  line-height: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(300px, 390px);
  gap: 64px;
  margin-top: 72px;
  align-items: start;
}

.form-card,
.info-card {
  padding: 40px;
}

.form-card h2,
.info-card h2,
.comparison-table-card h2,
.plan-card h2 {
  margin: 18px 0 28px;
  color: var(--ink);
  font-size: 28px;
  line-height: 34px;
}

.form-card label {
  display: block;
  margin-top: 18px;
}

.form-card label span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid #d1e0de;
  border-radius: 8px;
  padding: 15px 16px;
  background: #f9fcfb;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.form-card textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
}

.form-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.info-card dl {
  margin: 0;
}

.info-card dt {
  margin-top: 22px;
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.info-card dd {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.info-card h3 {
  margin: 40px 0 16px;
  font-size: 22px;
}

.info-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 30px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 84px;
  margin-top: 68px;
}

.plan-card {
  overflow: hidden;
  padding: 28px;
}

.plan-card-featured {
  padding-top: 0;
}

.plan-card-featured h2 {
  margin: 0 -28px 20px;
  padding: 26px 28px;
  background: var(--mint-dark);
  color: #fff;
}

.plan-card dl {
  margin: 0;
}

.plan-card dt,
.plan-card dd {
  min-height: 62px;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid #d1e0de;
  font-size: 15px;
  line-height: 22px;
}

.plan-card dl {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1fr);
}

.plan-card dt {
  color: var(--muted);
  font-weight: 700;
}

.plan-card dd {
  color: var(--ink);
  font-weight: 800;
}

.comparison-table-card {
  margin-top: 84px;
  padding: 28px;
}

.comparison-table-card h2 {
  margin-top: 0;
}

.comparison-table {
  display: grid;
}

.comparison-table div {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) repeat(2, minmax(190px, 1fr));
  gap: 44px;
  border-bottom: 1px solid #d1e0de;
}

.comparison-table div:last-child {
  border-bottom: 0;
}

.comparison-table span {
  padding: 19px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 20px;
}

.comparison-table span:first-child,
.comparison-table .table-head span {
  color: var(--ink);
  font-weight: 800;
}

.comparison-table .table-head span {
  color: var(--mint-dark);
}

@media (max-width: 1180px) {
  :root {
    --wrap: 960px;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding-bottom: 104px;
  }

  .workflow-section {
    height: auto;
    padding-bottom: 57px;
  }

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

  .hero-copy {
    padding-top: 52px;
  }

  h1 {
    max-width: 840px;
  }

  .hero-body {
    max-width: 720px;
  }

  .portal-preview img {
    width: 100%;
    height: auto;
    aspect-ratio: 744 / 436;
  }

  .proof-bar,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    margin-top: 28px;
  }

  .feature-card {
    height: auto;
    min-height: 230px;
  }

  .proof-bar {
    height: auto;
    justify-content: stretch;
  }

  .timeline {
    gap: 40px;
    margin-top: 52px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .subpage-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .subpage-copy h1 {
    max-width: 900px;
    font-size: 58px;
    line-height: 68px;
  }

  .dark-note {
    min-height: 0;
  }

  .device-callouts,
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-grid {
    gap: 32px;
  }

  .comparison-table div {
    gap: 24px;
  }
}

@media (max-width: 820px) {
  :root {
    --wrap: 100%;
  }

  .hero,
  .value-section,
  .workflow-section,
  .pricing-section,
  .site-footer {
    padding-inline: 20px;
  }

  .subpage {
    padding-inline: 20px;
    padding-top: 20px;
  }

  .subpage-hero,
  .route-grid,
  .contact-layout,
  .device-callouts,
  .overview-section,
  .spec-grid,
  .plan-grid,
  .comparison-table-card,
  .subpage-cta {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 92px;
  }

  .nav {
    height: auto;
    padding: 16px;
    grid-template-columns: 1fr auto;
    row-gap: 16px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    gap: 22px;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 2px;
  }

  .nav-actions {
    justify-self: end;
  }

  .nav-actions .button-ghost {
    display: none;
  }

  .brand-name {
    font-size: 21px;
  }

  .hero-grid {
    margin-top: 8px;
  }

  .hero-copy {
    padding-top: 42px;
  }

  h1 {
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 48px;
    line-height: 56px;
  }

  .hero-body {
    font-size: 18px;
    line-height: 28px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .portal-preview figcaption {
    margin-left: 0;
    font-size: 13px;
    line-height: 1.4;
  }

  .proof-bar {
    width: calc(100% - 40px);
    margin-top: -32px;
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .proof-bar span {
    margin-bottom: 8px;
  }

  .proof-bar strong,
  .proof-bar div:first-child strong,
  .proof-bar div:last-child strong {
    font-size: 28px;
  }

  .value-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading h2 {
    margin-top: 24px;
    font-size: 38px;
    line-height: 46px;
  }

  .feature-grid,
  .pricing-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    margin-top: 28px;
    gap: 18px;
  }

  .feature-card {
    min-height: 0;
  }

  .icon-tile {
    margin-bottom: 28px;
  }

  .workflow-section {
    padding-top: 72px;
  }

  .timeline {
    margin-top: 34px;
    gap: 24px;
  }

  .timeline::before {
    left: 28px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 4px;
    height: auto;
  }

  .timeline li {
    min-height: 86px;
    padding-top: 0;
    padding-left: 82px;
  }

  .step-number {
    left: 0;
  }

  .pricing-section {
    padding-top: 72px;
  }

  .pricing-grid {
    margin-top: 34px;
    margin-bottom: 28px;
    gap: 20px;
  }

  .price-card,
  .price-card-featured {
    min-height: 0;
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 28px;
  }

  .footer-cta p {
    font-size: 22px;
  }

  .footer-inner {
    padding-top: 44px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 32px;
  }

  .subpage-nav .brand-mark {
    display: none;
  }

  .subpage-nav .brand-name {
    color: var(--ink);
  }

  .subpage-hero {
    gap: 30px;
    padding-top: 44px;
  }

  .subpage-copy h1 {
    margin: 24px 0;
    max-width: 100%;
    font-size: 46px;
    line-height: 54px;
  }

  .subpage-copy p:not(.eyebrow) {
    max-width: 100%;
    font-size: 19px;
    line-height: 29px;
  }

  .dark-note,
  .device-diagram,
  .form-card,
  .info-card,
  .comparison-table-card {
    padding: 28px;
  }

  .device-callouts,
  .route-grid,
  .spec-grid,
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .device-callouts,
  .route-grid,
  .contact-layout,
  .plan-grid,
  .comparison-table-card,
  .overview-section,
  .subpage-cta {
    margin-top: 48px;
  }

  .device-callouts article,
  .route-grid article,
  .spec-grid article {
    padding: 24px;
  }

  .route-grid h2 {
    min-height: 0;
  }

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

  .comparison-table {
    overflow-x: visible;
  }

  .comparison-table div {
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px 0;
  }

  .comparison-table .table-head {
    display: none;
  }

  .comparison-table span {
    padding: 4px 0;
  }

  .comparison-table div span:first-child {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .comparison-table div span:nth-child(2)::before {
    content: "Rent Slot: ";
    color: var(--mint-dark);
    font-weight: 800;
  }

  .comparison-table div span:nth-child(3)::before {
    content: "Rent Device: ";
    color: var(--mint-dark);
    font-weight: 800;
  }
}

@media (max-width: 520px) {
  .hero,
  .value-section,
  .workflow-section,
  .pricing-section,
  .site-footer {
    padding-inline: 16px;
  }

  .subpage {
    padding-inline: 16px;
  }

  .subpage-hero,
  .route-grid,
  .contact-layout,
  .device-callouts,
  .overview-section,
  .spec-grid,
  .plan-grid,
  .comparison-table-card,
  .subpage-cta {
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
  }

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

  .nav-actions {
    justify-self: start;
  }

  .nav-links {
    gap: 18px;
    font-size: 14px;
  }

  h1 {
    font-size: 40px;
    line-height: 46px;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .nav-actions {
    width: 100%;
  }

  .nav-actions .button {
    width: auto;
  }

  .section-heading h2 {
    font-size: 32px;
    line-height: 39px;
  }

  .feature-card p,
  .timeline p,
  .price-card li,
  .section-heading p:not(.eyebrow) {
    font-size: 17px;
    line-height: 26px;
  }

  .proof-bar strong,
  .proof-bar div:first-child strong,
  .proof-bar div:last-child strong {
    font-size: 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .subpage-copy h1 {
    font-size: 36px;
    line-height: 42px;
  }

  .subpage-copy p:not(.eyebrow) {
    font-size: 18px;
    line-height: 28px;
  }

  .dark-note h2,
  .footer-cta p {
    font-size: 22px;
    line-height: 29px;
  }

  .pill-row span {
    width: 100%;
    justify-content: center;
  }

  .price-mini {
    width: 100%;
  }

  .device-card {
    height: 190px;
  }

  .plan-card dl {
    grid-template-columns: 1fr;
  }

  .plan-card dt {
    min-height: 0;
    padding-bottom: 6px;
    border-bottom: 0;
  }

  .plan-card dd {
    min-height: 0;
    padding-top: 0;
  }

  .form-card .button,
  .subpage-cta .button {
    width: 100%;
  }
}
