.page-home {
  --hero-bg: radial-gradient(ellipse at 70% 30%, rgba(157, 78, 221, 0.18) 0%, transparent 55%), radial-gradient(ellipse at 20% 70%, rgba(0, 229, 255, 0.12) 0%, transparent 50%), linear-gradient(165deg, #0A1128 0%, #0F1B3D 60%, #0A1128 100%);
  --cabin-cut: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  --panel-glow: 0 0 0 1px rgba(0, 229, 255, 0.08), 0 20px 60px rgba(0, 0, 0, 0.4);
  --route-line: linear-gradient(135deg, transparent 35%, rgba(0, 229, 255, 0.5) 50%, transparent 65%);
}

.page-home .hero-frame {
  position: relative;
  min-height: min(92vh, 780px);
  display: flex;
  align-items: center;
  background: var(--hero-bg);
  border-bottom: 1px solid rgba(0, 229, 255, 0.25);
  overflow: hidden;
  isolation: isolate;
}

.page-home .hero-frame__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: -1;
}

.page-home .hero-frame__inner {
  width: min(1120px, 100% - 48px);
  margin-inline: auto;
  padding-block: clamp(48px, 8vw, 96px);
}

.page-home .hero-frame__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.page-home .chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  border: 1px solid rgba(224, 225, 221, 0.2);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.page-home .chip--cyan {
  color: var(--c-cyan);
  border-color: rgba(0, 229, 255, 0.4);
  background: rgba(0, 229, 255, 0.08);
}

.page-home .chip--ghost {
  color: var(--c-muted);
}

.page-home .hero-frame__title {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: clamp(30px, 6vw, 58px);
  line-height: 1.08;
  color: var(--c-light);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: 660px;
  text-transform: uppercase;
}

.page-home .hero-frame__desc {
  font-family: var(--f-body);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.8;
  color: var(--c-muted);
  max-width: 520px;
  margin: 0 0 28px;
}

.page-home .hero-frame__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.page-home .btn:hover,
.page-home .btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.page-home .btn--primary {
  background: linear-gradient(135deg, var(--c-purple), var(--c-indigo));
  color: var(--c-light);
}

.page-home .btn--ghost {
  background: rgba(10, 17, 40, 0.6);
  color: var(--c-cyan);
  border: 1px solid rgba(0, 229, 255, 0.4);
}

.page-home .btn--small {
  padding: 8px 14px;
  font-size: 12px;
}

.page-home .hero-frame__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(224, 225, 221, 0.12);
}

.page-home .legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .legend__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--c-muted);
}

.page-home .legend__mark {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
}

.page-home .legend__mark--purple {
  background: var(--c-purple);
  transform: rotate(45deg);
}

.page-home .legend__mark--cyan {
  background: var(--c-cyan);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20% 50%);
}

.page-home .legend__mark--ruby {
  background: var(--c-ruby);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(201, 24, 74, 0.6);
}

.page-home .legend__mark--amber {
  background: var(--c-amber);
  border-radius: 2px;
}

.page-home .legend__mark--line {
  height: 2px;
  align-self: center;
  background: var(--route-line);
  background-size: 200% 100%;
}

.page-home .hero-frame__coords {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.page-home .hero-frame__coord {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(0, 229, 255, 0.5);
  padding: 4px 8px;
  background: rgba(10, 17, 40, 0.5);
  border: 1px solid rgba(0, 229, 255, 0.15);
}

.page-home .hero-frame__coord--tl {
  top: 16px;
  left: 16px;
  border-right: none;
  border-bottom: none;
}

.page-home .hero-frame__coord--tr {
  top: 16px;
  right: 16px;
  border-left: none;
  border-bottom: none;
}

.page-home .hero-frame__coord--bl {
  bottom: 16px;
  left: 16px;
  border-right: none;
  border-top: none;
}

.page-home .hero-frame__coord--br {
  bottom: 16px;
  right: 16px;
  border-left: none;
  border-top: none;
}

.page-home .section {
  position: relative;
  padding-block: clamp(48px, 7vw, 88px);
}

.page-home .section--tint {
  background: linear-gradient(180deg, rgba(157, 78, 221, 0.04), transparent 60%);
}

.page-home .container {
  width: min(var(--max), 100% - 48px);
  margin-inline: auto;
}

.page-home .container--narrow {
  width: min(860px, 100% - 48px);
  margin-inline: auto;
}

.page-home .section--narrow {
  width: min(1050px, 100% - 48px);
  margin-inline: auto;
  padding-inline: 0;
}

.page-home .section-head {
  margin-bottom: clamp(28px, 5vw, 44px);
}

.page-home .section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.page-home .section-head__kicker {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cyan);
  margin: 0 0 8px;
}

.page-home .section-head__title {
  font-family: var(--f-head);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: var(--c-light);
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.page-home .section-head__desc {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
  max-width: 560px;
  margin: 0;
}

.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.page-home .filter-btn {
  appearance: none;
  border: 1px solid rgba(224, 225, 221, 0.2);
  background: transparent;
  color: var(--c-muted);
  font-family: var(--f-body);
  font-size: 12px;
  padding: 7px 14px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.page-home .filter-btn:hover {
  border-color: rgba(0, 229, 255, 0.5);
  color: var(--c-cyan);
}

.page-home .filter-btn[data-active] {
  background: var(--c-cyan);
  border-color: var(--c-cyan);
  color: var(--c-space);
  font-weight: 700;
}

.page-home .cabin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .cabin-card {
  position: relative;
  background: var(--c-glass);
  border: 1px solid rgba(224, 225, 221, 0.08);
  clip-path: var(--cabin-cut);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  overflow: hidden;
}

.page-home .cabin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--panel-glow);
  border-color: rgba(0, 229, 255, 0.25);
}

.page-home .cabin-card__media {
  position: relative;
  overflow: hidden;
}

.page-home .cabin-card__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.3s var(--ease);
}

.page-home .cabin-card:hover .cabin-card__media img {
  transform: scale(1.04);
}

.page-home .media-frame__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--c-cyan);
  background: rgba(10, 17, 40, 0.75);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 4px 8px;
  backdrop-filter: blur(4px);
}

.page-home .cabin-card__body {
  padding: 18px 20px 20px;
}

.page-home .cabin-card__title {
  font-family: var(--f-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-light);
  margin: 0 0 8px;
}

.page-home .cabin-card__desc {
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0 0 14px;
}

.page-home .cabin-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .coord-chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  border: 1px solid rgba(224, 225, 221, 0.15);
  background: rgba(10, 17, 40, 0.4);
}

.page-home .cabin-card__link {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-cyan);
  text-decoration: none;
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.page-home .cabin-card__link:hover {
  gap: 6px;
  color: #66f1ff;
}

.page-home .cabin-card--more {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.12), rgba(10, 17, 40, 0.75));
  border: 1px solid rgba(157, 78, 221, 0.2);
}

.page-home .cabin-card__body--center {
  text-align: center;
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.page-home .cabin-card__more-num {
  font-family: var(--f-head);
  font-size: 44px;
  font-weight: 900;
  color: var(--c-purple);
  margin: 0 0 4px;
  line-height: 1;
}

.page-home .cabin-card__more-label {
  font-family: var(--f-head);
  font-size: 14px;
  color: var(--c-light);
  margin: 0 0 8px;
}

.page-home .cabin-card__more-desc {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-muted);
  margin: 0 0 18px;
}

.page-home .pulse-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .pulse-card {
  position: relative;
  background: var(--c-glass);
  border: 1px solid rgba(224, 225, 221, 0.08);
}

.page-home .tone {
  transition: box-shadow 0.25s var(--ease);
}

.page-home .tone--purple:hover {
  box-shadow: 0 0 0 1px rgba(157, 78, 221, 0.3), 0 16px 50px rgba(157, 78, 221, 0.12);
}

.page-home .tone--cyan:hover {
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.3), 0 16px 50px rgba(0, 229, 255, 0.1);
}

.page-home .tone--ruby:hover {
  box-shadow: 0 0 0 1px rgba(201, 24, 74, 0.3), 0 16px 50px rgba(201, 24, 74, 0.1);
}

.page-home .pulse-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .pulse-card__badge {
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-light);
  background: var(--c-purple);
  padding: 3px 10px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.page-home .pulse-card__badge--cyan {
  background: var(--c-cyan);
  color: var(--c-space);
}

.page-home .pulse-card__badge--ruby {
  background: var(--c-ruby);
}

.page-home .pulse-card__cycle {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--c-muted);
}

.page-home .pulse-card__media {
  overflow: hidden;
}

.page-home .pulse-card__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-home .pulse-card__body {
  padding: 16px 18px 18px;
}

.page-home .pulse-card__title {
  font-family: var(--f-head);
  font-size: 17px;
  color: var(--c-light);
  margin: 0 0 8px;
}

.page-home .pulse-card__desc {
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0 0 14px;
}

.page-home .pulse-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page-home .pulse-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--c-amber);
}

.page-home .pulse-card__status--read {
  color: var(--c-success);
}

.page-home .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-amber);
  box-shadow: 0 0 8px rgba(255, 209, 102, 0.6);
  display: inline-block;
}

.page-home .status-dot--success {
  background: var(--c-success);
  box-shadow: 0 0 8px rgba(6, 255, 165, 0.5);
}

.page-home .pulse-tip {
  margin-top: 24px;
}

.page-home .notice-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-left: 3px solid var(--c-cyan);
  margin-top: 28px;
}

.page-home .notice-box p {
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0;
}

.page-home .notice-box__icon {
  font-size: 18px;
  flex-shrink: 0;
}

.page-home .settings-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-home .settings-demo {
  background: rgba(10, 17, 40, 0.85);
  border: 1px solid rgba(157, 78, 221, 0.25);
  padding: clamp(20px, 4vw, 32px);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.page-home .settings-demo__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(224, 225, 221, 0.1);
  padding-bottom: 14px;
  margin-bottom: 6px;
}

.page-home .settings-demo__title {
  font-family: var(--f-head);
  font-size: 14px;
  color: var(--c-light);
}

.page-home .settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(224, 225, 221, 0.06);
}

.page-home .settings-row__info {
  flex: 1;
}

.page-home .settings-row__name {
  display: block;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-light);
  margin-bottom: 3px;
}

.page-home .settings-row__desc {
  display: block;
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--c-muted);
}

.page-home .settings-switch {
  width: 46px;
  height: 26px;
  border: 1px solid rgba(224, 225, 221, 0.25);
  background: rgba(10, 17, 40, 0.6);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
  flex-shrink: 0;
}

.page-home .settings-switch__track {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.page-home .settings-switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-muted);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.page-home .settings-switch--on {
  border-color: rgba(157, 78, 221, 0.5);
  background: rgba(157, 78, 221, 0.25);
}

.page-home .settings-switch--on .settings-switch__thumb {
  transform: translateX(20px);
  background: var(--c-cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.page-home .settings-switch:focus-visible {
  outline: 2px solid var(--c-cyan);
  outline-offset: 2px;
}

.page-home .settings-demo__note {
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--c-muted);
  margin: 14px 0 0;
  opacity: 0.75;
}

.page-home .refresh-visual {
  background: transparent;
  padding: 20px 0;
}

.page-home .refresh-visual__track {
  position: relative;
  height: 60px;
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
  margin-bottom: 12px;
  overflow: hidden;
}

.page-home .refresh-visual__dot {
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
  animation: home-slide 3s var(--ease) infinite;
}

.page-home .refresh-visual__dot--1 {
  animation-delay: 0s;
}

.page-home .refresh-visual__dot--2 {
  animation-delay: 0.75s;
  top: auto;
  bottom: -2px;
}

.page-home .refresh-visual__dot--3 {
  animation-delay: 1.5s;
}

.page-home .refresh-visual__dot--4 {
  animation-delay: 2.25s;
}

@keyframes home-slide {
  0% {
    left: -10px;
    opacity: 0;
    transform: translateX(0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 0px);
    opacity: 0;
    transform: translateX(-6px);
  }
}

.page-home .refresh-visual__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.page-home .refresh-visual__time {
  font-family: var(--f-mono);
  font-size: 20px;
  color: var(--c-cyan);
  letter-spacing: 0.08em;
}

.page-home .refresh-visual__text {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-muted);
}

.page-home .refresh-visual__scale {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-muted);
  border-top: 1px solid rgba(224, 225, 221, 0.1);
  padding-top: 6px;
}

.page-home .android-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.page-home .android-visual {
  max-width: 260px;
  margin-inline: auto;
  position: relative;
}

.page-home .android-visual img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid rgba(0, 229, 255, 0.25);
}

.page-home .media-frame__badge--bottom {
  bottom: 10px;
  top: auto;
  left: 10px;
}

.page-home .android-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-home .step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.page-home .step-item {
  display: flex;
  gap: 16px;
  position: relative;
}

.page-home .step-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 44px;
  bottom: -22px;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.3), transparent);
}

.page-home .step-item:last-child::before {
  display: none;
}

.page-home .step-item__num {
  flex: 0 0 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-cyan);
  border: 1px solid rgba(0, 229, 255, 0.3);
  background: rgba(10, 17, 40, 0.8);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  z-index: 1;
}

.page-home .step-item__title {
  font-family: var(--f-head);
  font-size: 15px;
  color: var(--c-light);
  margin: 0 0 5px;
}

.page-home .step-item__desc {
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0;
}

.page-home .data-sample {
  padding: 18px 20px;
  background: var(--c-glass);
  border: 1px solid rgba(157, 78, 221, 0.2);
}

.page-home .data-sample__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.page-home .data-sample__caption {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--c-muted);
}

.page-home .data-sample__row {
  display: grid;
  grid-template-columns: 1fr 1fr 0.5fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(224, 225, 221, 0.07);
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-muted);
}

.page-home .data-sample__row:last-child {
  border-bottom: none;
}

.page-home .data-sample__row--head {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--c-cyan);
  text-transform: uppercase;
}

.page-home .data-sample__row span:nth-child(2) {
  font-weight: 600;
  color: var(--c-light);
}

.page-home .data-sample__up {
  color: var(--c-success);
  font-weight: 600;
}

.page-home .data-sample__down {
  color: var(--c-amber);
  font-weight: 600;
}

.page-home .route-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .route-path {
  display: none;
}

.page-home .route-step {
  position: relative;
  padding: clamp(20px, 4vw, 28px);
  background: var(--c-glass);
  border: 1px solid rgba(224, 225, 221, 0.08);
  overflow: hidden;
}

.page-home .route-step__icon {
  font-family: var(--f-head);
  font-size: 32px;
  font-weight: 900;
  color: rgba(224, 225, 221, 0.15);
  line-height: 1;
  margin-bottom: 14px;
  display: inline-block;
}

.page-home .route-step__title {
  font-family: var(--f-head);
  font-size: 18px;
  color: var(--c-light);
  margin: 0 0 8px;
}

.page-home .route-step__desc {
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0 0 16px;
}

.page-home .route-step__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(224, 225, 221, 0.35);
}

.page-home .faq-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding: clamp(18px, 4vw, 26px);
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.16), rgba(10, 17, 40, 0.8));
  border: 1px solid rgba(157, 78, 221, 0.25);
}

.page-home .faq-teaser__title {
  font-family: var(--f-head);
  font-size: 16px;
  color: var(--c-light);
  margin: 0 0 6px;
}

.page-home .faq-teaser__desc {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-muted);
  margin: 0;
}

.page-home .trust-panel {
  padding: clamp(24px, 5vw, 36px);
  background: rgba(10, 17, 40, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.15);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.page-home .trust-panel__kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-cyan);
}

.page-home .trust-panel__title {
  font-family: var(--f-head);
  font-size: clamp(20px, 3vw, 28px);
  color: var(--c-light);
  margin: 6px 0 24px;
}

.page-home .trust-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
  margin-bottom: 24px;
}

.page-home .trust-item {
  text-align: left;
}

.page-home .trust-item__num {
  font-family: var(--f-head);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  color: var(--c-light);
  line-height: 1.1;
  display: block;
  margin-bottom: 4px;
}

.page-home .trust-item__num .trust-item__unit {
  font-size: 0.55em;
  color: var(--c-purple);
  margin-left: 4px;
}

.page-home .trust-item__label {
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--c-muted);
}

.page-home .trust-panel__foot {
  border-top: 1px solid rgba(224, 225, 221, 0.1);
  padding-top: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page-home .trust-panel__foot p {
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0;
  max-width: 560px;
}

.page-home .trust-panel__icp {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-muted);
  white-space: nowrap;
  padding: 4px 10px;
  border: 1px solid rgba(224, 225, 221, 0.15);
}

.page-home .contact-teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 5vw, 36px);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(10, 17, 40, 0.85));
  border: 1px solid rgba(0, 229, 255, 0.16);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.page-home .contact-teaser__title {
  font-family: var(--f-head);
  font-size: clamp(18px, 3vw, 24px);
  color: var(--c-light);
  margin: 0 0 8px;
}

.page-home .contact-teaser__desc {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-muted);
  margin: 0 0 18px;
  max-width: 380px;
  line-height: 1.7;
}

.page-home .contact-teaser__contact {
  text-align: left;
  padding: 16px 20px;
  background: rgba(10, 17, 40, 0.6);
  border: 1px solid rgba(224, 225, 221, 0.1);
}

.page-home .contact-teaser__email {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--c-cyan);
  margin: 8px 0 4px;
}

.page-home .contact-teaser__phone {
  font-family: var(--f-head);
  font-size: 18px;
  color: var(--c-light);
  margin: 0;
}

@media (min-width: 640px) {
  .page-home .cabin-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .pulse-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .page-home .trust-panel__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .route-layout {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .page-home .settings-layout {
    grid-template-columns: 5fr 4fr;
    gap: 48px;
  }

  .page-home .android-layout {
    grid-template-columns: 260px 1fr;
    gap: 48px;
  }

  .page-home .route-path {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.4), rgba(157, 78, 221, 0.4));
    z-index: 0;
  }

  .page-home .route-path__node {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--c-space);
    border: 2px solid var(--c-cyan);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
  }

  .page-home .route-path__node--1 {
    left: 16.6%;
  }

  .page-home .route-path__node--2 {
    left: 50%;
  }

  .page-home .route-path__node--3 {
    right: 16.6%;
  }

  .page-home .route-step {
    z-index: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .refresh-visual__dot {
    animation: none;
    display: none;
  }

  .page-home .cabin-card__media img {
    transition: none;
  }

  .page-home .cabin-card,
  .page-home .btn {
    transition: none;
  }

  .page-home .cabin-card:hover {
    transform: none;
  }

  .page-home .btn:hover {
    transform: none;
  }
}
