:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0a0a0a;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --panel-soft: rgba(255, 255, 255, 0.035);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f8fafc;
  --muted: rgba(226, 232, 240, 0.72);
  --muted-strong: rgba(241, 245, 249, 0.88);
  --lime: #c8ff2f;
  --lime-soft: #f5f5f5;
  --danger: #ff8d8d;
  --success: #9fff84;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --page-width: min(1040px, calc(100% - 28px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", system-ui, sans-serif;
  background: #050505;
  color: var(--text);
}

a {
  color: inherit;
}

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

.site-body {
  position: relative;
  overflow-x: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.site-bg__grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12));
  animation: bgGridFloat 22s linear infinite;
}

.site-bg__orb {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 34%, transparent 72%);
  filter: blur(32px);
  opacity: 0.8;
}

.site-bg__orb--a {
  width: 36vw;
  height: 36vw;
  top: -10vw;
  left: -6vw;
  animation: orbA 18s ease-in-out infinite alternate;
}

.site-bg__orb--b {
  width: 28vw;
  height: 28vw;
  right: -8vw;
  top: 12vh;
  animation: orbB 20s ease-in-out infinite alternate;
}

.site-bg__orb--c {
  width: 42vw;
  height: 42vw;
  bottom: -16vw;
  left: 32vw;
  animation: orbC 24s ease-in-out infinite alternate;
}

.site-bg__orb {
  display: none;
}

.site-header,
.site-footer,
.shell-main {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 30;
  width: var(--page-width);
  margin: 0;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 0 0 24px 24px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-brand__mark img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.site-brand__copy {
  display: grid;
  gap: 2px;
}

.site-brand__copy strong {
  font-size: 0.98rem;
  font-weight: 800;
}

.site-brand__copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav,
.site-header__actions,
.site-footer__links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.site-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-menu-open .site-menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-menu-open .site-menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.site-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 28;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(5px);
}

.site-drawer {
  position: fixed;
  top: 82px;
  right: max(12px, calc((100vw - 1040px) / 2));
  z-index: 29;
  width: min(340px, calc(100vw - 24px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(5, 5, 5, 0.86);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(18px, -8px, 0) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-menu-open .site-drawer {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.site-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.site-drawer__head div {
  display: grid;
  gap: 3px;
}

.site-drawer__head strong {
  font-size: 1.05rem;
}

.site-drawer__head small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-drawer__close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  font-size: 26px;
  line-height: 1;
}

.site-drawer__nav {
  display: grid;
  gap: 8px;
  padding-top: 12px;
}

.site-drawer__nav a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 850;
}

.site-drawer__nav a:hover,
.site-drawer__nav a:focus-visible {
  border-color: var(--line-strong);
  color: var(--lime);
}

.site-nav a,
.site-footer__links a {
  color: var(--muted-strong);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover,
.site-footer__links a:hover {
  color: var(--text);
}

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  background: var(--lime);
  color: #081006;
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.22);
}

.button-soft {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--line);
}

.button-soft:hover {
  border-color: var(--line-strong);
}

.shell-main {
  width: 100%;
  max-width: none;
  padding: 16px 0 24px;
}

.site-body:not(.site-body--immersive) .shell-main {
  padding-top: 86px;
}

.page-shell {
  width: var(--page-width);
  margin: 0 auto;
}

.page {
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 18px;
}

.hero-copy,
.hero-card,
.quick-buy,
.server-card,
.info-card,
.checkout-card,
.account-card,
.status-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy,
.quick-buy,
.hero-card,
.status-card,
.info-card,
.checkout-card,
.account-card {
  padding: 28px;
}

.hero-title {
  margin: 14px 0 10px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-lede,
.section-copy,
.muted-copy {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.65;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.signal-card {
  min-height: 118px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.signal-card strong {
  display: block;
  color: var(--lime);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0;
}

.signal-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card img,
.facts-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  min-height: 100%;
  padding: 0;
}

.hero-card__frame {
  height: 100%;
  min-height: 540px;
}

.hero-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-buy {
  display: grid;
  gap: 18px;
}

.quick-buy__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.quick-buy__head h2,
.section-title,
.checkout-title,
.account-title {
  margin: 10px 0 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.tier-grid,
.term-grid,
.payment-grid,
.server-grid,
.steps-grid,
.account-stats,
.detail-grid,
.link-grid {
  display: grid;
  gap: 12px;
}

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

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

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

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

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

.choice-card,
.server-card,
.summary-card,
.detail-card,
.link-card {
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.035);
}

.choice-card {
  appearance: none;
  min-height: 96px;
  padding: 14px;
  display: grid;
  gap: 6px;
  width: 100%;
  text-align: left;
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.choice-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.14);
}

.choice-card.is-active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.choice-card strong {
  font-size: 1.02rem;
}

.choice-card span,
.choice-card small,
.server-card span,
.server-card p,
.summary-row span,
.detail-card span,
.link-card span,
.field-hint,
.status-note {
  color: var(--muted);
}

.summary-card {
  padding: 18px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-row strong {
  font-size: 1rem;
}

.summary-row--price strong {
  font-size: 1.5rem;
  color: var(--lime);
}

.summary-row__old {
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 10px;
}

.facts-banner {
  padding: 0;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.facts-banner img {
  width: 100%;
}

.server-card {
  padding: 18px;
  min-height: 170px;
}

.server-card strong {
  display: block;
  font-size: 1.15rem;
}

.server-card p {
  margin: 8px 0 0;
  line-height: 1.55;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
}

.checkout-stack {
  display: grid;
  gap: 16px;
}

.page-shell--checkout {
  width: min(980px, calc(100% - 28px));
}

.checkout-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  background: rgba(8, 16, 9, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 24px;
  display: grid;
  gap: 18px;
}

.checkout-shell--minimal {
  gap: 14px;
  padding: 16px;
}

.checkout-shell__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.checkout-shell__head--compact {
  align-items: flex-end;
}

.checkout-headline {
  margin: 6px 0 0;
  color: var(--muted);
}

.checkout-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 16px;
  align-items: start;
}

.checkout-builder--minimal {
  gap: 14px;
}

.checkout-main {
  display: grid;
  gap: 14px;
}

.checkout-panel,
.checkout-total {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
}

.checkout-panel {
  display: grid;
  gap: 14px;
}

.checkout-panel--minimal {
  gap: 14px;
  border-color: transparent;
  background: transparent;
  padding: 0;
}

.checkout-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.checkout-panel__head h2,
.checkout-total h2 {
  margin: 8px 0 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: 0;
}

.checkout-cluster {
  display: grid;
  gap: 10px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
}

.checkout-cluster:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.checkout-cluster__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.checkout-cluster__head strong {
  font-size: 0.98rem;
}

.checkout-cluster__head--muted strong {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-product-card {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.checkout-product-card strong {
  font-size: 1.02rem;
}

.checkout-product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.payment-grid--checkout .choice-card {
  min-height: 58px;
}

.payment-grid--checkout .choice-card span {
  display: none;
}

.choice-card--payment {
  padding: 10px 12px;
  gap: 4px;
}

.choice-card--payment small {
  color: var(--muted);
  font-size: 0.76rem;
}

.checkout-aside {
  position: sticky;
  top: 16px;
}

.checkout-total {
  display: grid;
  gap: 16px;
}

.checkout-total--minimal {
  gap: 12px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.028);
}

.checkout-total__method {
  display: grid;
  gap: 4px;
}

.checkout-total__method span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-total__method strong {
  font-size: 1rem;
}

.checkout-total__price {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-total__price span {
  color: var(--muted);
}

.checkout-total__price strong {
  color: var(--lime);
  font-size: 1.75rem;
}

.checkout-total__price--minimal strong {
  font-size: 2.05rem;
}

.checkout-total__actions {
  display: grid;
  gap: 8px;
}

.checkout-total__actions .button {
  width: 100%;
}

.checkout-headline {
  max-width: 26ch;
}

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

.page-checkout .term-grid--checkout {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.page-checkout .tier-grid--checkout .choice-card {
  min-height: 78px;
  padding: 12px;
}

.page-checkout .term-grid--checkout .choice-card {
  min-height: 72px;
  padding: 10px 12px;
}

.checkout-card h1,
.checkout-card h2,
.status-card h1,
.account-card h2,
.info-card h2 {
  margin: 12px 0 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: 0;
}

.field-grid {
  display: grid;
  gap: 14px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label,
.field-title {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.promo-inline input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font: inherit;
}

.field textarea {
  min-height: 110px;
  padding: 16px 18px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.promo-inline input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.promo-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.notice {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
}

.notice.is-error {
  border-color: rgba(255, 141, 141, 0.28);
  color: #ffd2d2;
}

.notice.is-success {
  border-color: rgba(159, 255, 132, 0.26);
  color: #efffe8;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.section-header__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.status-card {
  min-height: 280px;
  display: grid;
  gap: 16px;
}

.status-card--center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.page-shell--narrow {
  width: min(760px, calc(100% - 28px));
  margin: 0 auto;
}

.access-stage {
  min-height: calc(100vh - 190px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 560px);
  align-items: stretch;
  gap: 18px;
}

.access-brand-panel {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 16%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.08), transparent 36%),
    rgba(4, 9, 5, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.access-brand-panel::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -110px;
  top: -110px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.08);
}

.access-brand-panel > * {
  position: relative;
  z-index: 1;
}

.access-brand-panel h1 {
  max-width: 560px;
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.access-brand-panel p {
  max-width: 440px;
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.55;
}

.access-brand-panel__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font-weight: 850;
}

.access-brand-panel__status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.42);
}

.access-window {
  width: 100%;
  align-self: center;
  display: grid;
  gap: 12px;
  padding: clamp(18px, 2.5vw, 28px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 11, 6, 0.76);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
  animation: accessWindowIn 320ms ease;
}

.access-window__head {
  display: grid;
  gap: 8px;
}

.access-window__title {
  margin: 0;
}

.access-window__copy {
  margin: 0;
  color: var(--muted);
}

.access-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.access-switch__button {
  appearance: none;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 12px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--muted-strong);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.access-switch__button:hover {
  transform: translateY(-1px);
}

.access-switch__button.is-active {
  background: var(--lime);
  color: #050505;
}

.access-switch__icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  font-size: 0.85rem;
}

.access-switch__button.is-active .access-switch__icon {
  background: rgba(6, 16, 6, 0.14);
}

.access-pane {
  display: grid;
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  animation: accessPaneIn 180ms ease;
}

.access-pane[hidden] {
  display: none;
}

.access-pane__head {
  display: grid;
  gap: 4px;
}

.access-pane__head strong {
  font-size: 1.02rem;
}

.access-pane__head span {
  color: var(--muted);
  font-size: 0.92rem;
}

.access-form {
  display: grid;
  gap: 12px;
}

.access-form--compact {
  gap: 10px;
}

.access-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.access-actions--stack {
  display: grid;
}

.access-state-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-weight: 700;
}

.access-state-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.38);
}

.access-divider {
  position: relative;
  display: grid;
  place-items: center;
}

.access-divider::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.access-divider span {
  position: relative;
  padding: 0 10px;
  background: rgba(11, 22, 12, 0.96);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.access-bot-card {
  display: grid;
  gap: 14px;
}

.access-bot-card__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 1.1rem;
  font-weight: 800;
}

.access-bot-card__copy {
  display: grid;
  gap: 6px;
}

.access-bot-card__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.access-bot-card--telegram {
  position: relative;
  gap: 18px;
  justify-items: stretch;
  text-align: left;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.access-bot-card--telegram::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 34%, transparent 66%, rgba(255, 255, 255, 0.12));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.access-bot-card--telegram > * {
  position: relative;
  z-index: 1;
}

.access-bot-card--telegram .access-bot-card__copy {
  justify-items: stretch;
}

.access-telegram-box {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.6));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.access-telegram-box__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.access-telegram-box__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.access-telegram-copy-button {
  min-height: 42px;
  padding-inline: 14px;
  white-space: nowrap;
}

.access-telegram-open-button {
  flex: 1 1 auto;
}

.access-telegram-code {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 98px;
  padding: 8px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 20px 48px rgba(0, 0, 0, 0.22);
  color: var(--text);
  font-size: clamp(2rem, 5.4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: clamp(0.16em, 1.6vw, 0.28em);
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  overflow: hidden;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
  transition: box-shadow 180ms ease, background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.access-telegram-code::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.16) 46%, transparent 72%);
  transform: translateX(-130%);
  animation: accessTelegramSweep 2.8s ease-in-out infinite;
  pointer-events: none;
}

.access-telegram-meta {
  display: grid;
  gap: 10px;
  width: 100%;
}

.access-telegram-status {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.access-telegram-progress {
  position: relative;
  width: 100%;
  height: 12px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.access-telegram-progress__bar {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.66) 55%, rgba(255, 255, 255, 0.9));
  background-size: 180% 100%;
  transition: width 900ms linear;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.16);
}

.access-telegram-progress__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.28) 50%, transparent 82%);
  transform: translateX(-140%);
  animation: accessTelegramSweep 2.2s linear infinite;
}

.access-telegram-timer {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: center;
}

.access-telegram-timer-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  letter-spacing: 0.04em;
}

.access-bot-card--telegram.is-expiring .access-telegram-code {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 24px 50px rgba(255, 255, 255, 0.12);
  animation: accessTelegramPulse 900ms ease-in-out infinite;
}

.access-bot-card--telegram.is-expiring .access-telegram-status {
  color: var(--lime);
}

.access-bot-card--telegram.is-expiring .access-telegram-timer-badge {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 0 18px rgba(255, 255, 255, 0.18);
  animation: accessTelegramBadgePulse 900ms ease-in-out infinite;
}

.access-bot-card--telegram.is-syncing .access-telegram-progress__bar::after {
  animation-duration: 1.1s;
}

.access-bot-card--telegram.is-syncing .access-telegram-progress__bar {
  animation: accessTelegramBarShift 1.8s linear infinite;
}

@keyframes accessTelegramSweep {
  0% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(130%);
  }
}

@keyframes accessTelegramPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1px);
  }
}

@keyframes accessTelegramBadgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@keyframes accessTelegramBarShift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 180% 0%;
  }
}

@media (max-width: 640px) {
  .access-bot-card--telegram {
    padding: 14px;
    gap: 14px;
    border-radius: 22px;
  }

  .access-telegram-box {
    padding: 14px;
  }

  .access-telegram-code {
    min-height: 86px;
    padding-inline: 14px;
    font-size: clamp(1.8rem, 9vw, 2.65rem);
    letter-spacing: 0.18em;
  }

  .access-telegram-box__top,
  .access-telegram-box__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .access-telegram-timer {
    text-align: center;
  }

  .access-telegram-timer-badge {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .access-telegram-code::after,
  .access-telegram-progress__bar::after,
  .access-bot-card--telegram.is-expiring .access-telegram-code,
  .access-bot-card--telegram.is-expiring .access-telegram-timer-badge,
  .access-bot-card--telegram.is-syncing .access-telegram-progress__bar {
    animation: none;
  }

  .access-telegram-progress__bar {
    transition: none;
  }
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 800;
}

.status-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.42);
}

.status-badge.is-error {
  border-color: rgba(255, 141, 141, 0.18);
  background: rgba(255, 141, 141, 0.08);
}

.status-badge.is-error::before {
  background: var(--danger);
  box-shadow: 0 0 16px rgba(255, 141, 141, 0.42);
}

.status-actions,
.detail-grid,
.account-stats,
.account-tabs,
.orders-grid,
.subscription-grid,
.promo-history,
.device-grid {
  display: grid;
  gap: 12px;
}

.detail-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.status-actions,
.account-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-shell {
  width: min(1320px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.account-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 16px;
}

.account-stats {
  margin-top: 18px;
}

.account-mini {
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.account-mini span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.account-mini strong {
  display: block;
  margin-top: 10px;
  font-size: 1.35rem;
}

.account-tabs {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tab-button {
  min-height: 56px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted-strong);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tab-button.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.24);
}

.subscription-grid,
.orders-grid,
.promo-history,
.device-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.link-card,
.detail-card {
  padding: 16px;
}

.detail-card strong,
.link-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

.empty-state {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 255, 255, 0.16);
  color: var(--muted);
}

.compact-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted-strong);
  line-height: 1.7;
}

.compact-list li + li {
  margin-top: 6px;
}

.status-note {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  width: var(--page-width);
  margin: 10px auto 18px;
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer__brand strong {
  color: var(--text);
}

.copy-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.copy-code {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-family: "Space Grotesk", monospace;
  font-size: 0.95rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.tag.is-lime {
  color: var(--lime);
}

.page--compact {
  width: min(960px, calc(100% - 28px));
}

.hero-title--compact {
  margin: 6px 0 0;
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.home-summary__actions {
  display: grid;
  gap: 10px;
}

.home-meta-line {
  margin: 10px 0 0;
  color: var(--muted-strong);
  font-size: 0.96rem;
  line-height: 1.5;
}

.tag--strong {
  color: #081006;
  background: var(--lime);
  border-color: transparent;
}

.tag--gift {
  text-decoration: none;
}

.home-bar,
.compact-head,
.home-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.quick-buy--compact {
  gap: 16px;
  padding: 22px;
}

.quick-buy--focus {
  padding: 24px;
}

.home-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.home-flow__main {
  display: grid;
  gap: 14px;
}

.field-stack {
  display: grid;
  gap: 12px;
}

.choice-block {
  padding: 0;
  display: grid;
  gap: 12px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

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

.term-grid--home,
.term-grid--checkout {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tier-grid--home .choice-card,
.tier-grid--checkout .choice-card,
.term-grid--checkout .choice-card {
  min-height: 84px;
  padding: 12px;
}

.term-grid--home .choice-card {
  min-height: 74px;
  padding: 10px 12px;
}

.home-summary-bar {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.home-summary-bar--inline {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.home-summary-bar__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-summary-bar__item {
  display: grid;
  gap: 6px;
}

.home-summary-bar__item span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-summary-bar__item strong {
  font-size: 1rem;
}

.home-summary-bar__item:last-child strong {
  color: var(--lime);
}

.home-summary__actions {
  align-items: stretch;
}

.home-summary__actions .button {
  width: 100%;
  min-width: 220px;
}

.home-server-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.home-server-pill {
  min-height: 40px;
}

.home-meta {
  padding-top: 6px;
}

.home-meta__links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.checkout-meta-line {
  margin-top: 6px;
}

@keyframes bgGridFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-48px); }
}

@keyframes orbA {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(6vw, 10vh, 0); }
}

@keyframes orbB {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-8vw, 8vh, 0); }
}

@keyframes orbC {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(12vw, -10vh, 0); }
}

@media (max-width: 1100px) {
  .site-header,
  .page,
  .page-shell,
  .site-footer {
    width: min(100%, calc(100% - 24px));
  }

  .hero-grid,
  .checkout-layout,
  .checkout-builder,
  .account-hero,
  .home-flow {
    grid-template-columns: 1fr;
  }

  .access-stage {
    grid-template-columns: 1fr;
  }

  .access-brand-panel {
    min-height: 360px;
  }

  .server-grid,
  .subscription-grid,
  .orders-grid,
  .promo-history,
  .device-grid,
  .info-links {
    grid-template-columns: 1fr 1fr;
  }

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

  .term-grid,
  .term-grid--home,
  .term-grid--checkout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .account-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-summary-bar__meta {
    grid-template-columns: 1fr 1fr;
  }

  .home-summary-bar--inline {
    grid-template-columns: 1fr;
  }

  .checkout-aside {
    position: static;
  }

  .checkout-inline-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    border-radius: 0 0 22px 22px;
    padding: 12px;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .site-nav {
    display: none;
  }

  .site-menu-toggle {
    display: grid;
  }

  .site-header__actions {
    gap: 8px;
  }

  .site-header__actions .button {
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
  }

  .hero-copy,
  .quick-buy,
  .hero-card,
  .status-card,
  .info-card,
  .checkout-card,
  .account-card {
    padding: 22px 18px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .signal-grid,
  .payment-grid,
  .field-grid--double,
  .status-actions,
  .account-stats,
  .server-grid,
  .steps-grid,
  .subscription-grid,
  .orders-grid,
  .promo-history,
  .device-grid,
  .info-links,
  .detail-grid--three {
    grid-template-columns: 1fr;
  }

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

  .tier-grid--home,
  .tier-grid--checkout,
  .term-grid--home,
  .term-grid--checkout {
    grid-template-columns: 1fr;
  }

  .home-bar,
  .home-meta,
  .compact-head,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .home-summary__actions {
    grid-auto-flow: row;
  }

  .home-summary-bar__meta {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-shell,
  .checkout-panel,
  .checkout-total {
    padding: 18px;
  }

  .checkout-shell__head,
  .checkout-total__price {
    flex-direction: column;
    align-items: stretch;
  }

  .checkout-total__meta {
    grid-template-columns: 1fr;
  }

  .home-meta__links {
    justify-content: flex-start;
  }

  .promo-inline {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 24px;
  }

  .site-footer__links {
    flex-direction: column;
    align-items: flex-start;
  }

  .access-window {
    padding: 18px;
  }

  .access-brand-panel {
    min-height: 300px;
    padding: 22px;
    border-radius: 28px;
  }

  .access-switch {
    grid-template-columns: 1fr;
  }

  .access-actions {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    top: 0;
    width: min(100%, calc(100% - 18px));
    min-height: 62px;
    border-radius: 0 0 20px 20px;
  }

  .site-body:not(.site-body--immersive) .shell-main {
    padding-top: 76px;
  }

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

  .site-brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .site-brand__copy {
    min-width: 0;
  }

  .site-brand__copy strong {
    max-width: 132px;
    overflow: hidden;
    font-size: 0.9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-brand__copy small {
    display: none;
  }

  .site-header__actions .button {
    min-height: 42px;
    padding: 0 12px;
  }

  .site-menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .site-drawer {
    top: 72px;
    right: 9px;
    width: calc(100vw - 18px);
  }
}

.page-checkout,
.page-checkout-complete,
.page-cabinet-access {
  --checkout-bg: #050505;
  --checkout-text: #ffffff;
  --checkout-muted: rgba(245, 245, 245, 0.68);
  --checkout-line: rgba(255, 255, 255, 0.12);
  --checkout-line-soft: rgba(255, 255, 255, 0.075);
  --checkout-lime: #c8ff2f;
  background: #050505;
}

.page-checkout .site-bg,
.page-checkout-complete .site-bg,
.page-cabinet-access .site-bg {
  background: #050505;
}

.page-checkout .site-bg__grid,
.page-checkout .site-bg__orb,
.page-checkout-complete .site-bg__grid,
.page-checkout-complete .site-bg__orb,
.page-cabinet-access .site-bg__grid,
.page-cabinet-access .site-bg__orb {
  display: none;
}

.page-checkout .site-header,
.page-cabinet-access .site-header {
  width: min(1040px, calc(100% - 32px));
  top: 0;
  border: 0;
  border-radius: 0 0 24px 24px;
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.page-checkout .site-brand__mark,
.page-cabinet-access .site-brand__mark {
  border-color: transparent;
  background: transparent;
}

.page-checkout .site-nav a:hover,
.page-cabinet-access .site-nav a:hover {
  color: var(--checkout-text);
}

.page-checkout .site-header__actions .button-primary,
.page-cabinet-access .site-header__actions .button-primary {
  background: var(--checkout-text);
  color: #050505;
  box-shadow: none;
}

.nl-checkout {
  width: min(1040px, calc(100% - 32px));
  display: grid;
  gap: 18px;
  color: var(--checkout-text);
}

.nl-checkout__hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  padding: clamp(26px, 5vw, 58px) 0 4px;
  animation: accessPaneIn 0.34s ease both;
}

.nl-checkout__title {
  margin: 10px 0 0;
  color: var(--checkout-text);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.86;
  letter-spacing: 0;
}

.nl-checkout__lead {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--checkout-muted);
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 750;
  line-height: 1.55;
}

.nl-checkout__notice {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.checkout-builder--nl {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 18px;
}

.checkout-panel--nl,
.checkout-total--nl,
.nl-status-card,
.access-window {
  border: 1px solid var(--checkout-line-soft);
  background: rgba(255, 255, 255, 0.026);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.checkout-panel--nl {
  padding: clamp(18px, 3vw, 28px);
  border-radius: 34px;
  gap: 0;
}

.checkout-step {
  display: grid;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-step:first-child {
  padding-top: 0;
}

.checkout-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.checkout-step--selected {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.checkout-step[hidden] {
  display: none !important;
}

.checkout-step__selected-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  text-align: left;
}

.checkout-step__edit {
  flex: 0 0 auto;
}

.checkout-step--selected p,
.checkout-step__head p,
.checkout-total__hint {
  margin: 0;
  color: var(--checkout-muted);
  line-height: 1.55;
}

.checkout-step__description {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}

.checkout-step__description-part {
  min-width: 0;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--checkout-muted);
  background: rgba(255, 255, 255, 0.026);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.25;
}

.checkout-step__description-part--traffic {
  color: var(--checkout-text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.checkout-step__meta {
  display: grid;
  gap: 6px;
}

.checkout-step__meta span,
.checkout-step__index {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.checkout-step__meta strong {
  color: var(--checkout-text);
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1;
  letter-spacing: 0;
}

.checkout-step__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.checkout-step__head strong {
  color: var(--checkout-text);
  font-size: 1.08rem;
}

.checkout-step__index {
  flex: 0 0 auto;
  width: 34px;
  padding-top: 4px;
}

.page-checkout .tier-grid--checkout,
.page-checkout .term-grid--checkout,
.page-checkout .payment-grid--checkout {
  gap: 10px;
}

.page-checkout .tier-grid--checkout {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-checkout .term-grid--checkout {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.page-checkout .choice-card {
  min-height: 76px;
  padding: 13px 14px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.018);
  box-shadow: none;
}

.page-checkout .choice-card:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
}

.page-checkout .choice-card.is-active {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.095);
}

.page-checkout .choice-card strong {
  font-size: 0.98rem;
}

.page-checkout .choice-card small,
.page-checkout .choice-card span {
  color: var(--checkout-muted);
}

.checkout-step--fields {
  padding-top: 24px;
}

.page-checkout .field input,
.page-cabinet-access .field input {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.page-checkout .field input:focus,
.page-cabinet-access .field input:focus {
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.checkout-total--nl {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 28px;
}

.checkout-total--nl .checkout-total__price {
  padding-top: 16px;
  border-top-color: rgba(255, 255, 255, 0.08);
}

.checkout-total--nl .checkout-total__price strong,
.nl-status-grid .detail-card strong:last-child {
  color: var(--checkout-text);
}

.checkout-total__hint {
  font-size: 0.9rem;
}

.nl-checkout .button,
.access-stage .button {
  --action-fill: rgba(255, 255, 255, 0.16);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 16px;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.nl-checkout .button::before,
.access-stage .button::before {
  content: "";
  position: absolute;
  left: var(--press-x, 50%);
  top: var(--press-y, 50%);
  z-index: -1;
  width: 220%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--action-fill);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.82s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.nl-checkout .button:hover,
.nl-checkout .button:focus-visible,
.access-stage .button:hover,
.access-stage .button:focus-visible {
  transform: none;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.nl-checkout .button:hover::before,
.nl-checkout .button:focus-visible::before,
.access-stage .button:hover::before,
.access-stage .button:focus-visible::before {
  transform: translate(-50%, -50%) scale(1);
}

.nl-checkout .button-primary,
.access-stage .button-primary {
  --action-fill: #000;
  border-color: rgba(255, 255, 255, 0.44);
  color: #050505;
  background: var(--checkout-lime);
  box-shadow: none;
}

.nl-checkout .button-primary:hover,
.nl-checkout .button-primary:focus-visible,
.access-stage .button-primary:hover,
.access-stage .button-primary:focus-visible {
  color: var(--checkout-lime);
  border-color: rgba(255, 255, 255, 0.7);
  background: var(--checkout-lime);
}

.nl-checkout .button-soft,
.access-stage .button-soft {
  border-color: var(--checkout-line);
  background: rgba(255, 255, 255, 0.045);
}

.checkout-confirm-open {
  overflow: hidden;
}

.checkout-confirm-modal[hidden] {
  display: none;
}

.checkout-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.checkout-confirm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.checkout-confirm-modal__window {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #080808;
  color: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  animation: accessPaneIn 0.22s ease both;
}

.checkout-confirm-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.checkout-confirm-modal__window h2 {
  margin: 4px 36px 0 0;
  font-size: clamp(28px, 7vw, 44px);
  line-height: 0.98;
  letter-spacing: 0;
}

.checkout-confirm-modal__lead,
.checkout-confirm-modal__hint {
  margin: 0;
  color: rgba(245, 245, 245, 0.68);
  line-height: 1.55;
}

.checkout-confirm-modal__email {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.checkout-hold-button {
  position: relative;
  isolation: isolate;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 16px;
  overflow: hidden;
  color: #050505;
  background: var(--checkout-lime);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  touch-action: none;
}

.checkout-hold-button__fill {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #000;
  transform: scaleX(0);
  transform-origin: left center;
}

.checkout-hold-button__label {
  position: relative;
  z-index: 1;
}

.checkout-hold-button.is-holding {
  color: var(--checkout-lime);
}

.nl-status-card {
  padding: clamp(24px, 5vw, 42px);
  border-radius: 34px;
  text-align: left;
}

.nl-checkout--complete {
  width: min(820px, calc(100% - 32px));
  padding-top: clamp(34px, 7vw, 78px);
}

.nl-status-badge {
  justify-self: start;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.nl-status-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: left;
}

.nl-status-grid .detail-card {
  padding: 16px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.018);
}

.nl-status-actions {
  margin-top: 8px;
}

.page-cabinet-access .access-stage {
  width: min(1040px, calc(100% - 32px));
  min-height: calc(100svh - 118px);
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 500px);
  gap: 18px;
}

.page-cabinet-access .access-brand-panel {
  border-color: var(--checkout-line-soft);
  background: rgba(255, 255, 255, 0.026);
}

.page-cabinet-access .access-brand-panel h1 {
  font-size: clamp(48px, 8vw, 88px);
}

.page-cabinet-access .access-window {
  border-radius: 34px;
}

.page-cabinet-access .access-switch {
  background: rgba(255, 255, 255, 0.018);
  border-color: rgba(255, 255, 255, 0.1);
}

.page-cabinet-access .access-switch__button:hover {
  transform: none;
  color: var(--checkout-text);
}

.page-cabinet-access .access-switch__button.is-active {
  background: var(--checkout-text);
  color: #050505;
}

.page-cabinet-access .access-pane__head span,
.page-cabinet-access .field-hint {
  color: var(--checkout-muted);
}

.page-cabinet-access .access-state-chip {
  width: fit-content;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.16);
}

@media (max-width: 1100px) {
  .checkout-builder--nl,
  .page-cabinet-access .access-stage {
    grid-template-columns: 1fr;
  }

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

  .page-checkout .term-grid--checkout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nl-checkout__hero {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .nl-checkout,
  .nl-checkout--complete,
  .page-cabinet-access .access-stage {
    width: min(100%, calc(100% - 18px));
  }

  .nl-checkout__hero {
    flex-direction: column;
  }

  .checkout-step--selected,
  .nl-status-grid {
    grid-template-columns: 1fr;
  }

  .checkout-step__selected-actions {
    grid-template-columns: 1fr;
  }

  .checkout-step__edit {
    width: 100%;
  }

  .page-checkout .term-grid--checkout,
  .page-checkout .tier-grid--checkout,
  .payment-grid--checkout {
    grid-template-columns: 1fr;
  }

  .checkout-panel--nl {
    padding: 18px;
    border-radius: 28px;
  }
}

@keyframes accessWindowIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes accessPaneIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
