:root {
  color-scheme: dark;
  --bg: #04050b;
  --surface: rgba(13, 15, 24, 0.9);
  --surface-strong: rgba(16, 18, 30, 0.97);
  --surface-soft: rgba(255, 255, 255, 0.026);
  --surface-panel: rgba(20, 22, 36, 0.78);
  --line: rgba(209, 216, 238, 0.11);
  --line-strong: rgba(204, 181, 255, 0.24);
  --text: #f7f8fd;
  --muted: #a2abc0;
  --muted-strong: #d6dded;
  --accent: #d5b4ff;
  --accent-strong: #f4ebff;
  --accent-cool: #8bd8ff;
  --accent-warm: #f0c88f;
  --green: #88ebb5;
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 20px 60px rgba(126, 94, 255, 0.11);
  --radius: 28px;
  --radius-sm: 18px;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Unbounded", system-ui, sans-serif;
  --font: "Unbounded", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top center, rgba(112, 82, 198, 0.16), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(94, 180, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #05060b, #04050a 42%, #020308 100%);
  color: var(--text);
  font-family: var(--font);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  padding-bottom: 116px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 22%, rgba(213, 180, 255, 0.08), transparent 22%),
    radial-gradient(circle at 82% 70%, rgba(139, 216, 255, 0.06), transparent 26%);
  opacity: 0.9;
}

body[data-page] {
  padding-bottom: calc(108px + env(safe-area-inset-bottom));
}

button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }

.bg { position: fixed; inset: 0; pointer-events: none; overflow: hidden; }
.bg__noise {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: .12;
}
.bg__mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 84%);
  opacity: .08;
}
.bg__orb {
  position: absolute; width: 38rem; height: 38rem; border-radius: 50%;
  filter: blur(110px); opacity: .42;
  animation: drift 16s ease-in-out infinite;
}
.bg__orb--left { left: -11rem; top: -10rem; background: rgba(214, 178, 255, 0.22); }
.bg__orb--right { right: -9rem; top: 16rem; background: rgba(141, 214, 255, 0.19); animation-delay: -8s; }

.shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 28px));
  margin: 0 auto;
  padding: 22px 0 48px;
  animation: page-in .55s ease both;
}

.shell--page {
  width: min(1180px, calc(100vw - 28px));
  padding-bottom: calc(128px + env(safe-area-inset-bottom));
}

.hero {
  display: grid;
  gap: 16px;
}

.hero__stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.hero__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  min-height: 70px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(24, 27, 40, 0.92), rgba(11, 13, 22, 0.88)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(26px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.hero__actions > * {
  min-height: 46px;
}

.hero__actions--compact {
  align-items: center;
  gap: 10px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__cta--single > * {
  min-width: min(320px, 100%);
}

.hero__grid,
.section--split {
  display: grid;
  grid-template-columns: 1.38fr 1fr;
  gap: 18px;
}

.hero__grid--landing {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
}

.hero__stack > .card,
.hero__stack > .hero__grid {
  animation: rise .48s ease both;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.hero__trust--compact {
  display: none;
}

.hero__trust-item {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    var(--surface-soft);
}

.hero__trust-item span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(213, 180, 255, 0.16), rgba(139, 216, 255, 0.08));
  color: var(--accent-strong);
  font-size: 11px;
}

.hero__trust-item strong { font-size: 13px; }

.hero__trust-item small {
  color: rgba(229, 233, 244, .7);
  font-size: 11px;
  line-height: 1.6;
}

.hero__account--top {
  position: static;
}

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

.brand__mark {
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm) 52%, var(--accent-cool));
  box-shadow: 0 0 36px rgba(213, 180, 255, 0.55);
}

.brand__text {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  position: sticky;
  top: 12px;
  z-index: 8;
}

.section-nav--page {
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
}

.section-nav--page::-webkit-scrollbar { display: none; }

.section-nav.card {
  padding: 12px;
  top: 12px;
  z-index: 18;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(18, 21, 32, 0.92), rgba(10, 12, 20, 0.88)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}

.section-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.03em;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.section-nav--page .section-nav__link {
  white-space: nowrap;
  flex: 0 0 auto;
}

.section-nav__link:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 178, 255, .26);
  background: rgba(214, 178, 255, .08);
  box-shadow: 0 14px 34px rgba(214, 178, 255, .08);
}

.section-nav__link.is-current {
  border-color: rgba(213, 180, 255, 0.34);
  background: linear-gradient(135deg, rgba(213, 180, 255, 0.18), rgba(139, 216, 255, 0.08));
  color: var(--accent-strong);
  box-shadow: 0 16px 32px rgba(127, 90, 255, 0.16);
}

.section-nav.card.section-nav--page {
  position: fixed;
  top: auto;
  left: 50%;
  right: auto;
  bottom: max(12px, env(safe-area-inset-bottom));
  width: min(760px, calc(100vw - 28px));
  transform: translateX(-50%);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(13, 15, 23, 0.9), rgba(8, 10, 18, 0.86)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  scrollbar-width: none;
  z-index: 36;
}

.section-nav.card.section-nav--page::-webkit-scrollbar {
  display: none;
}

.section-nav--page .section-nav__link {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 9px 12px;
  border-radius: 15px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(245, 247, 252, 0.62);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease,
    color 0.24s ease;
  animation: nav-dock-in 0.5s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.section-nav--page .section-nav__link:nth-child(1) { animation-delay: 0.04s; }
.section-nav--page .section-nav__link:nth-child(2) { animation-delay: 0.08s; }
.section-nav--page .section-nav__link:nth-child(3) { animation-delay: 0.12s; }
.section-nav--page .section-nav__link:nth-child(4) { animation-delay: 0.16s; }
.section-nav--page .section-nav__link:nth-child(5) { animation-delay: 0.2s; }

.section-nav--page .section-nav__link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(214, 178, 255, 0.22), rgba(141, 214, 255, 0.12));
  opacity: 0;
  transition: opacity 0.24s ease;
  z-index: 0;
}

.section-nav__icon,
.section-nav__label {
  position: relative;
  z-index: 1;
}

.section-nav__icon {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: rgba(245, 247, 252, 0.76);
  font-size: 20px;
  box-shadow: none;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  transition:
    transform 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease,
    font-variation-settings 0.24s ease;
}

.section-nav__label {
  font-size: 9px;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-nav--page .section-nav__link:hover {
  transform: translateY(-1px);
  color: rgba(255, 255, 255, 0.86);
}

.section-nav--page .section-nav__link:hover::before,
.section-nav--page .section-nav__link.is-current::before {
  opacity: 1;
}

.section-nav--page .section-nav__link:hover .section-nav__icon,
.section-nav--page .section-nav__link.is-current .section-nav__icon {
  color: #fff7ff;
  box-shadow: 0 10px 26px rgba(127, 90, 255, 0.18);
}

.section-nav--page .section-nav__link.is-current {
  border-color: rgba(214, 178, 255, 0.18);
  color: #fbf3ff;
  box-shadow:
    0 14px 28px rgba(87, 54, 180, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.section-nav--page .section-nav__link.is-current .section-nav__icon {
  animation: nav-icon-pulse 2.6s ease-in-out infinite;
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
}

.section-nav--page .section-nav__link:active {
  transform: translateY(0) scale(0.96);
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.content {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}

.section {
  display: grid;
  gap: 14px;
  animation: rise .54s ease both;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(213, 180, 255, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    var(--surface);
  box-shadow: var(--shadow), var(--shadow-soft);
  backdrop-filter: blur(24px);
  transform: translateY(0);
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease, background .26s ease;
}

.card::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 30%, transparent 70%, rgba(213, 180, 255, 0.14));
  opacity: 0.28; pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -24% -58% 34%;
  height: 190px;
  background: radial-gradient(circle, rgba(139, 216, 255, 0.09), transparent 72%);
  pointer-events: none;
  opacity: 0.7;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 40px 120px rgba(0,0,0,.56), 0 14px 34px rgba(141,214,255,.08);
}

.card--hero {
  background:
    radial-gradient(circle at top left, rgba(213, 180, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    var(--surface-strong);
}

.card--warm,
.card--cool {
  background:
    radial-gradient(circle at top right, rgba(213, 180, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    var(--surface);
}

.card--account {
  align-self: start;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(139, 216, 255, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(11, 14, 24, 0.96);
}

.card--wide { min-height: 100%; }

.card__topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(206, 215, 236, 0.58);
  margin-bottom: 16px;
}

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

h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  margin-bottom: 16px;
  max-width: 11ch;
  letter-spacing: -.08em;
}

h2 {
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  line-height: 1.16;
  letter-spacing: -0.05em;
}

h3 { font-size: 1rem; line-height: 1.4; }

p {
  color: rgba(229, 233, 244, 0.76);
  font-size: 13px;
  line-height: 1.65;
}

.muted {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.brand__text,
.eyebrow,
h1,
h2,
h3,
.section-nav__link,
.primary-btn,
.primary-btn--link,
.ghost-btn,
.duration-btn,
.plan-card__title,
.hero__trust-item strong,
.account-list__label {
  font-family: var(--font-display);
}

p,
.muted,
.plan-card__desc,
.plan-duration__hint,
.hero__trust-item small,
.account-list__value,
.order-item__meta,
.device-item__meta {
  font-family: var(--font);
  font-weight: 300;
}

.hero__trust-item small,
.muted,
.order-item__meta,
.device-item__meta,
.plan-card__desc,
.plan-duration__hint {
  color: rgba(229, 233, 244, .7);
}

.primary-btn, .ghost-btn, .duration-btn {
  appearance: none; border: 0; cursor: pointer;
  border-radius: 16px; padding: 11px 16px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.primary-btn, .primary-btn--link {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f4dcff, #d5b4ff 50%, #8bd8ff);
  color: #10131a; font-weight: 700;
  box-shadow: 0 18px 44px rgba(139, 216, 255, 0.16);
}

.ghost-btn {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.9);
}

.primary-btn:hover, .ghost-btn:hover, .duration-btn:hover { transform: translateY(-2px); }

.primary-btn:disabled, .ghost-btn:disabled, .duration-btn:disabled {
  opacity: .6;
  cursor: wait;
  transform: none;
}

.primary-btn:active,
.ghost-btn:active,
.duration-btn:active,
.section-nav__link:active {
  transform: translateY(0) scale(.98);
}

.ghost-btn--compact,
.ghost-btn--menu,
.primary-btn--hero {
  min-height: 46px;
}

.ghost-btn--compact {
  min-width: 92px;
}

.ghost-btn--menu {
  width: 100%;
  justify-content: flex-start;
}

.duration-btn--wide {
  width: 100%;
  justify-content: center;
}

.feature-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.feature-pills span,
.duration-chip,
.status-badge,
.catalog-intro__meta span,
.plan-card__meta span,
.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .86);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
}

.status-badge {
  color: #101218;
  background: linear-gradient(135deg, #d8f2ff, #dbd1ff 54%, #f6d6ff);
  border: 0;
}

.status-badge--active {
  color: #101218;
  background: linear-gradient(135deg, #dafde3, #d8f7ff 56%, #d8e7ff);
}

.status-badge--warn {
  color: #2a1700;
  background: linear-gradient(135deg, #ffe7c2, #ffe0a2 58%, #f7c77b);
}

.status-badge--ghost {
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.05);
}

.plan-badge {
  background: rgba(240, 200, 143, 0.12);
  border-color: rgba(240, 200, 143, 0.18);
  color: rgba(255, 255, 255, .92);
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}

.catalog-shell {
  display: grid;
  gap: 14px;
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 16px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(213, 180, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.014)),
    rgba(13, 15, 25, 0.96);
}

.catalog-intro__copy {
  display: grid;
  gap: 10px;
}

.catalog-intro__copy strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: -0.04em;
}

.catalog-intro__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.catalog-intro__meta span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.82);
  font-size: 11px;
}

.promo-panel, .promo-panel__controls, .promo-panel__copy, .status-grid, .faq-list, .review-grid, .compare-grid, .guide-grid {
  display: grid;
  gap: 14px;
}

.promo-panel {
  grid-template-columns: 1.1fr .9fr;
  align-items: start;
}

.promo-state,
.status-item,
.faq-item,
.review-item,
.compare-item {
  padding: 13px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.014)),
    var(--surface-panel);
}

.promo-state {
  color: rgba(255, 255, 255, .88);
  line-height: 1.7;
}

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

.status-item strong,
.faq-item strong,
.review-item strong,
.compare-item strong { display: block; margin-bottom: 8px; }

.review-grid,
.compare-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

.review-grid--dense,
.compare-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: stretch;
}

.guide-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.guide-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.034), rgba(255, 255, 255, 0.016)),
    var(--surface-soft);
  display: grid;
  gap: 8px;
}

.review-stars {
  color: #f8d7a1;
  letter-spacing: .18em;
  font-size: 12px;
}

.compare-item__price {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.plan-card {
  position: relative;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(213, 180, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    rgba(11, 14, 24, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
  animation: rise .5s ease both;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -55% 38%;
  height: 170px;
  background: radial-gradient(circle, rgba(139, 216, 255, 0.1), transparent 72%);
  pointer-events: none;
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 32px 96px rgba(0, 0, 0, .58), 0 18px 40px rgba(214, 178, 255, .11);
}

.plan-card--focus {
  border-color: rgba(240, 200, 143, 0.32);
  box-shadow: 0 30px 96px rgba(0, 0, 0, 0.48), 0 18px 42px rgba(240, 200, 143, 0.08);
}

.plan-card--offer {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 100%;
}

.plan-card__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.plan-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
}

.plan-card__meta span {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid rgba(255, 255, 255, .07);
}

.plan-card__title {
  font-size: 1.02rem;
  line-height: 1.35;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}

.plan-card__desc {
  margin-bottom: 16px;
  font-size: 12px;
}

.plan-duration {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-duration:first-of-type { border-top: 0; padding-top: 0; }

.plan-duration--featured {
  margin-inline: -8px;
  padding-inline: 12px;
  border-radius: 18px;
  border: 1px solid rgba(213, 180, 255, 0.12);
  background: linear-gradient(135deg, rgba(213, 180, 255, 0.1), rgba(139, 216, 255, 0.04));
}

.plan-duration__copy {
  display: grid;
  gap: 4px;
}

.plan-duration__price {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, .9);
}

.plan-duration__hint {
  font-size: 11px;
  line-height: 1.5;
}

.duration-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.duration-btn {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  letter-spacing: 0.03em;
}

.duration-btn--primary,
.primary-btn {
  border-radius: 16px;
  color: #10131a;
  background: linear-gradient(135deg, #f4dcff, #d5b4ff 50%, #8bd8ff);
  box-shadow: 0 18px 44px rgba(139, 216, 255, 0.16);
}

.plan-offer__period {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  letter-spacing: -0.05em;
  color: rgba(255,255,255,.96);
}

.plan-offer__price {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.08em;
  color: #fbf6ff;
}

.plan-offer__alt {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.plan-offer__caption {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.plan-offer__actions {
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.account__main {
  display: grid;
  gap: 14px;
}

.account-list {
  display: grid;
  gap: 12px;
}

.account-list__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.014)),
    var(--surface-panel);
  align-items: center;
}

.account-list__label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.account-list__value {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .92);
  text-align: left;
  word-break: break-word;
}

.account-list__value--mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.account-control,
.account-stats {
  display: grid;
  gap: 12px;
}

.account-control__hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.account-control__name {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.1;
  letter-spacing: -.05em;
}

.account-control__meta {
  margin-top: 6px;
  color: rgba(229, 233, 244, .64);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

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

.account-stat {
  display: grid;
  gap: 8px;
  min-height: 88px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .032), rgba(255, 255, 255, .014)),
    var(--surface-panel);
}

.account-stat span {
  color: rgba(229, 233, 244, .6);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.account-stat strong {
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: -.03em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.step {
  padding: 14px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid rgba(255, 255, 255, .06);
}

.step__index {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(213, 180, 255, 0.14), rgba(139, 216, 255, 0.08));
  color: var(--accent-strong);
  margin-bottom: 12px; font-size: 12px;
}

.support-box { display: grid; gap: 14px; }

.support-box__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.support-box__actions--wide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.ticket-form__input {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  padding: 15px 16px;
}

.ticket-form__input::placeholder { color: rgba(255, 255, 255, .35); }

.ticket-form__input:focus {
  outline: none;
  border-color: rgba(139, 216, 255, 0.28);
  box-shadow: 0 0 0 3px rgba(139, 216, 255, 0.08);
}

.state-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.014)),
    var(--surface-panel);
}

.state-panel--compact {
  margin-bottom: 12px;
}

.state-panel__dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-cool));
  box-shadow: 0 0 20px rgba(139, 216, 255, .24);
}

.state-panel__copy {
  display: grid;
  gap: 6px;
}

.state-panel__copy strong {
  font-size: 14px;
  line-height: 1.2;
}

.state-panel--success .state-panel__dot {
  background: linear-gradient(135deg, #96f0c2, #e4fff0);
}

.state-panel--error .state-panel__dot {
  background: linear-gradient(135deg, #ff8f84, #ffd8d2);
}

.state-panel--warn .state-panel__dot {
  background: linear-gradient(135deg, #ffd27b, #fff0c9);
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  align-items: center;
  overscroll-behavior: none;
}

.checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(12px);
}

.checkout-modal__dialog {
  position: relative;
  width: min(620px, calc(100vw - 24px));
  z-index: 1;
  border-radius: 28px;
  max-height: min(760px, calc(100dvh - 24px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: calc(100vh - 40px);
}

.checkout-modal__body {
  display: grid;
  gap: 14px;
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  max-height: calc(100dvh - 180px);
  padding-right: 2px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.checkout-summary {
  display: grid;
  gap: 10px;
  padding: 14px 14px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--surface-soft);
}

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

.checkout-summary__eyebrow {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.checkout-summary__title {
  font-size: 15px;
  line-height: 1.3;
}

.checkout-summary__price {
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}

.checkout-summary__meta {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.checkout-summary__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checkout-summary__chips span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 11px;
}

.checkout-actions {
  display: grid;
  gap: 10px;
}

.checkout-option {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
  text-align: left;
}

.checkout-option:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .16);
}

.checkout-option--primary {
  border-color: rgba(214, 178, 255, .24);
  background: linear-gradient(135deg, rgba(214, 178, 255, .16), rgba(141, 214, 255, .05));
}

.checkout-option--disabled {
  opacity: 0.7;
  cursor: default;
}

.checkout-option--disabled:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.08);
}

.checkout-option__price {
  display: grid;
  gap: 2px;
  text-align: right;
}

.checkout-option__lead {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.checkout-option__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 18px;
  flex: 0 0 auto;
}

.checkout-option__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.checkout-option__copy strong {
  font-size: 13px;
  line-height: 1.2;
}

.checkout-option__copy .muted {
  font-size: 10px;
  line-height: 1.4;
}

.checkout-option__price span { font-size: 13px; }
.checkout-option__price small { color: var(--muted); font-size: 10px; }

.checkout-empty {
  padding: 14px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,.12);
  color: var(--muted);
  text-align: center;
}

.orders-list, .devices-list { display: grid; gap: 14px; margin-top: 12px; }

.orders-list:empty::before, .devices-list:empty::before {
  content: "Данные появятся после авторизации и первых действий.";
  color: var(--muted);
  font-size: 13px;
}

.order-item, .device-item {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.016)),
    var(--surface-soft);
}

.order-item__top, .device-item__top { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.order-item__meta, .device-item__meta { font-size: 12px; }

.hero__more-actions {
  position: relative;
}

.hero__more-actions-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(15,18,28,.98), rgba(10,12,18,.98));
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
  backdrop-filter: blur(18px);
  z-index: 15;
}

.toast {
  position: fixed; left: 50%; bottom: calc(86px + env(safe-area-inset-bottom) + 12px); transform: translateX(-50%);
  min-width: 240px; max-width: min(460px, calc(100vw - 24px));
  padding: 14px 18px; border-radius: 18px;
  background: rgba(12, 14, 22, 0.96); border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow); z-index: 70;
}

.plans--catalog .plan-card,
.orders-list > *,
.devices-list > *,
.guide-grid > *,
.review-grid > *,
.faq-list > * {
  animation: rise .42s ease both;
}

.plans--catalog .plan-card:nth-child(2),
.orders-list > *:nth-child(2),
.devices-list > *:nth-child(2),
.guide-grid > *:nth-child(2),
.review-grid > *:nth-child(2),
.faq-list > *:nth-child(2) {
  animation-delay: .05s;
}

.plans--catalog .plan-card:nth-child(3),
.orders-list > *:nth-child(3),
.devices-list > *:nth-child(3),
.guide-grid > *:nth-child(3),
.review-grid > *:nth-child(3),
.faq-list > *:nth-child(3) {
  animation-delay: .1s;
}

.content > .section:nth-child(1) { animation-delay: .1s; }
.content > .section:nth-child(2) { animation-delay: .16s; }
.content > .section:nth-child(3) { animation-delay: .22s; }

.skeleton-stack {
  display: grid;
  gap: 10px;
}

.skeleton-line,
.skeleton-chip {
  display: block;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.04);
}

.skeleton-line::after,
.skeleton-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-line {
  height: 12px;
  border-radius: 999px;
}

.skeleton-line--lg {
  height: 16px;
  width: 78%;
}

.skeleton-line--short {
  width: 48%;
}

.skeleton-chip {
  height: 34px;
  width: 46%;
  border-radius: 14px;
}

.plan-card--skeleton,
.order-item--skeleton,
.device-item--skeleton {
  pointer-events: none;
}

.guide-accordion {
  display: grid;
  gap: 12px;
}

.guide-accordion__item {
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(18, 21, 33, 0.92), rgba(10, 12, 20, 0.9)),
    rgba(255,255,255,.02);
  overflow: hidden;
}

.guide-accordion__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 16px;
  cursor: pointer;
}

.guide-accordion__summary::-webkit-details-marker {
  display: none;
}

.guide-accordion__title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.guide-accordion__title-wrap strong {
  display: block;
  font-size: 14px;
}

.guide-accordion__title-wrap small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.guide-accordion__icon,
.guide-accordion__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.guide-accordion__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(213, 180, 255, 0.16), rgba(139, 216, 255, 0.08));
  color: #f8f0ff;
  font-size: 22px;
}

.guide-accordion__chevron {
  color: rgba(255,255,255,.76);
  transition: transform .2s ease;
}

.guide-accordion__item[open] .guide-accordion__chevron {
  transform: rotate(180deg);
}

.guide-accordion__body {
  display: grid;
  gap: 14px;
  padding: 0 18px 18px;
}

.guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guide-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: var(--text);
  text-decoration: none;
  font-size: 11px;
  line-height: 1.4;
}

.guide-link:hover {
  border-color: rgba(213, 180, 255, 0.24);
  background: rgba(255,255,255,.06);
}

.guide-steps-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  line-height: 1.7;
}

.guide-note {
  margin: 0;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.84);
  font-size: 12px;
  line-height: 1.7;
}

@keyframes shimmer {
  100% { transform: translateX(100%); }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(24px, 18px, 0) scale(1.08); }
}

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

@keyframes page-in {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes nav-dock-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes nav-icon-pulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-1px) scale(1.05);
  }
}

[hidden] { display: none !important; }

@media (max-width: 980px) {
  .hero__grid, .section--split, .steps { grid-template-columns: 1fr; }
  .promo-panel, .status-grid, .catalog-intro, .hero__trust { grid-template-columns: 1fr; }
  .checkout-option { flex-direction: column; align-items: flex-start; }
  .checkout-option__price { text-align: left; }
  .section-nav { position: static; }
  .card--account { position: static; }
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  body[data-page] {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .shell,
  .shell--page {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    margin-inline: auto;
    padding-bottom: calc(98px + env(safe-area-inset-bottom));
  }

  .hero,
  .hero__stack,
  .hero__nav,
  .content,
  .section,
  .card,
  .plan-card {
    width: 100%;
    max-width: 100%;
  }

  .card, .plan-card { padding: 16px; border-radius: 20px; }

  .hero__nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
    padding: 12px 14px;
    border-radius: 16px;
    min-height: auto;
  }

  .brand {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .hero__actions {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .hero__actions > * { width: auto; }

  .hero__actions--compact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    width: 100%;
  }

  .hero__actions--compact > * {
    width: 100%;
    min-width: 0;
  }

  .hero__more-actions,
  .hero__more-actions > .ghost-btn,
  .hero__actions--compact .primary-btn {
    width: 100%;
    min-width: 0;
  }

  .ghost-btn--compact,
  .primary-btn--hero {
    width: 100%;
    min-height: 48px;
    min-width: 0;
    padding-inline: 10px;
    font-size: 13px;
  }

  .hero__more-actions-menu {
    width: 100%;
    min-width: 0;
    right: auto;
    left: 0;
    min-width: 164px;
  }

  .hero__cta {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__cta > * { width: 100%; }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    max-width: 100%;
  }

  .hero p,
  .hero h1,
  .hero__nav,
  .hero__stack > .card {
    overflow: hidden;
  }

  h1 { font-size: clamp(1.95rem, 10vw, 2.8rem); line-height: 1.02; }

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

  .feature-pills { margin-top: 16px; }
  .feature-pills span { width: 100%; justify-content: flex-start; }

  .section--split,
  .catalog-intro,
  .status-grid,
  .review-grid--dense,
  .compare-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .catalog-intro { padding: 18px; }
  .catalog-intro__meta { justify-content: flex-start; }

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

  .plan-card__head, .account-list__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-list__row {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .account-list__value { text-align: left; }

  .account-control__hero,
  .support-box__actions--wide,
  .account-stats,
  .checkout-stepper {
    grid-template-columns: 1fr;
  }

  .account-control__hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .duration-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .duration-actions .duration-btn { width: 100%; }

  .support-box__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .support-box__actions > * { width: 100%; }

  .card__topline {
    margin-bottom: 14px;
  }

  .checkout-modal { padding: 12px; }

  .section-nav.card.section-nav--page {
    position: fixed;
    top: auto;
    left: 50%;
    right: auto;
    width: min(430px, calc(100vw - 14px));
    transform: translateX(-50%);
    bottom: calc(env(safe-area-inset-bottom) + 8px);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    padding: 6px;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(12, 14, 22, 0.98), rgba(8, 10, 16, 0.95)),
      rgba(255, 255, 255, 0.03);
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    z-index: 36;
  }

  .section-nav--page .section-nav__link {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    gap: 4px;
    min-height: 48px;
    padding: 7px 2px 8px;
    border-radius: 14px;
    text-align: center;
  }

  .section-nav__icon {
    font-size: 18px;
    box-shadow: none;
  }

  .section-nav__label {
    white-space: normal;
    max-width: 100%;
    font-size: 9px;
    letter-spacing: 0.09em;
  }

  .guide-accordion__summary {
    padding: 16px 16px 14px;
  }

  .guide-accordion__body {
    padding: 0 16px 16px;
  }

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

@media (max-width: 480px) {
  .shell { width: calc(100vw - 14px); padding-top: 12px; }

  .hero__actions { width: 100%; justify-content: space-between; }

  .hero__more-actions,
  .primary-btn--hero {
    flex: 1 1 0;
  }

  .ghost-btn--compact,
  .primary-btn--hero {
    width: 100%;
  }

  .section-nav.card { padding: 8px; border-radius: 16px; }
  .section-nav--page { gap: 8px; }

  .section-nav__link,
  .primary-btn,
  .ghost-btn,
  .duration-btn {
    min-height: 46px;
    padding-inline: 12px;
    border-radius: 14px;
  }

  .plan-card__title { font-size: .96rem; }

  .catalog-intro__meta span,
  .feature-pills span,
  .duration-chip,
  .status-badge,
  .plan-badge {
    width: 100%;
    justify-content: flex-start;
  }

  .section-nav.card.section-nav--page {
    width: min(400px, calc(100vw - 10px));
    bottom: calc(env(safe-area-inset-bottom) + 6px);
    gap: 3px;
    padding: 5px;
    border-radius: 18px;
  }

  .section-nav--page .section-nav__link {
    min-height: 46px;
    gap: 3px;
    padding: 6px 1px 7px;
    border-radius: 13px;
  }

  .section-nav__label {
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .section-nav--page .section-nav__link,
  .section-nav--page .section-nav__link.is-current .section-nav__icon {
    animation: none !important;
  }
}
