:root {
  --home-hero-min-height: 690px;
  --home-poster-height: 600px;
  --home-feature-index-width: 320px;
  --home-feature-panel-min-height: 470px;
  --home-diagram-size: 230px;
  --home-status-min-width: 250px;
  --home-track-width: 5px;
  --home-track-muted-width: 2px;
  --home-node-stroke: 5px;
}

.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.home-hero-grid {
  display: grid;
  min-height: var(--home-hero-min-height);
  grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  align-items: center;
  gap: 42px;
  padding-top: 38px;
  padding-bottom: 38px;
}

.home-hero-copy {
  position: relative;
  z-index: 4;
}

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

.home-hero-copy .hero-actions {
  margin-top: 0;
  margin-bottom: 22px;
}

.home-hero-copy .hero-description {
  margin-bottom: 20px;
}

.hero-kicker .status-dot {
  flex-shrink: 0;
}

.hero-essentials {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}

.hero-essential-row {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.hero-essential-label {
  width: 66px;
  flex: 0 0 auto;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-platform-strip,
.hero-flag-strip {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 2px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.hero-platform-item,
.hero-flag-item {
  display: inline-flex;
  min-height: 30px;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  background: var(--color-panel);
  padding: 4px 8px;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-platform-item svg {
  color: var(--color-accent);
}

.hero-flag-item {
  color: var(--color-text);
}

.hero-flag-item svg {
  overflow: hidden;
  border-radius: 3px;
}

.split-route-poster {
  position: relative;
  height: var(--home-poster-height);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-accent);
  box-shadow: var(--shadow-window);
}

.split-route-poster::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 18%;
  border-right: 1px solid var(--color-border);
  background: var(--color-accent-dark);
  content: "";
}

.split-route-poster::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 52%;
  height: 34%;
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
  background: var(--color-panel-deep);
  content: "";
}

.poster-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--color-border) 1px, transparent 1px), linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.2;
}

.poster-code {
  position: absolute;
  top: 26px;
  left: 24%;
  z-index: 5;
  color: var(--color-border);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.poster-word {
  position: absolute;
  right: -24px;
  bottom: -46px;
  z-index: 2;
  color: var(--color-panel);
  font-family: var(--font-display);
  font-size: 280px;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
  opacity: 0.12;
}

.poster-route-map {
  position: absolute;
  inset: 52px 0 0;
  z-index: 3;
  width: 100%;
  height: calc(100% - 52px);
}

.poster-track {
  fill: none;
  stroke: var(--color-panel);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: var(--home-track-width);
}

.poster-track-muted {
  stroke: var(--color-border);
  stroke-width: var(--home-track-muted-width);
}

.poster-track-short {
  stroke: var(--color-success);
  stroke-width: 3px;
}

.poster-node {
  fill: var(--color-accent);
  stroke: var(--color-panel);
  stroke-width: var(--home-node-stroke);
}

.poster-node-main {
  fill: var(--color-success);
}

.poster-cut {
  fill: var(--color-panel-deep);
  opacity: 0.45;
}

.poster-label {
  position: absolute;
  z-index: 6;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  background: var(--color-accent-dark);
  padding: 5px 9px;
  color: var(--color-panel);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.poster-label-one {
  top: 29%;
  left: 7%;
  transform: rotate(-90deg);
}

.poster-label-two {
  right: 8%;
  bottom: 25%;
}

.poster-corner {
  position: absolute;
  top: 24px;
  left: 25px;
  z-index: 5;
  display: grid;
  gap: 8px;
}

.poster-corner span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-error);
}

.poster-corner span:nth-child(2) {
  background: var(--color-warning);
}

.poster-corner span:nth-child(3) {
  background: var(--color-success);
}

.home-fact-band {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-panel-deep);
}

.home-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-fact-grid span {
  padding: 17px 20px;
  border-right: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
}

.home-fact-grid span:first-child {
  border-left: 1px solid var(--color-border);
}

.home-fact-grid strong {
  color: var(--color-accent);
  font-size: 14px;
}

.home-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 34px;
}

.home-section-heading > div {
  flex: 0 1 620px;
}

.home-section-heading h2 {
  margin-bottom: 0;
}

.home-section-heading > p {
  max-width: 46em;
  margin-bottom: 3px;
  color: var(--color-text-muted);
}

.feature-browser {
  display: grid;
  grid-template-columns: minmax(250px, var(--home-feature-index-width)) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-panel);
  box-shadow: var(--shadow-window);
}

.feature-index {
  display: grid;
  align-content: start;
  border-right: 1px solid var(--color-border);
  background: var(--color-panel);
  padding: 10px;
}

.feature-task {
  display: flex;
  width: 100%;
  min-height: 70px;
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  background: transparent;
  padding: 11px 13px;
  color: var(--color-text);
  text-align: left;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.feature-task:last-child {
  border-bottom: 0;
}

.feature-task:hover,
.feature-task.is-active,
.feature-task[aria-selected="true"] {
  background: var(--color-panel-deep);
  color: var(--color-accent);
}

.feature-task-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-accent);
}

.feature-task-dot-success {
  background: var(--color-success);
}

.feature-task-dot-warning {
  background: var(--color-warning);
}

.feature-task > span:last-child {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.feature-task strong,
.feature-task small {
  overflow-wrap: anywhere;
}

.feature-task strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 850;
}

.feature-task small {
  color: var(--color-text-muted);
  font-size: 11.5px;
}

.feature-detail {
  min-height: var(--home-feature-panel-min-height);
  background-image: radial-gradient(var(--color-border) 1px, transparent 1px);
  background-size: 16px 16px;
  padding: 28px;
}

.feature-panel {
  min-height: calc(var(--home-feature-panel-min-height) - 56px);
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.45fr);
  align-items: center;
  gap: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-panel);
  padding: 38px;
}

.feature-panel.is-active {
  display: grid;
}

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

.feature-code {
  display: block;
  margin-bottom: 14px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-copy h3 {
  font-size: clamp(25px, 3vw, 36px);
}

.feature-copy p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 15.5px;
  line-height: 1.9;
}

.feature-diagram {
  position: relative;
  display: flex;
  width: min(100%, var(--home-diagram-size));
  min-height: var(--home-diagram-size);
  align-items: center;
  justify-content: center;
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-panel-deep);
}

.route-mini {
  gap: 9px;
  flex-direction: column;
}

.route-mini span {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-panel);
  padding: 5px 12px;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 750;
}

.route-mini i {
  display: block;
  width: 2px;
  height: 28px;
  background: var(--color-border);
}

.route-mini b {
  width: 15px;
  height: 15px;
  border: 4px solid var(--color-panel);
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 1px var(--color-border);
}

.privacy-mini {
  flex-wrap: wrap;
  align-content: center;
  gap: 8px;
  padding: 30px;
}

.privacy-mini > span:not(.mini-lock) {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-panel);
  padding: 4px 9px;
  color: var(--color-text-muted);
  font-size: 11px;
}

.mini-lock {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.device-mini {
  align-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px;
}

.device-mini span {
  display: inline-flex;
  width: 65px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  background: var(--color-panel);
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
}

.checklist-mini {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 30px;
}

.checklist-mini span {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  background: var(--color-panel);
  padding: 8px 10px;
  color: var(--color-text-muted);
  font-size: 11px;
}

.checklist-mini b {
  margin-right: 6px;
  color: var(--color-success);
}

.media-mini {
  flex-direction: column;
  gap: 18px;
}

.media-screen {
  position: relative;
  display: block;
  width: 130px;
  height: 82px;
  border: 7px solid var(--color-accent);
  border-radius: var(--radius-sm);
  background: var(--color-panel);
}

.media-screen i {
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--color-success);
  transform: translate(-40%, -50%);
}

.media-caption {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
}

.billing-mini {
  flex-direction: column;
  gap: 12px;
}

.billing-mini span {
  min-width: 100px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  background: var(--color-panel);
  padding: 8px 12px;
  color: var(--color-accent);
  font-weight: 800;
  text-align: center;
}

.billing-mini i {
  display: block;
  width: 1px;
  height: 30px;
  background: var(--color-accent);
}

.section-routes,
.section-pricing,
.section-blog {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-panel);
}

.route-guidance {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  margin-top: 24px;
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--color-panel-deep);
  padding: 24px;
}

.route-guidance h3 {
  font-size: 22px;
}

.route-guidance p {
  max-width: 70em;
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.route-all-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

.server-status-block {
  margin-top: 42px;
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
}

.server-status-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 20px;
}

.server-status-heading h3 {
  margin-bottom: 0;
}

.server-status-heading > p {
  max-width: 48em;
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.server-status {
  display: grid;
  min-height: 72px;
  grid-template-columns: repeat(2, minmax(var(--home-status-min-width), 1fr));
  gap: 10px;
}

.srv-row {
  display: grid;
  min-width: 0;
  min-height: 58px;
  grid-template-columns: auto auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  padding: 10px 13px;
}

.srv-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 3px var(--color-success-ring);
}

.srv-flag {
  width: 24px;
  height: 18px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.srv-name {
  min-width: 0;
  overflow: hidden;
  color: var(--color-text);
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.srv-type {
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: var(--color-panel-deep);
  padding: 3px 7px;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.srv-ms,
.srv-bw {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  white-space: nowrap;
}

.client-callout {
  margin-top: 24px;
}

.plan-audience {
  margin-bottom: 24px;
  color: var(--color-text-muted);
  font-size: 13.5px;
}

.traffic-pack-note {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 38px;
  margin-top: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-panel-deep);
  padding: 26px;
}

.traffic-pack-note h3 {
  margin-top: 14px;
  font-size: 22px;
}

.traffic-pack-note p {
  max-width: 72em;
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.traffic-pack-note .text-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

.decision-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 72px;
}

.decision-intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.decision-notes {
  display: grid;
  border-top: 1px solid var(--color-border);
}

.decision-notes article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--color-border);
  padding: 28px 0;
}

.decision-index {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  background: var(--color-accent);
  color: var(--color-panel);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
}

.decision-notes h3 {
  font-size: 21px;
}

.decision-notes p {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.section-link-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.home-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-accent);
  padding: 34px;
  color: var(--color-panel);
}

.home-cta-band h2 {
  margin-bottom: 9px;
  color: var(--color-panel);
  font-size: clamp(28px, 3.5vw, 42px);
}

.home-cta-band p {
  max-width: 52em;
  color: var(--color-border);
}

.home-cta-band .promo-brand {
  color: var(--color-panel);
}

.home-cta-band .btn-primary {
  flex: 0 0 auto;
  border-color: var(--color-panel);
  background: var(--color-panel);
  color: var(--color-accent);
}

.home-cta-band .btn-primary:hover {
  border-color: var(--color-panel-deep);
  background: var(--color-panel-deep);
}

@media (max-width: 1120px) {
  :root {
    --home-hero-min-height: 0px;
    --home-poster-height: 520px;
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  }

  .feature-panel {
    grid-template-columns: 1fr;
  }

  .feature-diagram {
    width: 100%;
    min-height: 160px;
    justify-self: stretch;
  }

  .server-status {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 34px;
  }

  .split-route-poster {
    height: 380px;
  }

  .poster-word {
    font-size: 220px;
  }

  .home-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .feature-browser {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .feature-detail {
    padding: 18px;
  }

  .feature-panel {
    padding: 26px;
  }

  .decision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .decision-intro {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --home-poster-height: 300px;
  }

  .home-hero-grid {
    gap: 24px;
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .home-hero-copy .hero-actions {
    margin-bottom: 16px;
  }

  .home-hero-copy .hero-description {
    font-size: 14px;
    line-height: 1.55;
  }

  .home-hero-copy .trust-list {
    gap: 5px;
  }

  .home-hero-copy .trust-list li {
    min-height: 25px;
    padding: 3px 8px;
    font-size: 11px;
  }

  .hero-essential-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .hero-essential-label {
    width: auto;
  }

  .hero-platform-strip,
  .hero-flag-strip {
    width: 100%;
  }

  .split-route-poster {
    height: var(--home-poster-height);
  }

  .poster-label,
  .poster-code {
    display: none;
  }

  .poster-word {
    right: -12px;
    bottom: -28px;
    font-size: 160px;
  }

  .poster-route-map {
    inset: 0;
    height: 100%;
  }

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

  .home-fact-grid span,
  .home-fact-grid span:first-child {
    border: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .home-fact-grid span:nth-child(odd) {
    border-right: 1px solid var(--color-border);
  }

  .feature-browser {
    display: block;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .feature-index {
    gap: 8px;
    border: 0;
    background: transparent;
    padding: 0;
  }

  .feature-task {
    min-height: 62px;
    border: 1px solid var(--color-border);
    background: var(--color-panel);
  }

  .feature-task:last-child {
    border-bottom: 1px solid var(--color-border);
  }

  .feature-detail {
    min-height: 0;
    margin-top: 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 12px;
  }

  .feature-panel {
    min-height: 0;
    padding: 22px;
  }

  .feature-diagram {
    display: none;
  }

  .feature-copy p {
    font-size: 14.5px;
    line-height: 1.8;
  }

  .route-guidance,
  .server-status-heading,
  .traffic-pack-note,
  .home-cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-all-link,
  .traffic-pack-note .text-link {
    white-space: normal;
  }

  .srv-row {
    grid-template-columns: auto auto minmax(0, 1fr) auto;
  }

  .srv-type,
  .srv-bw {
    display: none;
  }

  .home-cta-band .btn-primary {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .home-hero-copy .hero-kicker {
    margin-bottom: 13px;
  }

  .hero-platform-item,
  .hero-flag-item {
    font-size: 10px;
  }

  .split-route-poster {
    height: 250px;
  }

  .poster-corner {
    top: 16px;
    left: 16px;
  }

  .home-fact-grid span {
    padding: 13px 7px;
    font-size: 10px;
  }

  .home-fact-grid strong {
    display: block;
    font-size: 13px;
  }

  .feature-detail {
    padding: 8px;
  }

  .feature-panel {
    padding: 18px;
  }

  .route-guidance,
  .traffic-pack-note,
  .home-cta-band {
    padding: 22px;
  }

  .decision-notes article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .srv-ms {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-task {
    transition: none;
  }
}