:root {
  color-scheme: dark;
  --bg: #111111;
  --phone: #373737;
  --phone-soft: #424343;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #f4f4f2;
  --muted: rgba(244, 244, 242, 0.55);
  --faint: rgba(244, 244, 242, 0.34);
  --white: #f7f7f5;
  --black: #181818;
  --warm: #f0a360;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

button {
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

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

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ui-icon {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  opacity: 0.92;
}

.app,
.noscript {
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.08), transparent 28rem),
    radial-gradient(circle at 50% 86%, rgba(255, 255, 255, 0.05), transparent 22rem),
    var(--bg);
}

.noscript {
  display: grid;
  place-content: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
}

.stage {
  min-height: 100svh;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 18px 14px 30px;
}

.phone-shell {
  position: relative;
  width: min(430px, calc(100vw - 22px));
  min-height: min(1050px, calc(100svh - 48px));
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.26);
  border-radius: 44px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.12) 47%, rgba(255, 255, 255, 0.04)),
    var(--phone);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.46),
    0 30px 100px rgba(0, 0, 0, 0.58);
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 55% 12%, rgba(255, 255, 255, 0.12), transparent 16rem),
    radial-gradient(circle at 62% 73%, rgba(185, 205, 215, 0.08), transparent 16rem);
}

.phone-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.30;
  background-image: url("data:image/svg+xml,%3Csvg width='430' height='1200' viewBox='0 0 430 1200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.40)' stroke-width='1'%3E%3Cpath d='M-80 98 C20 84 86 120 166 112 C268 100 320 58 520 78'/%3E%3Cpath d='M-74 188 C70 198 108 158 214 168 C300 176 340 220 520 198'/%3E%3Cpath d='M-88 294 C36 268 110 302 210 294 C316 286 360 246 526 270'/%3E%3Cpath d='M-70 398 C44 392 124 424 214 418 C324 410 370 374 528 394'/%3E%3Cpath d='M-86 512 C22 492 108 528 204 520 C300 512 364 472 528 496'/%3E%3Cpath d='M-74 636 C40 648 120 616 214 626 C316 638 382 674 520 654'/%3E%3Cpath d='M-84 746 C22 728 102 762 210 756 C316 750 370 708 528 732'/%3E%3Cpath d='M-78 866 C48 884 120 846 224 858 C330 870 380 914 526 892'/%3E%3Cpath d='M-86 986 C28 958 118 994 218 982 C316 972 368 930 526 954'/%3E%3Cpath d='M-66 1102 C36 1116 118 1082 214 1092 C314 1102 370 1138 526 1122'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% auto;
}

.notch {
  position: relative;
  z-index: 2;
  width: 116px;
  height: 28px;
  margin: 10px auto 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
}

.screen {
  position: relative;
  z-index: 2;
  padding: 0 22px 150px;
}

.content {
  display: grid;
  gap: 18px;
}

.app-header {
  min-height: 86px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-lockup,
.header-actions,
.hero-row,
.panel-head,
.traffic-row,
.muted-row,
.user-row {
  display: flex;
  align-items: center;
}

.brand-lockup {
  min-width: 0;
  gap: 8px;
}

.brand-lockup > span:last-child {
  min-width: 0;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  white-space: nowrap;
  max-width: 122px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 19px;
  line-height: 1.05;
  font-weight: 760;
}

.brand-lockup small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.logo-mark,
.panel-icon,
.avatar {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.11);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 12px 28px rgba(0, 0, 0, 0.24);
}

.logo-mark {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 18px;
}

.logo-mark--plain {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.logo-mark svg {
  width: 34px;
  height: 34px;
}

.logo-image {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.18))
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.26));
}

.panel-icon .ui-icon {
  width: 30px;
  height: 30px;
}

.logo-stripe {
  fill: currentColor;
  stroke: none;
}

.header-actions {
  gap: 8px;
}

.icon-button,
.lang-button,
.menu-button {
  min-width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
}

.lang-button {
  min-width: 60px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 760;
}

.lang-wrap {
  position: relative;
}

.lang-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  min-width: 142px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(36, 36, 36, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.lang-popover button {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 13px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  font-size: 15px;
  font-weight: 720;
}

.lang-popover button span {
  margin-right: 8px;
}

.lang-popover .is-active {
  color: var(--warm);
  background: rgba(240, 163, 96, 0.12);
}

.hero,
.page-head {
  padding-top: 18px;
}

.hero h1,
.page-head h1 {
  font-size: 31px;
  line-height: 1.08;
  font-weight: 570;
  letter-spacing: 0;
}

.page-head p,
.hero-row span {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
}

.page-head p {
  margin-top: 12px;
}

.hero-row {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 14px 7px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.panel,
.mini-panel,
.action-item,
.device-actions button,
.device-card,
.support-line,
.tariff-card,
.period-list button {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 55px rgba(0, 0, 0, 0.24);
}

.panel {
  border-radius: var(--radius-xl);
  padding: 20px;
}

.profile-panel {
  margin-top: 10px;
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055) 58%, rgba(255, 255, 255, 0.12)),
    rgba(255, 255, 255, 0.045);
}

.profile-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.10) 48%, transparent 62%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.12), transparent 9rem);
  opacity: 0.72;
}

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

.panel-head {
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.panel-head span,
.panel-head small,
.muted-row,
.trial-panel p,
.empty-panel span {
  color: var(--muted);
}

.panel-head span,
.panel-head strong,
.panel-head small {
  display: block;
}

.panel-head span {
  margin-bottom: 8px;
  font-size: 16px;
}

.panel-head strong {
  font-size: 24px;
  font-weight: 760;
}

.panel-head small {
  margin-top: 8px;
  font-size: 17px;
}

.status {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 14px 7px;
  border: 1px solid rgba(240, 163, 96, 0.48);
  border-radius: 999px;
  background: rgba(240, 163, 96, 0.10);
  color: var(--warm);
  font-size: 16px;
}

.traffic-row {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  font-size: 19px;
}

.traffic-row span {
  color: var(--muted);
}

.traffic-row strong {
  font-size: 20px;
}

.progress {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 14px;
}

.progress i {
  display: block;
  width: 18%;
  height: 100%;
  border-radius: inherit;
  background: var(--white);
}

.muted-row {
  justify-content: space-between;
  gap: 14px;
  font-size: 16px;
}

.primary-action {
  width: 100%;
  min-height: 58px;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 22px;
  background: var(--white);
  color: var(--black);
  font-size: 20px;
  font-weight: 820;
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.10);
}

.accent-action {
  width: 100%;
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px 2px;
  border: 1px solid rgba(240, 163, 96, 0.66);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 196, 121, 0.94), rgba(240, 163, 96, 0.86)),
    var(--warm);
  color: #17130f;
  font-size: 20px;
  font-weight: 820;
  box-shadow:
    0 18px 46px rgba(240, 163, 96, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-panel {
  min-height: 98px;
  padding: 18px;
  border-radius: 24px;
}

.mini-panel span {
  display: block;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
}

.mini-panel strong {
  display: block;
  font-size: 24px;
}

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

.action-item {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 24px;
  text-align: left;
}

.action-item strong {
  font-size: 18px;
  font-weight: 720;
}

.manage-subscription {
  min-height: 70px;
}

.panel-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
}

.trial-panel {
  min-height: 348px;
  display: grid;
  align-content: start;
  gap: 26px;
}

.trial-panel .panel-icon {
  width: 48px;
  height: 48px;
}

.trial-panel h2 {
  font-size: 22px;
  font-weight: 760;
}

.trial-panel p {
  margin-top: -14px;
  font-size: 18px;
}

.trial-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.trial-stats strong {
  display: block;
  font-size: 22px;
}

.trial-stats small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
}

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

.period-list button {
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 16px;
  border-radius: 22px;
  font-size: 18px;
  text-align: left;
}

.period-list .is-active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.tariff-page-head {
  padding-top: 8px;
}

.back-link {
  width: max-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.back-link svg {
  width: 19px;
  height: 19px;
}

.tariff-list {
  display: grid;
  gap: 16px;
}

.tariff-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-xl);
}

.tariff-card.is-featured {
  border-color: rgba(240, 163, 96, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 18px 55px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(240, 163, 96, 0.05);
}

.tariff-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.tariff-price {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px 6px;
  border: 1px solid rgba(240, 163, 96, 0.34);
  border-radius: 999px;
  background: rgba(240, 163, 96, 0.10);
  color: var(--warm);
  font-size: 16px;
  font-weight: 760;
}

.tariff-card h2 {
  font-size: 30px;
  line-height: 1.08;
  font-weight: 760;
}

.tariff-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.42;
}

.tariff-lead {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 19px !important;
}

.locations {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.locations span {
  color: var(--muted);
  font-size: 15px;
}

.locations b {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 17px;
  font-weight: 680;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.24;
}

.feature-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 16px rgba(240, 163, 96, 0.24);
}

.tariff-select {
  margin-top: 2px;
}

.checkout-head {
  display: grid;
  gap: 6px;
  padding-top: 0;
}

.checkout-nav-row {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 52px;
  margin-bottom: 4px;
}

.checkout-nav-row span {
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.icon-back {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
}

.icon-back svg {
  width: 23px;
  height: 23px;
}

.checkout-head h1 {
  margin: 0;
}

.checkout-head p {
  margin-top: 2px;
}

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

.checkout-block,
.checkout-receipt,
.promo-box,
.total-line,
.payment-method,
.ghost-action {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 18px 55px rgba(0, 0, 0, 0.22);
}

.checkout-block,
.checkout-receipt {
  border-radius: 26px;
  padding: 16px;
}

.checkout-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.segmented-control button {
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 19px;
  font-weight: 820;
}

.segmented-control .is-active,
.payment-method.is-active,
.crypto-grid .is-active {
  border-color: rgba(240, 163, 96, 0.68);
  background: rgba(240, 163, 96, 0.16);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 0 0 1px rgba(240, 163, 96, 0.06);
}

.traffic-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 2px;
}

.traffic-topline span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 760;
}

.traffic-topline strong {
  font-size: 42px;
  line-height: 1;
}

.traffic-selected {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 760;
}

.traffic-selected i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 16px rgba(240, 163, 96, 0.34);
}

.traffic-picker input[type="range"] {
  width: 100%;
  height: 38px;
  margin: 12px 0 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  touch-action: pan-y;
}

.traffic-picker input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--warm) 0 var(--fill), rgba(255, 255, 255, 0.12) var(--fill) 100%);
}

.traffic-picker input[type="range"]::-webkit-slider-thumb {
  width: 34px;
  height: 34px;
  margin-top: -13px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.traffic-picker input[type="range"]::-moz-range-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.traffic-picker input[type="range"]::-moz-range-progress {
  height: 8px;
  border-radius: 999px;
  background: var(--warm);
}

.traffic-picker input[type="range"]::-moz-range-thumb {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: var(--white);
}

.range-limits {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
}

.checkout-receipt {
  display: grid;
  gap: 11px;
}

.receipt-line,
.total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.receipt-line {
  min-height: 36px;
  color: var(--muted);
  font-size: 16px;
}

.receipt-line strong {
  color: var(--white);
  font-size: 17px;
  text-align: right;
}

.device-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "copy stepper"
    "included included";
  align-items: center;
  gap: 10px 16px;
  padding-top: 10px;
}

.device-row-copy {
  grid-area: copy;
  min-width: 0;
}

.device-row-copy b,
.device-row-copy strong,
.device-row-copy em,
.device-row-copy strong span,
.device-row-copy strong i,
.device-row > small {
  display: block;
}

.device-row-copy b {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.device-row-copy strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
  font-size: 34px;
  line-height: 1.08;
}

.device-row-copy strong i {
  color: var(--muted);
  font-style: normal;
  font-size: 16px;
  font-weight: 760;
}

.device-row-copy em {
  max-width: 260px;
  margin-top: 5px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
  line-height: 1.28;
}

.device-row > small {
  grid-area: included;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.25;
}

.stepper {
  grid-area: stepper;
  display: grid;
  grid-template-columns: 36px 30px 36px;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.08);
}

.stepper button {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(240, 163, 96, 0.58);
  border-radius: 14px;
  background: rgba(240, 163, 96, 0.14);
  color: var(--white);
  font-size: 25px;
  font-weight: 820;
}

.stepper button:disabled {
  cursor: default;
  opacity: 0.34;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
}

.stepper b {
  text-align: center;
  font-size: 23px;
}

.promo-box {
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: 22px;
}

.promo-box input {
  min-width: 0;
  height: 58px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 17px;
  font-weight: 720;
}

.promo-box input::placeholder {
  color: var(--faint);
}

.promo-box.is-success {
  border-color: rgba(91, 220, 136, 0.58);
}

.promo-box.is-error {
  border-color: rgba(255, 104, 104, 0.62);
}

.promo-state,
.promo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.promo-state {
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.promo-icon {
  width: 25px;
  height: 25px;
  border: 1px solid currentColor;
  border-radius: 50%;
  animation: promo-pop 0.26s ease both;
}

.promo-icon svg {
  width: 16px;
  height: 16px;
}

.promo-icon.is-ok {
  color: #5bdc88;
}

.promo-icon.is-bad {
  color: #ff6868;
}

.promo-icon.is-loading {
  border-color: rgba(255, 255, 255, 0.18);
  border-top-color: var(--warm);
  animation: promo-spin 0.8s linear infinite;
}

.total-line {
  min-height: 66px;
  padding: 0 16px;
  border-radius: 22px;
}

.total-line span {
  color: var(--muted);
  font-size: 18px;
}

.total-line strong {
  font-size: 34px;
  line-height: 1;
}

.payment-list {
  display: grid;
  gap: 10px;
}

.payment-method {
  min-height: 62px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-radius: 22px;
  text-align: left;
}

.payment-method span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
}

.payment-method span svg {
  width: 25px;
  height: 25px;
}

.payment-method strong {
  text-align: right;
  font-size: 19px;
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.crypto-grid button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 17px;
  font-weight: 820;
}

.checkout-pay {
  margin-top: 0;
}

.checkout-pay:disabled {
  opacity: 0.62;
}

.ghost-action {
  min-height: 58px;
  border-radius: 22px;
  color: var(--white);
  font-size: 20px;
  font-weight: 820;
}

@keyframes promo-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes promo-pop {
  from {
    transform: scale(0.82);
    opacity: 0.25;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.support-line {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 24px;
}

.support-line strong {
  font-size: 18px;
}

.support-line button {
  min-height: 42px;
  padding: 0 18px 2px;
  border-radius: 15px;
  background: var(--white);
  color: var(--black);
  font-size: 17px;
  font-weight: 760;
}

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

.device-actions button {
  min-width: 0;
  min-height: 76px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  border-radius: 23px;
  color: var(--text);
  font-size: 13px;
  font-weight: 760;
}

.device-actions svg {
  color: var(--warm);
}

.device-actions .is-danger svg {
  color: rgba(255, 120, 120, 0.78);
}

.section-label {
  margin: 2px 0 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 820;
  text-transform: uppercase;
}

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

.device-card {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 25px;
  text-align: left;
}

.device-card.is-selected {
  border-color: rgba(240, 163, 96, 0.55);
  background:
    linear-gradient(145deg, rgba(240, 163, 96, 0.13), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
}

.device-card.is-selected .panel-icon {
  color: var(--warm);
  border-color: rgba(240, 163, 96, 0.42);
  background: rgba(240, 163, 96, 0.13);
}

.device-copy {
  min-width: 0;
}

.device-copy strong,
.device-copy small {
  display: block;
}

.device-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 760;
}

.device-copy small {
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-size: 14px;
}

.device-state {
  max-width: 84px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--faint);
  font-size: 13px;
  font-weight: 760;
}

.device-card.is-selected .device-state {
  color: var(--warm);
}

.empty-panel {
  min-height: 236px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.empty-panel .panel-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
}

.empty-panel strong {
  font-size: 19px;
}

.menu-panel {
  padding: 22px;
}

.user-row {
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.avatar {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 19px;
  font-weight: 760;
}

.user-row strong,
.user-row small {
  display: block;
}

.user-row strong {
  font-size: 20px;
}

.user-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
}

.menu-list,
.drawer-list {
  display: grid;
  gap: 4px;
  padding-top: 18px;
}

.menu-list button,
.drawer-list button {
  min-height: 64px;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  border-radius: 18px;
  background: transparent;
  text-align: left;
  font-size: 19px;
}

.menu-list .ui-icon,
.drawer-list .ui-icon {
  width: 28px;
  height: 28px;
  opacity: 0.88;
}

.menu-list .is-active,
.drawer-list .is-active {
  background: rgba(255, 255, 255, 0.12);
}

.bottom-nav {
  position: absolute;
  z-index: 5;
  left: 22px;
  right: 22px;
  bottom: 16px;
  min-height: 82px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 29px;
  background: rgba(18, 18, 18, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.40);
}

.bottom-nav button {
  min-width: 0;
  min-height: 62px;
  padding: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  border-radius: 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.05;
}

.bottom-nav button span {
  display: block;
  width: 100%;
  max-width: 62px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.bottom-nav svg {
  width: 22px;
  height: 22px;
}

.bottom-nav .ui-icon {
  width: 22px;
  height: 22px;
  opacity: 0.58;
}

.bottom-nav .is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.bottom-nav .is-active .ui-icon,
.menu-list .is-active .ui-icon,
.drawer-list .is-active .ui-icon {
  opacity: 1;
}

.drawer {
  position: absolute;
  z-index: 10;
  inset: 0;
  padding: 122px 22px 128px;
  background: rgba(24, 24, 24, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.drawer-close {
  position: absolute;
  top: 32px;
  right: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.toast {
  position: absolute;
  z-index: 30;
  left: 28px;
  right: 28px;
  bottom: 112px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(240, 163, 96, 0.42);
  border-radius: 16px;
  background: rgba(36, 31, 26, 0.94);
  color: var(--warm);
  text-align: center;
  font-size: 14px;
  font-weight: 760;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.36);
}

@media (max-width: 480px) {
  .stage {
    padding: 0;
  }

  .phone-shell {
    width: 100vw;
    min-height: 100svh;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 0;
  }

  .notch {
    display: none;
  }

  .screen {
    padding: 20px 18px 154px;
  }

  .app-header {
    grid-template-columns: 1fr auto;
    min-height: 80px;
    gap: 8px;
    padding: 14px 12px;
    border-radius: 27px;
    margin-bottom: 28px;
  }

  .icon-button {
    display: none;
  }

  .brand-lockup strong {
    max-width: 104px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
  }

  .brand-lockup small {
    font-size: 12px;
  }

  .logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 17px;
  }

  .logo-mark--plain {
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .logo-mark svg,
  .logo-image {
    width: 38px;
    height: 38px;
  }

  .lang-button {
    min-width: 76px;
    padding-inline: 8px;
    gap: 6px;
    font-size: 16px;
  }

  .menu-button {
    min-width: 48px;
  }

  .icon-button,
  .lang-button,
  .menu-button {
    height: 48px;
    border-radius: 17px;
  }

  .hero h1,
  .page-head h1 {
    font-size: 31px;
  }

  .checkout-head {
    gap: 8px;
  }

  .checkout-nav-row {
    min-height: 48px;
    margin-bottom: 10px;
  }

  .checkout-head h1 {
    font-size: 29px;
    line-height: 1.08;
  }

  .checkout-head p {
    margin-top: 0;
  }

  .device-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
  }

  .device-row-copy em {
    max-width: none;
  }

  .stepper {
    grid-template-columns: 42px 34px 42px;
  }

  .stepper button {
    width: 42px;
    height: 40px;
  }

  .panel-head {
    display: grid;
    justify-items: start;
  }

  .profile-panel {
    padding: 18px;
  }

  .bottom-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: max(14px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 370px) {
  .screen,
  .drawer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .bottom-nav {
    left: 12px;
    right: 12px;
  }

  .bottom-nav button {
    font-size: 9px;
  }
}
