.home-page {
  display: grid;
  gap: 18px;
  width: min(100%, 1540px);
  margin-inline: auto;
  padding: clamp(18px, 2.7vw, 42px);
}

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

.home-page h1,
.home-page h2 { text-wrap: balance; }

.home-page h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.home-page h2 {
  margin-bottom: 11px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -.025em;
}

.home-page p {
  color: var(--muted);
  line-height: 1.65;
}

.home-referral-strip {
  min-width: 0;
}

.home-referral-banner {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  height: 104px;
  padding-right: 18px;
  overflow: hidden;
  border: 1px solid #6847cd;
  border-radius: 16px;
  background:
    radial-gradient(circle at 56px 50%, rgba(140, 99, 255, .36), transparent 100px),
    #11101d;
  color: #f7f9ff;
  text-decoration: none;
  isolation: isolate;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.home-referral-banner:hover {
  transform: translateY(-2px);
  border-color: #8c63ff;
  box-shadow: 0 12px 30px rgba(64, 35, 142, .22);
}

.home-referral-banner:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.home-referral-portal {
  display: grid;
  width: 96px;
  height: 96px;
  margin-left: 8px;
  place-items: center;
  border: 2px solid #8c63ff;
  border-radius: 50%;
  box-shadow:
    inset 0 0 18px rgba(140, 99, 255, .45),
    0 0 18px rgba(140, 99, 255, .3);
}

.home-referral-portal img {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .45));
  transform-origin: 50% 68%;
  animation: home-referral-miner-float 2.8s ease-in-out infinite;
  will-change: transform;
}

.home-referral-copy {
  z-index: 2;
  display: grid;
  min-width: 0;
  gap: 3px;
}

.home-referral-copy strong {
  overflow: hidden;
  color: #d5c9ff;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 950;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-referral-copy > span {
  overflow: hidden;
  color: #b8c4d8;
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-referral-action {
  z-index: 2;
  justify-self: end;
  padding: 10px 13px;
  border-radius: 999px;
  background: #8c63ff;
  color: #fff;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
}

@keyframes home-referral-miner-float {
  0%,
  100% {
    transform: translate3d(0, 2px, 0) rotate(-1.5deg) scale(.98);
  }

  50% {
    transform: translate3d(0, -7px, 0) rotate(1.5deg) scale(1.03);
  }
}

.home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--cyan);
  font: 900 .62rem/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  content: "";
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(500px, 1.22fr);
  gap: 12px;
}

.home-hero-copy,
.home-hero-visual,
.home-drawer,
.home-mobile,
.home-path {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #101722;
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 390px;
  padding: clamp(28px, 4.5vw, 58px);
  background:
    radial-gradient(circle at 14% 8%, rgba(74, 217, 245, .1), transparent 34%),
    linear-gradient(145deg, #111b28, #0d141e);
}

.home-hero-copy > p {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: .88rem;
}

.home-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #95a7ba;
  font-size: .63rem;
  font-weight: 750;
}

.home-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

@media (max-width: 560px) {
  .home-referral-banner {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 6px;
    height: 96px;
    padding-right: 8px;
    border-radius: 13px;
  }

  .home-referral-portal {
    width: 56px;
    height: 56px;
    margin-left: 4px;
  }

  .home-referral-portal img {
    width: 48px;
    height: 48px;
  }

  .home-referral-copy strong {
    font-size: 18px;
  }

  .home-referral-copy > span {
    font-size: 9.5px;
  }

  .home-referral-action {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-referral-banner {
    transition: none;
  }

  .home-referral-portal img {
    animation: none;
  }
}

.home-hero-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
}

.home-hero-visual::after,
.home-drawer-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(5, 9, 14, .68));
  content: "";
  pointer-events: none;
}

.home-hero-visual img,
.home-drawer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.home-drawer {
  overflow: hidden;
}

.home-drawer > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  background: #151e2b;
}

.home-drawer > header b {
  font-size: .7rem;
  letter-spacing: .07em;
}

.home-drawer > header span {
  color: var(--cyan);
  font: 850 .58rem ui-monospace, SFMono-Regular, Consolas, monospace;
}

.home-drawer-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.home-drawer-content {
  padding: 20px 15px 15px;
}

.home-drawer-content > p {
  min-height: 58px;
  margin-bottom: 17px;
  font-size: .69rem;
}

.home-drawer-content > a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 10px 8px;
  border-top: 1px solid var(--line);
  transition: background .16s ease, border-color .16s ease;
}

.home-drawer-content > a:hover {
  border-color: rgba(74, 217, 245, .3);
  background: rgba(74, 217, 245, .045);
}

.home-drawer-content > a i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 7px;
  color: #07121b;
  background: var(--cyan);
  font: normal 900 .56rem ui-monospace, SFMono-Regular, Consolas, monospace;
}

.home-drawer-connect .home-drawer-content > a i { background: var(--green); }
.home-drawer-act .home-drawer-content > a i { background: var(--gold); }

.home-drawer-content > a span {
  display: grid;
  gap: 4px;
}

.home-drawer-content > a strong { font-size: .7rem; }
.home-drawer-content > a small { color: var(--muted); font-size: .58rem; line-height: 1.4; }

.home-premium-loop {
  position: relative;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 181, 46, .28);
  border-radius: 17px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 181, 46, .11), transparent 31%),
    radial-gradient(circle at 92% 82%, rgba(74, 217, 245, .08), transparent 33%),
    linear-gradient(145deg, #111720, #0b111a 68%);
}

.home-premium-loop::before {
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 30px 30px;
  content: "";
  pointer-events: none;
}

.home-premium-head,
.home-premium-track,
.home-premium-foot {
  position: relative;
  z-index: 1;
}

.home-premium-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 24px;
}

.home-premium-head h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
}

.home-premium-head p {
  max-width: 670px;
  margin-bottom: 0;
  font-size: .76rem;
}

.home-premium-kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--gold);
  font: 900 .6rem/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-premium-kicker i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(255, 181, 46, .7);
}

.home-premium-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.home-premium-track {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) 22px minmax(0, 1fr) 22px minmax(0, 1fr) 22px
    minmax(0, 1fr) 22px minmax(0, 1fr);
  align-items: stretch;
  padding-bottom: 48px;
}

.home-premium-track::before {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 26px;
  border: 2px solid #43505d;
  border-radius: 14px;
  background:
    repeating-linear-gradient(90deg, #111923 0 25px, #3b4753 26px 29px);
  box-shadow: inset 0 0 0 3px #0a1018, 0 8px 18px rgba(0, 0, 0, .3);
  content: "";
  animation: home-premium-belt-x 1.2s linear infinite;
}

.home-premium-step {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(129, 151, 176, .2);
  border-radius: 13px;
  background: rgba(14, 22, 33, .94);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
  animation: home-premium-focus 15s ease-in-out infinite;
  animation-delay: var(--step-delay);
}

.home-premium-step::before {
  position: absolute;
  top: 0;
  right: 12px;
  left: 12px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--machine-color, var(--cyan)), transparent);
  content: "";
  box-shadow: 0 0 12px var(--machine-color, var(--cyan));
}

.home-premium-step::after {
  position: absolute;
  right: 18px;
  bottom: -33px;
  left: 18px;
  height: 34px;
  border-right: 5px solid #253342;
  border-left: 5px solid #253342;
  content: "";
  pointer-events: none;
}

.home-premium-step-mode { --machine-color: var(--green); }
.home-premium-step-bot { --machine-color: var(--gold); }
.home-premium-step-track { --machine-color: #9568ff; }
.home-premium-step-analyse { --machine-color: #ff6290; }

.home-premium-step-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.home-premium-step-head b {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 181, 46, .35);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(255, 181, 46, .07);
  font: 900 .56rem ui-monospace, SFMono-Regular, Consolas, monospace;
}

.home-premium-step-head span {
  color: #788ba0;
  font: 850 .49rem ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .11em;
}

.home-premium-visual {
  min-height: 132px;
  margin-bottom: 15px;
  padding: 11px;
  border: 1px solid rgba(74, 217, 245, .13);
  border-radius: 10px;
  background: #09121d;
}

.home-premium-visual > small {
  display: block;
  margin-bottom: 9px;
  color: #71879e;
  font: 850 .45rem ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .09em;
}

.home-premium-step h3 {
  margin: 0 0 7px;
  color: #eff5fb;
  font-size: .8rem;
  line-height: 1.25;
}

.home-premium-step > p {
  margin: 0;
  color: #8fa0b4;
  font-size: .59rem;
  line-height: 1.52;
}

.home-premium-step > p strong { color: #cbd7e4; }

.home-premium-tool-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 8px;
  align-items: center;
  margin-top: 13px;
  padding: 9px 10px;
  border: 1px solid rgba(74, 217, 245, .2);
  border-radius: 8px;
  color: #e6f6fb;
  background: rgba(74, 217, 245, .055);
  font-size: .55rem;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.home-premium-tool-link span {
  grid-column: 1 / -1;
  color: #6f879c;
  font: 850 .42rem ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.home-premium-tool-link b { color: var(--cyan); }

.home-premium-tool-link:hover,
.home-premium-tool-link:focus-visible {
  border-color: rgba(74, 217, 245, .55);
  outline: none;
  background: rgba(74, 217, 245, .11);
  transform: translateY(-1px);
}

.home-premium-connector {
  position: relative;
  z-index: 3;
  align-self: center;
  height: 2px;
  overflow: visible;
  background: rgba(129, 151, 176, .22);
}

.home-premium-connector::after {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 13px rgba(255, 181, 46, .9);
  content: "";
  animation: home-premium-signal-x 3s ease-in-out infinite;
}

.home-premium-data-capsule {
  position: absolute;
  z-index: 5;
  bottom: 13px;
  left: 0;
  padding: 5px 8px;
  border: 1px solid rgba(255, 181, 46, .8);
  border-radius: 9px;
  color: #171006;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(255, 181, 46, .55);
  font: 950 .42rem/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .06em;
  animation: home-premium-capsule-x 15s linear infinite;
}

.home-premium-clan-ui > span,
.home-premium-bot-ui > span {
  display: grid;
  grid-template-columns: 7px 1fr auto;
  gap: 6px;
  align-items: center;
  min-height: 25px;
  padding: 5px 6px;
  border-top: 1px solid rgba(129, 151, 176, .12);
  color: #9eb0c2;
  font-size: .46rem;
}

.home-premium-clan-ui > span i,
.home-premium-bot-ui > span i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #52667b;
}

.home-premium-clan-ui > span b,
.home-premium-bot-ui > span b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-premium-clan-ui > span em,
.home-premium-bot-ui > span em { color: var(--cyan); font-style: normal; font-weight: 850; }

.home-premium-clan-ui > span.is-selected {
  border: 1px solid rgba(76, 224, 168, .36);
  border-radius: 6px;
  color: #eaf7f2;
  background: rgba(76, 224, 168, .09);
}

.home-premium-clan-ui > span.is-selected i { background: var(--green); box-shadow: 0 0 7px var(--green); }
.home-premium-clan-ui > span.is-selected em { color: var(--green); }

.home-premium-mode-ui > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 13px 0 12px;
}

.home-premium-mode-ui > div span {
  display: grid;
  min-height: 45px;
  place-items: center;
  border: 1px solid rgba(129, 151, 176, .2);
  border-radius: 8px;
  color: #8fa2b7;
  background: #101b29;
  font-size: .54rem;
  font-weight: 900;
}

.home-premium-mode-ui > div .is-boost {
  border-color: rgba(255, 181, 46, .43);
  color: var(--gold);
  background: rgba(255, 181, 46, .1);
  box-shadow: inset 0 -2px var(--gold);
}

.home-premium-mode-ui > em {
  display: block;
  color: #708399;
  font-size: .46rem;
  font-style: normal;
  text-align: center;
}

.home-premium-bot-ui > span em { color: var(--green); }
.home-premium-bot-ui > span i { background: var(--green); box-shadow: 0 0 6px rgba(76, 224, 168, .65); }

.home-premium-chart {
  display: flex;
  height: 67px;
  gap: 5px;
  align-items: flex-end;
  padding: 8px 5px 0;
  border-bottom: 1px solid rgba(74, 217, 245, .25);
}

.home-premium-chart i {
  flex: 1;
  height: var(--bar-height, 35%);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--cyan), #21678b);
  transform-origin: center bottom;
  animation: home-premium-bars 2.6s ease-in-out infinite alternate;
}

.home-premium-chart i:nth-child(1) { --bar-height: 28%; }
.home-premium-chart i:nth-child(2) { --bar-height: 45%; animation-delay: .2s; }
.home-premium-chart i:nth-child(3) { --bar-height: 52%; animation-delay: .4s; }
.home-premium-chart i:nth-child(4) { --bar-height: 73%; animation-delay: .6s; }
.home-premium-chart i:nth-child(5) { --bar-height: 91%; animation-delay: .8s; background: linear-gradient(180deg, var(--green), #16795c); }

.home-premium-stats-ui > span {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #8598ac;
  font-size: .45rem;
}

.home-premium-stats-ui > span em { color: var(--green); font-style: normal; font-weight: 900; }

.home-premium-analysis-ui > div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 0;
  border-top: 1px solid rgba(129, 151, 176, .12);
  color: #8396aa;
  font-size: .48rem;
}

.home-premium-analysis-ui > div b { color: #e4edf6; }
.home-premium-analysis-ui > div b.is-positive { color: var(--green); }

.home-premium-analysis-ui > em {
  display: block;
  margin-top: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 181, 46, .28);
  border-radius: 6px;
  color: var(--gold);
  background: rgba(255, 181, 46, .07);
  font-size: .44rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .07em;
  text-align: center;
}

.home-premium-foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(129, 151, 176, .18);
  color: #899bad;
  font-size: .57rem;
}

.home-premium-foot span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.home-premium-foot span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(74, 217, 245, .8);
}

.home-premium-foot strong {
  color: #c6d2df;
  font-size: .57rem;
}

@keyframes home-premium-focus {
  0%,
  16% {
    border-color: rgba(255, 181, 46, .58);
    box-shadow: 0 15px 34px rgba(0, 0, 0, .28), 0 0 24px rgba(255, 181, 46, .1);
    transform: translateY(-3px);
  }
  22%,
  100% {
    border-color: rgba(129, 151, 176, .2);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
    transform: translateY(0);
  }
}

@keyframes home-premium-signal-x {
  0% { left: 0; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: calc(100% - 8px); opacity: 0; }
}

@keyframes home-premium-signal-y {
  0% { top: 0; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: calc(100% - 8px); opacity: 0; }
}

@keyframes home-premium-bars {
  from { transform: scaleY(.7); opacity: .7; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes home-premium-belt-x {
  to { background-position-x: 29px; }
}

@keyframes home-premium-belt-y {
  to { background-position-y: 29px; }
}

@keyframes home-premium-capsule-x {
  from { left: 4px; }
  to { left: calc(100% - 50px); }
}

@keyframes home-premium-capsule-y {
  from { top: 4px; }
  to { top: calc(100% - 29px); }
}

.home-mobile {
  display: grid;
  grid-template-columns: minmax(350px, .82fr) minmax(470px, 1.18fr);
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(135deg, #111a27, #0a111b);
}

.home-mobile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 64px);
}

.home-mobile-copy > p {
  max-width: 570px;
  margin-bottom: 14px;
  font-size: .77rem;
}

.home-mobile-copy ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 25px;
  padding: 0;
  list-style: none;
}

.home-mobile-copy li {
  display: grid;
  grid-template-columns: 21px 1fr;
  gap: 8px;
  color: #dce5ef;
  font-size: .72rem;
  line-height: 1.5;
}

.home-mobile-copy li::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 5px;
  color: var(--green);
  background: rgba(76, 224, 168, .09);
  content: "✓";
  font-size: .65rem;
  font-weight: 900;
}

.home-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 19px;
}

.home-platforms span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #aab8c8;
  font-size: .57rem;
  font-weight: 850;
}

.home-mobile-stage {
  display: grid;
  position: relative;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 45%, rgba(74, 217, 245, .16), transparent 48%);
}

.home-mobile-stage::before,
.home-mobile-stage::after {
  position: absolute;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(74, 217, 245, .13);
  border-radius: 50%;
  content: "";
}

.home-mobile-stage::after {
  width: 520px;
  height: 520px;
  border-color: rgba(255, 181, 46, .08);
}

.home-phone {
  position: relative;
  z-index: 2;
  width: 270px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 35px;
  background: #05080d;
  box-shadow: 0 35px 75px rgba(0, 0, 0, .55);
}

.home-phone::before {
  display: block;
  width: 72px;
  height: 17px;
  margin: 0 auto -9px;
  border-radius: 0 0 12px 12px;
  background: #05080d;
  content: "";
}

.home-phone-screen {
  min-height: 465px;
  padding: 22px 12px 13px;
  border-radius: 27px;
  background: #0b1420;
}

.home-phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 17px;
  color: #8fa2b7;
  font-size: .51rem;
  font-weight: 850;
}

.home-phone-top b { color: var(--green); font-size: .48rem; }

.home-phone-round {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 15px;
  border: 1px solid rgba(74, 217, 245, .2);
  border-radius: 13px;
  background: rgba(74, 217, 245, .07);
}

.home-phone-round small {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: .45rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.home-phone-round strong { font-size: 1.02rem; }
.home-phone-round > b { color: var(--gold); font-size: .75rem; }

.home-phone-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 8px 0;
}

.home-phone-metrics span {
  padding: 9px 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background: #101b29;
}

.home-phone-metrics small { display: block; color: #718499; font-size: .42rem; }
.home-phone-metrics b { display: block; margin-top: 4px; font-size: .59rem; }

.home-phone-board {
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #0e1825;
}

.home-phone-board > span {
  display: block;
  margin-bottom: 9px;
  color: #7f93aa;
  font-size: .44rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.home-phone-board > div {
  display: grid;
  grid-template-columns: 17px 1fr auto;
  gap: 6px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: .51rem;
}

.home-phone-board i {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 5px;
  color: #061018;
  background: #203047;
  font-style: normal;
  font-size: .42rem;
}

.home-phone-board > div:first-of-type i { background: var(--gold); }
.home-phone-board b { color: #dce8f3; }
.home-phone-board em { color: var(--cyan); font-style: normal; }

.home-phone-signal {
  position: absolute;
  z-index: 3;
  top: 13%;
  right: 9%;
  padding: 8px 10px;
  border: 1px solid rgba(76, 224, 168, .27);
  border-radius: 10px;
  color: var(--green);
  background: rgba(6, 15, 20, .84);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
  font-size: .55rem;
  font-weight: 850;
}

.home-phone-signal i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.home-path {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 20px 22px;
  background: rgba(255, 255, 255, .025);
}

.home-path p { margin: 0; font-size: .71rem; }

@media (max-width: 1180px) {
  .home-hero,
  .home-mobile { grid-template-columns: 1fr; }
  .home-hero-visual { min-height: 360px; }
  .home-cabinet { grid-template-columns: 1fr; }
  .home-drawer { display: grid; grid-template-columns: 220px 1fr; }
  .home-drawer > header { grid-column: 1 / -1; }
  .home-drawer-image { height: auto; min-height: 100%; }
  .home-drawer-content > p { min-height: 0; }
  .home-premium-head { align-items: flex-start; flex-direction: column; }
  .home-premium-track {
    grid-template-columns: 1fr;
    padding: 0 0 0 48px;
  }
  .home-premium-track::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 4px;
    width: 26px;
    height: auto;
    background:
      repeating-linear-gradient(180deg, #111923 0 25px, #3b4753 26px 29px);
    animation-name: home-premium-belt-y;
  }
  .home-premium-connector {
    justify-self: start;
    width: 26px;
    height: 24px;
    margin-left: -44px;
    background: transparent;
  }
  .home-premium-connector::after {
    display: none;
  }
  .home-premium-step {
    display: grid;
    grid-template-columns: minmax(180px, .7fr) minmax(230px, 1.3fr);
    column-gap: 18px;
  }
  .home-premium-step::after {
    top: 50%;
    right: auto;
    bottom: auto;
    left: -23px;
    width: 23px;
    height: 10px;
    border: 0;
    border-top: 4px solid #253342;
    border-bottom: 4px solid #253342;
    transform: translateY(-50%);
  }
  .home-premium-step-head { grid-column: 1 / -1; }
  .home-premium-visual { grid-row: 2 / span 2; margin-bottom: 0; }
  .home-premium-step h3 { align-self: end; }
  .home-premium-tool-link { grid-column: 2; }
  .home-premium-data-capsule {
    top: 4px;
    bottom: auto;
    left: 5px;
    padding: 5px 4px;
    writing-mode: vertical-rl;
    animation-name: home-premium-capsule-y;
  }
}

@media (max-width: 760px) {
  .home-page { gap: 12px; padding: 12px; }
  .home-page h1 { font-size: clamp(2rem, 10vw, 2.7rem); }
  .home-hero-copy { min-height: 0; padding: 30px 22px; }
  .home-hero-visual { min-height: 300px; }
  .home-status { align-items: flex-start; }
  .home-drawer { grid-template-columns: 1fr; }
  .home-drawer-image { height: 190px; min-height: 0; }
  .home-drawer-content { padding: 18px 14px 14px; }
  .home-premium-loop { padding: 24px 15px; }
  .home-premium-head { margin-bottom: 19px; }
  .home-premium-actions { width: 100%; flex-direction: column; }
  .home-premium-actions .button { width: 100%; }
  .home-premium-track { padding-left: 42px; }
  .home-premium-step { display: block; padding: 13px; }
  .home-premium-visual { margin-bottom: 14px; }
  .home-premium-tool-link { display: grid; }
  .home-premium-foot { align-items: flex-start; flex-direction: column; }
  .home-mobile-copy { padding: 32px 22px; }
  .home-mobile-stage { min-height: 500px; }
  .home-phone { width: 255px; }
  .home-phone-signal { top: 5%; right: 4%; }
  .home-path { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 460px) {
  .home-actions { align-items: stretch; flex-direction: column; }
  .home-actions .button { width: 100%; }
  .home-hero-visual { min-height: 250px; }
  .home-mobile-stage { min-height: 480px; }
  .home-phone { width: 245px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-drawer-content > a { transition: none; }
  .home-premium-step,
  .home-premium-connector::after,
  .home-premium-chart i,
  .home-premium-track::before,
  .home-premium-data-capsule {
    animation: none;
  }
}
