@import url("https://db.onlinewebfonts.com/c/4c4a87973ef80fc72049e01b9085fadc?family=ABC+Diatype");

:root {
  --bg: #050507;
  --panel: #121216;
  --panel-2: #181520;
  --panel-3: #0f1115;
  --line: rgba(245, 245, 247, 0.14);
  --line-soft: rgba(245, 245, 247, 0.08);
  --text: #f5f5f7;
  --muted: #b1b1bb;
  --soft: #d6d6dd;
  --accent: #b9a3ff;
  --accent-2: #e7dcff;
  --violet: #7c3aed;
  --positive: #c9b9ff;
  --warning: #f5c451;
  --danger: #ff7a8a;
  --glass: rgba(21, 21, 27, 0.62);
  --glass-strong: rgba(24, 24, 31, 0.76);
  --glass-soft: rgba(255, 255, 255, 0.055);
  --glass-border: rgba(255, 255, 255, 0.16);
  --glass-border-soft: rgba(255, 255, 255, 0.10);
  --human-edge: rgba(255, 255, 255, 0.075);
  --liquid-shadow:
    0 28px 74px rgba(0, 0, 0, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  --surface-shadow:
    0 24px 64px rgba(0, 0, 0, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
  --surface-shadow-active:
    0 24px 68px rgba(0, 0, 0, 0.42),
    0 12px 28px rgba(185, 163, 255, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
  --tile-shadow:
    0 18px 42px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    inset 0 -1px 0 rgba(0, 0, 0, 0.32);
  --cookie-panel-height: 0px;
  --max: 1240px;
  --radius: 18px;
  --font-main: "ABC Diatype", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-family: var(--font-main);
}

* {
  box-sizing: border-box;
}

button,
input,
select,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-size: 18px;
  line-height: 1.56;
  background:
    radial-gradient(circle at 50% -160px, rgba(124, 58, 237, 0.26), transparent 420px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 620px),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    radial-gradient(circle at 18px 24px, rgba(255, 255, 255, 0.72) 0 0.8px, transparent 1.2px),
    radial-gradient(circle at 92px 70px, rgba(185, 163, 255, 0.50) 0 0.7px, transparent 1.1px);
  background-size: 150px 150px, 230px 230px;
  mix-blend-mode: screen;
}

body > * {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
  width: min(100%, var(--max));
  padding: 14px 20px;
  border: 1px solid var(--glass-border-soft);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(124, 58, 237, 0.10), transparent 72%),
    rgba(5, 5, 7, 0.72);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  backdrop-filter: blur(26px) saturate(160%);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
  min-width: 0;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav a,
.nav summary {
  color: var(--muted);
  transition: color 180ms ease;
}

.nav a:hover,
.nav summary:hover,
.nav-group[open] summary,
.app-link:hover,
.secondary-action:hover {
  color: var(--text);
}

.nav-group {
  position: relative;
}

.nav-group summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  cursor: pointer;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-chevron {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.nav-group[open] .nav-chevron {
  transform: rotate(180deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 35;
  display: grid;
  min-width: 180px;
  padding: 10px;
  border: 1px solid var(--glass-border-soft);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 48%),
    linear-gradient(180deg, rgba(124, 58, 237, 0.12), transparent 70%),
    rgba(12, 12, 16, 0.92);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
  backdrop-filter: blur(24px) saturate(155%);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
}

.nav-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 18px;
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.app-link,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 50%),
    rgba(255, 255, 255, 0.045);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  font-size: 16px;
  font-weight: 600;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.app-link {
  border-color: rgba(167, 139, 250, 0.38);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.action-icon,
.option-icon,
.card-icon,
.card-action-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.option-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.top-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.language-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 76px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent 52%),
    rgba(255, 255, 255, 0.045);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.language-select {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 76px;
  min-height: 42px;
  padding: 0 38px 0 14px;
  border: 0;
  border-radius: inherit;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  outline: none;
  cursor: pointer;
}

.language-chevron {
  position: absolute;
  z-index: 2;
  right: 14px;
  width: 17px;
  height: 17px;
  pointer-events: none;
  fill: none;
  stroke: var(--muted);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-picker:focus-within {
  border-color: rgba(167, 139, 250, 0.72);
}

[dir="rtl"] body {
  direction: rtl;
}

[dir="rtl"] .language-select {
  padding-right: 14px;
  padding-left: 42px;
}

[dir="rtl"] .language-chevron {
  right: auto;
  left: 14px;
}

[dir="rtl"] .brand,
[dir="rtl"] .market-head,
[dir="rtl"] .app-preview-head,
[dir="rtl"] .support-band,
[dir="rtl"] .footer,
[dir="rtl"] .instructions div {
  direction: rtl;
}

[dir="rtl"] .market-table th,
[dir="rtl"] .market-table td,
[dir="rtl"] .ticker-card,
[dir="rtl"] .product-card {
  text-align: right;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
  margin-bottom: 18px;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: var(--radius);
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.primary-link:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

main {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 20px 84px;
}

section {
  position: relative;
  scroll-margin-top: 92px;
}

main > section + section {
  margin-top: 84px;
}

main > section + section::before {
  content: none;
}

.market-table-band,
.process-band,
.detail-band,
.band,
.guide-band,
.experience-band,
.operations-band,
.platform-visual-band,
.info-grid,
.reward-grid,
.faq-band,
.support-band {
  padding-top: 8px;
}

#checkout {
  scroll-margin-top: 96px;
}

.booking-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
  min-height: calc(100svh - 92px);
  padding-top: 30px;
}

.booking-shell > * {
  min-width: 0;
}

.booking-copy {
  padding: 22px 0 0;
}

.booking-copy h1 {
  font-size: clamp(58px, 4.8vw, 72px);
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 42%),
    linear-gradient(135deg, rgba(180, 150, 255, 0.98), rgba(119, 96, 255, 0.78));
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 17l5-5 4 4 7-8'/%3E%3Cpath d='M15 8h5v5'/%3E%3C/g%3E%3C/svg%3E")
    center / 18px 18px no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 17l5-5 4 4 7-8'/%3E%3Cpath d='M15 8h5v5'/%3E%3C/g%3E%3C/svg%3E")
    center / 18px 18px no-repeat;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin: 20px 0 28px;
  font-size: 72px;
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 700;
}

h1 span {
  display: block;
}

h2 {
  margin: 16px 0 0;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 700;
}

p {
  max-width: min(660px, 100%);
  color: var(--muted);
  font-size: 20px;
  line-height: 1.68;
  overflow-wrap: break-word;
}

.booking-copy > p {
  max-width: 620px;
  font-size: 23px;
  line-height: 1.5;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 680px);
  margin-top: 38px;
  border: 0;
  overflow: visible;
  background: transparent;
}

.hero-proof div {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 136px;
  padding: 22px 20px 22px;
  border: 1px solid var(--glass-border-soft);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 58%),
    rgba(16, 17, 23, 0.70);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.hero-proof div::before {
  content: "01";
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof div:nth-child(2)::before {
  content: "02";
}

.hero-proof div:nth-child(3)::before {
  content: "03";
}

.hero-proof strong {
  font-size: 20px;
  font-weight: 700;
}

.hero-proof span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.48;
}

.market-panel {
  width: 100%;
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.13), transparent 46%),
    linear-gradient(180deg, #17181f, #0b0c10);
  overflow: hidden;
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.42);
}

.booking-shell > .market-panel {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.market-head {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--line-soft);
}

.market-head span,
.market-head small,
.metric-strip small,
.ticker-meta,
.field label,
.form-status,
.footer {
  color: var(--muted);
}

.market-head span {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-weight: 700;
}

.market-head strong {
  font-size: 31px;
  letter-spacing: 0;
  font-weight: 700;
}

.market-head em {
  color: var(--positive);
  font-style: normal;
  font-weight: 700;
}

.market-head em.down,
.ticker-change.down {
  color: var(--danger);
}

.chart-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 16px 20px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.chart-toolbar span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.timeframe-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.timeframe-tabs button {
  min-width: 36px;
  min-height: 28px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.timeframe-tabs button:hover,
.timeframe-tabs button.active {
  background: rgba(124, 58, 237, 0.22);
  color: var(--text);
}

.price-line {
  --candle-count: 24;
  display: grid;
  grid-template-columns: repeat(var(--candle-count), minmax(4px, 1fr));
  align-items: stretch;
  gap: 7px;
  height: 196px;
  padding: 24px 20px 20px;
}

.booking-shell > .market-panel .price-line {
  height: 260px;
  padding-inline: 28px;
}

.candle {
  position: relative;
  min-width: 4px;
  height: 100%;
}

.candle i,
.candle b {
  position: absolute;
  left: 50%;
  display: block;
  transform: translateX(-50%);
}

.candle i {
  top: var(--wick-top);
  width: 1px;
  height: var(--wick-height);
  border-radius: 999px;
  background: rgba(244, 246, 248, 0.58);
}

.candle b {
  top: var(--body-top);
  width: min(14px, 82%);
  min-height: 3px;
  height: var(--body-height);
  border-radius: 3px;
}

.candle.up b {
  background: linear-gradient(180deg, var(--violet), var(--positive));
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.2);
}

.candle.down b {
  background: linear-gradient(180deg, var(--danger), rgba(245, 196, 81, 0.82));
  box-shadow: 0 0 18px rgba(248, 113, 113, 0.15);
}

.price-line.loading .candle {
  opacity: 0.42;
}

.ticker-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line-soft);
}

.market-feed-note {
  padding: 16px 20px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.ticker-card {
  position: relative;
  min-height: 104px;
  padding: 16px 42px 16px 16px;
  border: 0;
  background: var(--panel-3);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.ticker-card .card-icon {
  position: absolute;
  top: 16px;
  right: 14px;
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.ticker-card:hover,
.ticker-card.active {
  background: #121a1d;
}

.ticker-card.active {
  box-shadow: inset 0 2px 0 var(--violet);
}

.ticker-card strong,
.ticker-card span {
  display: block;
}

.ticker-card strong {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}

.ticker-price {
  font-weight: 700;
}

.ticker-change {
  color: var(--positive);
  font-size: 14px;
}

.ticker-meta {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.metric-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(15, 16, 21, 0.62);
  overflow: hidden;
}

.metric-strip div {
  position: relative;
  display: grid;
  z-index: 1;
  gap: 12px;
  min-height: 104px;
  align-content: start;
  padding: 26px 28px 30px;
  border-right: 1px solid var(--line-soft);
}

.metric-strip strong {
  display: block;
  line-height: 1.15;
}

.metric-strip div:last-child {
  border-right: 0;
}

.checkout,
.result-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 0, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(circle at 92% 4%, rgba(124, 58, 237, 0.20), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 34%),
    var(--panel);
  padding: 24px;
  box-shadow: var(--surface-shadow);
}

.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-content: start;
}

.checkout-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: flex-start;
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.checkout-head > div {
  min-width: 0;
}

.checkout-head h2 {
  margin-bottom: 0;
  font-size: 29px;
}

.checkout-progress {
  display: grid;
  grid-template-columns: auto minmax(24px, 1fr) auto minmax(24px, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 2px 2px 6px;
}

.checkout-progress button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.checkout-progress button:disabled {
  cursor: default;
}

.checkout-progress button > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--glass-border-soft);
  border-radius: 50%;
  background: rgba(9, 10, 14, 0.74);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.checkout-progress button strong {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-progress button.active,
.checkout-progress button.complete {
  color: var(--text);
}

.checkout-progress button.active > span,
.checkout-progress button.complete > span {
  border-color: rgba(185, 163, 255, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 48%),
    rgba(124, 58, 237, 0.28);
  color: var(--text);
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.18);
}

.checkout-progress > i {
  height: 1px;
  min-width: 0;
  background: var(--glass-border-soft);
}

.checkout-step {
  display: grid;
  grid-column: 1 / -1;
  gap: 14px;
  min-width: 0;
  animation: checkout-step-in 220ms ease both;
}

@keyframes checkout-step-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.checkout-step-actions {
  display: grid;
  grid-template-columns: minmax(118px, auto) minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

.checkout-step-actions-end {
  grid-template-columns: minmax(0, 220px);
  justify-content: end;
}

.checkout-step-actions .secondary-action,
.checkout-step-actions .primary-action {
  grid-column: auto;
  min-height: 50px;
}

.checkout-step-actions .secondary-action {
  width: 100%;
}

.checkout-back-icon {
  transform: rotate(180deg);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.status-pill.ready {
  color: var(--positive);
  border-color: rgba(196, 181, 253, 0.35);
  background: rgba(124, 58, 237, 0.1);
}

.status-pill.error {
  color: var(--warning);
  border-color: rgba(245, 196, 81, 0.38);
  background: rgba(245, 196, 81, 0.08);
}

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

.checkout-section {
  display: grid;
  align-self: start;
  align-content: start;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 13px;
  border: 1px solid var(--glass-border-soft);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), transparent 48%),
    linear-gradient(180deg, rgba(124, 58, 237, 0.075), transparent 76%),
    rgba(10, 11, 16, 0.56);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow: var(--tile-shadow);
}

.checkout-product-section,
.checkout-details-section,
.checkout-payment-section,
.checkout-disclosure,
.checkline,
.form-status {
  grid-column: 1 / -1;
}

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

.checkout-product-section legend {
  grid-column: 1 / -1;
}

.checkout-product-section > .field:first-of-type {
  grid-column: 1;
  grid-row: 2;
}

.checkout-product-section .selected-product {
  grid-column: 1;
  grid-row: 3;
}

.checkout-product-section .selected-product p {
  display: block;
  overflow: visible;
  line-height: 1.5;
  -webkit-line-clamp: unset;
}

.checkout-product-section .selected-chips {
  flex-wrap: wrap;
  overflow: visible;
}

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

.checkout-details-section legend,
.checkout-details-section .field-billing-address,
.checkout-details-section .field-vat-id {
  grid-column: span 2;
}

.checkout-details-section legend {
  grid-column: 1 / -1;
}

.checkout-details-section .split-fields {
  display: contents;
}

.checkout-section legend {
  padding: 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.checkout-section .field {
  margin-bottom: 0;
}

.field > label {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 760;
  line-height: 1.25;
}

.field > label small {
  margin-left: 0.38em;
  color: color-mix(in srgb, var(--muted) 82%, var(--text));
  font-size: 0.72em;
  font-weight: 650;
  text-transform: lowercase;
}

.field > label small::before {
  content: "(";
}

.field > label small::after {
  content: ")";
}

.split-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

input,
select:not(.language-select) {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
  background: #0b0d11;
  color: var(--text);
  padding: 0 13px;
  outline: none;
  font-size: 15px;
}

select:not(.language-select) {
  padding-right: 58px;
  -webkit-appearance: none;
  appearance: none;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 7.5 10 12l4.5-4.5' fill='none' stroke='%23b7b6c2' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 24px center / 16px 16px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 54%),
    rgba(9, 10, 14, 0.66);
}

[dir="rtl"] select:not(.language-select) {
  padding-right: 14px;
  padding-left: 58px;
  background-position:
    left 24px center,
    0 0,
    0 0;
}

input:focus,
select:not(.language-select):focus {
  border-color: rgba(167, 139, 250, 0.72);
}

.selected-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  min-height: auto;
  margin-bottom: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: var(--panel-2);
}

.selected-product strong {
  display: block;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.25;
}

.selected-product span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
  text-align: right;
}

.selected-product p {
  grid-column: 1 / -1;
  display: -webkit-box;
  margin: 6px 0 8px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.selected-chips {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.selected-chips small,
.product-specs small {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 7px;
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: 999px;
  color: var(--text);
  background: rgba(124, 58, 237, 0.1);
  font-size: 12px;
  line-height: 1.25;
  white-space: normal;
}

.discount-field {
  margin-bottom: 0;
}

.discount-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: stretch;
}

.discount-apply {
  min-width: 108px;
  min-height: 44px;
  padding: 0 12px;
  white-space: nowrap;
}

.discount-status {
  min-height: 22px;
  margin: 6px 0 0;
  color: #70e0bb;
  font-size: 14px;
  line-height: 1.45;
}

.discount-status.error {
  color: #ff7a8a;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.payment-options label,
.checkline {
  display: grid;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d0f13;
  color: var(--muted);
}

.payment-options label {
  grid-template-columns: auto auto minmax(0, 1fr);
  min-height: 66px;
  padding: 10px;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.payment-options label:hover,
.payment-options label:has(input:checked) {
  border-color: rgba(185, 163, 255, 0.56);
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.18), transparent 70%),
    #101118;
  box-shadow: var(--surface-shadow-active);
  color: var(--text);
  transform: translateY(-1px);
}

.payment-options label > span {
  grid-column: 3;
  display: grid;
  align-self: center;
  gap: 3px;
  min-width: 0;
}

.payment-options input {
  grid-column: 1;
  align-self: center;
}

.payment-options .option-icon {
  grid-column: 2;
  justify-self: center;
  align-self: center;
  margin-top: 0;
}

.payment-options strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.payment-options small {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.payment-note {
  max-width: none;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.checkout-disclosure {
  display: grid;
  gap: 14px;
  align-items: start;
  margin: 0 0 12px;
  padding: 16px;
  border: 1px solid rgba(167, 139, 250, 0.34);
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.12), transparent 58%),
    rgba(16, 17, 23, 0.64);
  color: var(--muted);
}

.checkout-disclosure strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.3;
}

.checkout-disclosure label {
  cursor: pointer;
}

.checkout-terms-notice {
  display: grid;
  gap: 7px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-terms-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.42;
}

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

.checkout-terms-accept > input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--violet);
}

.checkout-terms-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.checkout-terms-copy a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.payment-options input,
.checkline input {
  width: 17px;
  min-height: 17px;
  margin: 0;
  accent-color: var(--violet);
}

.checkline {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  min-height: auto;
  padding: 12px 13px;
  margin-bottom: 10px;
  font-size: 13.5px;
  line-height: 1.45;
}

.checkline input {
  margin-top: 3px;
}

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

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius);
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  cursor: pointer;
}

.primary-action:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.form-status {
  min-height: 24px;
  margin-top: 8px;
  font-size: 14px;
}

.form-status.error {
  color: var(--danger);
}

.result-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px) auto;
  gap: 18px;
  align-items: center;
  margin: 12px 0 28px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(34, 211, 238, 0.08));
}

.result-panel[hidden] {
  display: none;
}

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

.instructions div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 10, 12, 0.42);
}

.invoice-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-weight: 700;
}

.payment-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border-radius: var(--radius);
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
}

.band,
.process-band,
.detail-band,
.guide-band,
.experience-band,
.operations-band,
.info-grid,
.reward-grid,
.faq-band,
.market-table-band,
.support-band {
  padding: 104px 0;
  border-top: 1px solid var(--line-soft);
}

.band-head,
.support-band {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: center;
  margin-bottom: 52px;
}

.support-band {
  margin-bottom: 0;
}

.band-head .secondary-action {
  flex: 0 0 auto;
  margin-left: auto;
}

.band-copy {
  max-width: 540px;
  margin-bottom: 32px;
  font-size: 20px;
  line-height: 1.68;
}

.market-table-band .band-copy {
  max-width: 720px;
  margin: -16px 0 32px;
}

.market-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 18, 22, 0.92);
  overflow-x: auto;
}

.market-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.market-table th,
.market-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  white-space: nowrap;
}

.market-table th {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.market-table tr {
  cursor: pointer;
}

.market-table tbody tr:hover,
.market-table tbody tr.active {
  background: rgba(124, 58, 237, 0.12);
}

.market-table tbody tr:focus-visible {
  outline: 2px solid rgba(182, 156, 255, 0.72);
  outline-offset: -2px;
}

.market-table tbody tr.active {
  box-shadow: inset 3px 0 0 var(--violet);
}

.market-table tbody tr:last-child td {
  border-bottom: 0;
}

.market-table td:first-child {
  display: grid;
  gap: 3px;
}

.market-table td:first-child span {
  color: var(--muted);
  font-size: 14px;
}

.market-table-price {
  font-weight: 700;
}

.market-table-change {
  color: var(--positive);
  font-weight: 700;
}

.market-table tr.down .market-table-change {
  color: var(--danger);
}

.market-table-volume,
.market-table-range {
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.process-step {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 262px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(185, 163, 255, 0.08), transparent 50%),
    var(--panel);
}

.process-step small {
  color: var(--accent);
  font-weight: 800;
  font-size: 16px;
}

.process-step strong {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.process-step span,
.detail-grid span,
.experience-list span,
.operations-visual span,
.reward-list span {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}

.process-carousel-band {
  overflow: hidden;
}

.process-carousel {
  position: relative;
  display: grid;
  gap: 28px;
}

.process-carousel-trackline {
  position: relative;
  height: 1px;
  margin: 0 0 8px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.62) 45%, transparent 0);
  background-size: 14px 1px;
  opacity: 0.54;
}

.process-carousel-viewport {
  width: min(100vw, 100%);
  overflow: hidden;
}

.process-carousel-track {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.process-carousel-track::-webkit-scrollbar {
  display: none;
}

.process-slide {
  flex: 0 0 min(660px, calc(100vw - 42px));
  display: grid;
  align-content: start;
  gap: 30px;
  scroll-snap-align: start;
}

.process-slide-copy {
  display: grid;
  gap: 20px;
  min-height: 178px;
}

.process-slide-copy small {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.95;
}

.process-slide-copy h3 {
  max-width: 540px;
  margin: 0;
  color: var(--text);
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.16;
}

.process-slide-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
}

.process-visual {
  position: relative;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(167, 139, 250, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    #131315;
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.process-visual::before,
.process-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.process-visual::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.64), transparent 21%, transparent 79%, rgba(0, 0, 0, 0.64)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%);
}

.process-visual::after {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.10) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 70%);
}

.visual-shell {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: min(72%, 470px);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: rgba(5, 6, 9, 0.9);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.56),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.visual-checkout {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.visual-row,
.visual-status-row,
.visual-reward-row,
.visual-terminal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.visual-row span,
.visual-status-row span,
.visual-reward-row span,
.visual-terminal-head span,
.visual-reference small,
.visual-objectives small,
.visual-reward-orbit small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.visual-row strong {
  color: var(--text);
  font-size: 28px;
  line-height: 1;
}

.visual-reference {
  display: grid;
  gap: 7px;
  padding: 20px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 122, 138, 0.18), rgba(167, 139, 250, 0.22)),
    rgba(255, 255, 255, 0.04);
}

.visual-reference b {
  background: linear-gradient(90deg, #ff6b76, #b96cff 70%);
  background-clip: text;
  color: transparent;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

.visual-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.visual-payment-grid span,
.visual-review-path span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 12px;
  font-weight: 750;
}

.visual-status-row {
  padding-top: 4px;
}

.visual-status-row i {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #f7c95f;
  box-shadow: 0 0 20px rgba(247, 201, 95, 0.44);
}

.visual-status-row strong {
  color: #f7c95f;
  font-size: 13px;
}

.visual-terminal {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.visual-terminal-head strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4ee3b2;
  font-size: 13px;
}

.visual-terminal-head strong::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.visual-chart-bars {
  display: flex;
  align-items: end;
  gap: 11px;
  min-height: 102px;
  padding: 14px 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-chart-bars i {
  width: 26px;
  min-height: 28px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #a78bfa, #4ee3b2);
  opacity: 0.88;
}

.visual-chart-bars i:nth-child(2) { height: 72px; }
.visual-chart-bars i:nth-child(3) { height: 48px; background: linear-gradient(180deg, #ff7183, #f7c95f); }
.visual-chart-bars i:nth-child(4) { height: 94px; }
.visual-chart-bars i:nth-child(5) { height: 58px; }
.visual-chart-bars i:nth-child(6) { height: 86px; background: linear-gradient(180deg, #ff7183, #f7c95f); }
.visual-chart-bars i:nth-child(7) { height: 44px; }
.visual-chart-bars i:nth-child(8) { height: 66px; }

.visual-order-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 13px;
  border: 1px solid rgba(78, 227, 178, 0.46);
  border-radius: 999px;
  background: rgba(78, 227, 178, 0.08);
  color: #4ee3b2;
}

.visual-order-line b,
.visual-order-line span {
  font-size: 13px;
}

.visual-objectives {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.visual-objectives span {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.visual-objectives b {
  color: var(--text);
  font-size: 20px;
}

.visual-review {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.visual-review-path {
  display: grid;
  gap: 10px;
}

.visual-review-path span {
  justify-content: flex-start;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
}

.visual-reward-orbit {
  display: grid;
  justify-items: center;
  align-content: center;
  width: 168px;
  aspect-ratio: 1;
  border: 1px solid rgba(167, 139, 250, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(167, 139, 250, 0.36), rgba(167, 139, 250, 0.09) 58%, transparent 60%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 80px rgba(167, 139, 250, 0.34);
}

.visual-reward-orbit strong {
  color: var(--text);
  font-size: 48px;
  line-height: 1;
}

.visual-reward-orbit span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 750;
}

.visual-reward-row {
  grid-column: 1 / -1;
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.visual-reward-row b {
  color: var(--text);
}

.process-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.process-carousel-controls > button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.process-carousel-controls > button:hover {
  border-color: rgba(185, 163, 255, 0.6);
  background: rgba(167, 139, 250, 0.14);
}

.process-carousel-controls > button:disabled {
  cursor: default;
  opacity: 0.38;
}

.process-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.process-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.process-dots button.active {
  width: 38px;
  background: var(--text);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.detail-grid div {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 236px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0, rgba(185, 163, 255, 0.16), transparent 42%),
    var(--panel);
}

.detail-grid small,
.operations-visual small {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-grid strong {
  font-size: 30px;
  line-height: 1.05;
}

.catalog-carousel {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.catalog-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(185, 163, 255, 0.42) transparent;
  scrollbar-width: thin;
}

.catalog-grid::-webkit-scrollbar {
  height: 6px;
}

.catalog-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(185, 163, 255, 0.42);
}

.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.catalog-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  cursor: pointer;
}

.catalog-controls button:first-child svg {
  transform: rotate(180deg);
}

.catalog-controls button:hover:not(:disabled) {
  border-color: rgba(185, 163, 255, 0.58);
  background: rgba(185, 163, 255, 0.11);
}

.catalog-controls button:disabled {
  cursor: default;
  opacity: 0.34;
}

.catalog-position {
  min-width: 58px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

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

.guide-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent 42%),
    linear-gradient(180deg, rgba(124, 58, 237, 0.10), transparent 68%),
    var(--glass);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
  box-shadow: var(--liquid-shadow);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.guide-card:hover {
  border-color: rgba(167, 139, 250, 0.58);
  transform: translateY(-2px);
}

.guide-card small {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.guide-card strong {
  font-size: 24px;
  line-height: 1.2;
}

.guide-card span,
.seo-list li,
.seo-card span {
  color: var(--muted);
}

.guide-card .card-action-icon {
  color: var(--accent);
}

.blog-preview-band {
  display: grid;
  gap: 30px;
}

.blog-preview-list {
  border-top: 1px solid var(--line);
}

.blog-preview-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  min-height: 92px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  transition:
    padding 180ms ease,
    background 180ms ease;
}

.blog-preview-row:hover {
  padding-left: 14px;
  padding-right: 14px;
  background: rgba(185, 163, 255, 0.045);
}

.blog-preview-row > span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-preview-row > strong {
  font-size: 22px;
  line-height: 1.3;
}

.blog-preview-row > small {
  color: var(--muted);
  font-size: 14px;
}

.blog-preview-row > svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 64px;
  align-items: start;
  padding: 76px 0 88px;
}

.seo-hero h1 {
  max-width: 850px;
}

.seo-kicker {
  margin-top: 20px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.seo-summary {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent 42%),
    linear-gradient(180deg, rgba(124, 58, 237, 0.10), transparent 68%),
    var(--glass);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
  box-shadow: var(--liquid-shadow);
}

.seo-summary strong {
  font-size: 24px;
  line-height: 1.2;
}

.seo-summary a {
  color: var(--accent-2);
  font-weight: 700;
}

.seo-content {
  display: grid;
  gap: 52px;
  padding-bottom: 84px;
}

.seo-section {
  display: grid;
  gap: 22px;
  padding-top: 58px;
  border-top: 1px solid var(--line-soft);
}

.seo-section h2 {
  max-width: 840px;
}

.seo-section h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

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

.seo-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), transparent 50%),
    rgba(16, 17, 23, 0.62);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
}

.seo-card strong {
  font-size: 20px;
  line-height: 1.3;
}

.seo-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 18, 22, 0.72);
}

.seo-table th,
.seo-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

.seo-table th {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
}

.seo-table tr:last-child td {
  border-bottom: 0;
}

.seo-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0;
  padding-left: 24px;
}

.seo-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(167, 139, 250, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(185, 163, 255, 0.16), transparent 52%),
    var(--glass);
}

.seo-cta p {
  flex: 1 1 420px;
  margin: 0;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.45fr);
  gap: 72px;
  align-items: end;
  min-height: 510px;
  padding: 82px 0 78px;
}

.blog-hero > div {
  max-width: 820px;
}

.blog-hero h1,
.article-hero h1 {
  max-width: 920px;
}

.blog-hero p {
  max-width: 760px;
  margin-bottom: 0;
}

.blog-principles {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.blog-principles > svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-principles strong {
  font-size: 22px;
  line-height: 1.25;
}

.blog-principles span {
  color: var(--muted);
  line-height: 1.65;
}

.blog-principles a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: var(--accent-2);
  font-weight: 700;
}

.blog-index {
  display: grid;
  gap: 34px;
  padding: 8px 0 36px;
}

.article-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
}

.article-card {
  display: grid;
  align-content: start;
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 46%),
    rgba(16, 17, 23, 0.62);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  backdrop-filter: blur(20px) saturate(145%);
  box-shadow: var(--liquid-shadow);
}

.article-card-featured {
  background:
    radial-gradient(circle at 84% 10%, rgba(124, 58, 237, 0.25), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 48%),
    rgba(19, 17, 27, 0.78);
}

.article-card-meta,
.article-card-footer,
.article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  color: var(--muted);
  font-size: 14px;
}

.article-card-meta {
  justify-content: space-between;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}

.article-card-meta span,
.article-byline span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.article-card-meta svg,
.article-byline svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-card h2 {
  margin: 64px 0 18px;
  font-size: 36px;
  line-height: 1.08;
}

.article-card p {
  margin: 0;
  color: var(--muted);
}

.article-card-footer {
  justify-content: space-between;
  margin-top: auto;
  padding-top: 34px;
}

.article-card-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(167, 139, 250, 0.42);
  border-radius: 50%;
  color: var(--accent-2);
}

.article-card-footer svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-topics {
  display: grid;
  grid-template-columns: minmax(250px, 0.52fr) minmax(0, 1fr);
  gap: 72px;
  padding: 58px 0;
  border-top: 1px solid var(--line-soft);
}

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

.topic-list div {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.topic-list strong {
  font-size: 20px;
}

.topic-list span {
  color: var(--muted);
}

.article-hero {
  display: grid;
  gap: 22px;
  max-width: 980px;
  padding: 78px 0 64px;
}

.article-hero h1 {
  margin: 0;
}

.article-deck {
  max-width: 850px;
  margin: 0;
  color: var(--soft);
  font-size: 24px;
  line-height: 1.52;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.article-back svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(180deg);
}

.article-byline {
  padding-top: 8px;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 72px;
  align-items: start;
  justify-content: center;
  padding-bottom: 70px;
}

.article-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 11px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-toc strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 14px;
  text-transform: uppercase;
}

.article-toc a {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.article-toc a:hover {
  color: var(--accent-2);
}

.article-body {
  min-width: 0;
}

.article-body section {
  display: grid;
  gap: 18px;
  padding: 52px 0;
  border-top: 1px solid var(--line-soft);
  scroll-margin-top: 100px;
}

.article-body section:first-child {
  padding-top: 0;
  border-top: 0;
}

.article-body h2,
.article-body h3,
.article-body p {
  margin: 0;
}

.article-body h2 {
  font-size: 38px;
  line-height: 1.15;
}

.article-body h3 {
  padding-top: 12px;
  font-size: 24px;
  line-height: 1.25;
}

.article-body p,
.article-body li {
  color: var(--soft);
  font-size: 19px;
  line-height: 1.75;
}

.article-body p strong {
  color: var(--text);
}

.article-callout {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding: 24px 26px;
  border-left: 3px solid var(--accent);
  background: rgba(185, 163, 255, 0.07);
}

.article-callout strong {
  font-size: 18px;
}

.article-callout p {
  color: var(--muted);
}

.article-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: article-step;
}

.article-steps li {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 22px 0 22px 52px;
  border-top: 1px solid var(--line-soft);
  counter-increment: article-step;
}

.article-steps li::before {
  content: counter(article-step, decimal-leading-zero);
  position: absolute;
  top: 23px;
  left: 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.article-steps strong {
  color: var(--text);
  font-size: 20px;
}

.article-steps span {
  color: var(--muted);
}

.article-checklist {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-checklist li {
  position: relative;
  padding-left: 30px;
}

.article-checklist li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.article-facts,
.drawdown-examples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 14px 0;
}

.article-facts div,
.drawdown-examples div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius);
  background: rgba(16, 17, 23, 0.62);
}

.article-facts strong {
  font-size: 18px;
}

.article-facts span,
.drawdown-examples span {
  color: var(--muted);
  line-height: 1.55;
}

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

.drawdown-examples strong {
  color: var(--accent-2);
  font-size: 32px;
  line-height: 1.1;
}

.drawdown-examples p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.article-table-wrap {
  overflow-x: auto;
}

.article-disclaimer {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.article-next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-next > div {
  display: grid;
  gap: 6px;
}

.article-next > div span {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
}

.article-next > div strong {
  font-size: 23px;
}

.product-card {
  position: relative;
  flex: 0 0 clamp(280px, calc((100% - 44px) / 3), 390px);
  min-height: 298px;
  padding: 26px 52px 26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(185, 163, 255, 0.08), transparent 48%),
    var(--panel);
  cursor: pointer;
  color: var(--text);
  text-align: left;
  scroll-snap-align: start;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.product-card .card-action-icon {
  position: absolute;
  top: 26px;
  right: 24px;
  color: var(--accent);
  transition: transform 180ms ease;
}

.product-card:hover .card-action-icon,
.product-card.active .card-action-icon {
  transform: translateX(3px);
}

.product-card:hover,
.product-card.active {
  border-color: rgba(167, 139, 250, 0.58);
  transform: translateY(-2px);
}

.product-card strong,
.product-card span {
  display: block;
}

.product-card .price {
  margin-top: 22px;
  font-size: 26px;
  font-weight: 700;
}

.product-summary {
  min-height: 82px;
  margin: 20px 0;
  font-size: 17px;
  line-height: 1.62;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.product-card small {
  color: var(--muted);
  font-size: 14px;
}

.experience-band,
.operations-band,
.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 68px;
}

.experience-list {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.experience-list div,
.reward-list div {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.app-preview {
  align-self: stretch;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0, rgba(185, 163, 255, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(124, 58, 237, 0.1), transparent 45%),
    #0d0f13;
  overflow: hidden;
}

.app-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.app-preview-head span {
  color: var(--muted);
}

.app-preview-head strong {
  color: var(--positive);
}

.app-preview-body {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.app-account-select {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 7, 0.36);
}

.app-account-select small,
.app-preview-metrics small,
.app-preview-grid small {
  color: var(--muted);
}

.app-account-select strong {
  font-size: 22px;
  line-height: 1.25;
}

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

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

.app-preview-metrics div {
  display: grid;
  gap: 8px;
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d0f13;
}

.app-preview-metrics strong {
  font-size: 18px;
  line-height: 1.25;
}

.app-preview-chart {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 10px;
  height: 168px;
  padding: 32px 24px 22px;
}

.app-preview-chart span {
  min-height: 18px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--violet), var(--positive));
}

.app-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.app-preview-grid div {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d0f13;
}

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

.app-preview-actions span {
  min-height: 42px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(185, 163, 255, 0.1);
  color: var(--soft);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.operations-band {
  align-items: center;
}

.operations-visual {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.operations-visual div {
  display: grid;
  gap: 12px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.12), transparent 54%),
    #0f1015;
}

.operations-visual strong {
  font-size: 22px;
}

.platform-visual-band {
  display: grid;
  gap: 32px;
}

.platform-copy {
  max-width: 860px;
}

.platform-copy p {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 650;
  line-height: 1.42;
}

.platform-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 50% 0, rgba(185, 163, 255, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--liquid-shadow);
}

.platform-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.8;
  object-fit: cover;
  object-position: center;
}

.rule-list {
  display: grid;
  gap: 18px;
}

.rule-list div {
  display: grid;
  gap: 12px;
  min-height: 96px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.rule-list span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.reward-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 68px;
  align-items: start;
}

.reward-list {
  display: grid;
  gap: 20px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.faq-list summary {
  cursor: pointer;
  padding: 24px;
  font-weight: 700;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  font-size: 17px;
  line-height: 1.65;
}

.assistant-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid var(--glass-border-soft);
  border-radius: 999px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 48%),
    rgba(18, 18, 24, 0.78);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
  box-shadow: var(--liquid-shadow);
  cursor: pointer;
}

body.cookie-consent-active .assistant-launcher {
  bottom: calc(var(--cookie-panel-height) + 32px);
}

body.cookie-consent-active .support-assistant {
  bottom: calc(var(--cookie-panel-height) + 100px);
}

body.cookie-consent-active .assistant-launcher,
body.cookie-consent-active .support-assistant {
  display: none;
}

.assistant-launcher:hover,
.assistant-close:hover {
  border-color: rgba(174, 143, 255, 0.62);
  transform: translateY(-1px);
}

.support-assistant {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 70;
  width: min(420px, calc(100vw - 32px));
}

.assistant-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--glass-border-soft);
  border-radius: 24px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 46%),
    linear-gradient(180deg, rgba(124, 58, 237, 0.14), transparent 72%),
    rgba(12, 13, 18, 0.88);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
  box-shadow: var(--liquid-shadow);
}

.assistant-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.assistant-head h2 {
  margin: 6px 0 0;
  font-size: 26px;
}

.assistant-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--glass-border-soft);
  border-radius: 999px;
  color: var(--text);
  background: rgba(7, 8, 12, 0.62);
  cursor: pointer;
}

.assistant-messages {
  display: grid;
  max-height: 310px;
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
}

.assistant-message {
  width: fit-content;
  max-width: 92%;
  padding: 12px 14px;
  border: 1px solid var(--glass-border-soft);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  font-size: 15px;
  line-height: 1.45;
}

.assistant-message.user {
  justify-self: end;
  color: var(--text);
  background: rgba(124, 58, 237, 0.22);
}

.assistant-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.assistant-quick button {
  min-height: 34px;
  border: 1px solid rgba(174, 143, 255, 0.34);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(124, 58, 237, 0.12);
  font-weight: 700;
  cursor: pointer;
}

.assistant-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.assistant-form input {
  min-height: 48px;
  border-radius: 16px;
  padding: 0 14px;
  font-size: 15px;
}

.assistant-form .primary-action {
  min-height: 48px;
  padding: 0 16px;
}

.cookie-consent {
  position: fixed;
  inset: auto 18px 18px;
  z-index: 80;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(1180px, 100%);
  padding: 20px;
  border: 1px solid var(--glass-border-soft);
  border-radius: 24px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(124, 58, 237, 0.12), transparent 70%),
    rgba(9, 10, 14, 0.92);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
  box-shadow: var(--liquid-shadow);
  pointer-events: auto;
}

.cookie-copy h2 {
  margin: 6px 0 8px;
  font-size: 24px;
}

.cookie-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .secondary-action,
.cookie-actions .primary-action,
.cookie-preferences .primary-action {
  min-height: 46px;
  padding: 0 16px;
  font-size: 14px;
}

.cookie-preferences {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
}

.cookie-preferences .checkline {
  min-height: 48px;
  margin: 0;
}

.cookie-policy-link {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 14px;
  text-underline-offset: 4px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: start;
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 20px 34px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  max-width: 980px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.footer a {
  color: var(--text);
  text-decoration-color: rgba(174, 143, 255, 0.55);
  text-underline-offset: 4px;
}

.footer a:hover {
  color: var(--accent);
}

.market-panel,
.checkout,
.result-panel,
.market-table-wrap,
.product-card,
  .app-preview,
  .operations-visual,
  .hero-proof,
  .faq-list details,
  .assistant-card,
.cookie-panel {
  border-color: var(--glass-border-soft);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent 42%),
    linear-gradient(180deg, rgba(124, 58, 237, 0.10), transparent 68%),
    var(--glass);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
  box-shadow: var(--liquid-shadow);
}

.hero-proof div,
.ticker-card,
.selected-product,
.payment-options label,
.checkline,
.checkout-disclosure,
.instructions div,
.experience-list div,
.reward-list div,
.rule-list div,
.detail-grid div,
.operations-visual div,
.app-account-select,
.app-preview-metrics div,
.app-preview-grid div,
.app-preview-actions span {
  border-color: var(--glass-border-soft);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), transparent 50%),
    rgba(16, 17, 23, 0.62);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
}

input,
select:not(.language-select) {
  border-color: var(--glass-border-soft);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 54%),
    rgba(9, 10, 14, 0.66);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  backdrop-filter: blur(16px) saturate(145%);
}

.primary-link,
.primary-action,
.payment-link {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 220, 255, 0.86)),
    var(--text);
  box-shadow:
    0 18px 42px rgba(185, 163, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.app-link:hover,
.secondary-action:hover,
.language-picker:hover {
  border-color: rgba(231, 220, 255, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.17), transparent 48%),
    rgba(255, 255, 255, 0.075);
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .booking-copy,
  .checkout {
    max-width: 760px;
    margin-inline: auto;
  }

}

@media (max-width: 980px) {
  .booking-shell,
  .experience-band,
  .operations-band,
  .platform-visual-band,
  .info-grid,
  .reward-grid,
  .result-panel {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .detail-grid,
  .guide-grid,
  .seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-hero {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .article-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-toc strong {
    grid-column: 1 / -1;
  }

  .article-facts {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 34px;
  }
}

@media (max-width: 680px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand-mark img {
    width: 28px;
    height: 28px;
  }

  .brand span {
    font-size: 16px;
  }

  .top-actions {
    gap: 8px;
  }

  .app-link,
  .language-picker {
    min-height: 40px;
    font-size: 14px;
  }

  .app-link {
    padding: 0 12px;
  }

  .language-select {
    min-width: 70px;
    padding-right: 34px;
    background-position:
      right 14px center,
      0 0,
      0 0;
  }

  [dir="rtl"] .language-select {
    padding-right: 12px;
    padding-left: 34px;
    background-position:
      left 14px center,
      0 0,
      0 0;
  }

  .discount-row {
    grid-template-columns: 1fr;
  }

  .discount-apply {
    width: 100%;
  }

  .nav {
    display: none;
  }

  main {
    padding: 28px 14px 60px;
    overflow: hidden;
  }

  h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
  }

  p,
  .booking-copy > p {
    font-size: 19px;
    line-height: 1.52;
  }

  .booking-shell {
    min-height: auto;
    gap: 38px;
    padding-top: 12px;
  }

  .booking-copy,
  .market-panel,
  .checkout,
  .result-panel,
  .market-table-band,
  .process-band,
  .detail-band,
  .guide-band,
    .blog-preview-band,
    .experience-band,
    .operations-band,
    .platform-visual-band,
    .info-grid,
    .reward-grid,
  .faq-band,
  .support-band {
    max-width: 100%;
  }

  .split-fields,
  .payment-options,
  .hero-proof,
  .hero-actions,
  .process-grid,
  .faq-list,
  .guide-grid,
  .seo-grid,
  .article-grid,
  .topic-list,
  .drawdown-examples {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    gap: 38px;
    padding: 32px 0 54px;
  }

  .blog-principles {
    padding: 24px 0;
  }

  .article-card {
    min-height: 320px;
    padding: 24px;
  }

  .article-card h2 {
    margin-top: 46px;
    font-size: 30px;
  }

  .blog-topics {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0;
  }

  .article-hero {
    padding: 32px 0 44px;
  }

  .article-deck {
    font-size: 20px;
  }

  .article-toc {
    grid-template-columns: 1fr;
  }

  .article-body section {
    padding: 40px 0;
  }

  .article-body h2 {
    font-size: 30px;
  }

  .article-body p,
  .article-body li {
    font-size: 18px;
    line-height: 1.68;
  }

  .article-steps li {
    padding-left: 42px;
  }

  .article-next {
    align-items: stretch;
  }

  .article-next .secondary-action {
    width: 100%;
  }

  .blog-preview-row {
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    padding: 20px 0;
  }

  .blog-preview-row > span,
  .blog-preview-row > strong,
  .blog-preview-row > small {
    grid-column: 1;
  }

  .blog-preview-row > svg {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .hero-actions {
    display: grid;
    gap: 14px;
  }

  .primary-link,
  .secondary-action {
    width: 100%;
  }

  .hero-proof div {
    min-height: auto;
    padding: 20px;
  }

  .market-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .chart-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .timeframe-tabs {
    width: 100%;
  }

  .timeframe-tabs button {
    flex: 1;
    min-width: 0;
  }

  .price-line {
    height: 132px;
    gap: 5px;
    padding: 16px 14px 10px;
  }

  .booking-shell > .market-panel .price-line {
    height: 160px;
    padding: 16px 14px 10px;
  }

  .ticker-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .ticker-card {
    min-width: 148px;
    min-height: 82px;
    scroll-snap-align: start;
  }

  .metric-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .metric-strip div {
    min-height: 86px;
    padding: 16px 14px 18px;
  }

  .metric-strip small {
    font-size: 11px;
  }

  .band-head,
  .support-band,
  .footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .band-head {
    flex-direction: column;
    gap: 22px;
  }

  .band-head .secondary-action {
    width: 100%;
    margin-left: 0;
  }

  .band,
  .process-band,
  .detail-band,
  .guide-band,
  .blog-preview-band,
  .experience-band,
  .operations-band,
  .platform-visual-band,
  .info-grid,
  .reward-grid,
  .faq-band,
  .market-table-band,
  .support-band {
    padding: 62px 0;
  }

  .product-card {
    flex-basis: min(88vw, 360px);
  }

  .catalog-controls {
    justify-content: center;
  }

  .checkout,
  .result-panel {
    padding: 22px;
  }

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

  .checkout-progress {
    gap: 6px;
  }

  .checkout-progress button {
    gap: 6px;
  }

  .checkout-progress button strong {
    font-size: 11px;
  }

  .checkout-section {
    padding: 18px;
  }

  .selected-product {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .selected-product span {
    text-align: left;
  }

  .selected-product strong,
  .selected-product span,
  .selected-product p {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .checkout-product-section .selected-product p {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  .checkout-section legend {
    max-width: calc(100% - 16px);
    padding: 0 10px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .selected-chips {
    gap: 8px;
  }

  .selected-chips small {
    min-height: 30px;
    padding: 4px 10px;
    line-height: 1.25;
    white-space: normal;
  }

  .checkout-step-actions,
  .checkout-step-actions-end {
    grid-template-columns: 1fr 1.35fr;
    justify-content: stretch;
  }

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

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

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

  .checkout-details-section .split-fields {
    display: grid;
  }

  .checkout-product-section .discount-field,
  .checkout-product-section > .field:first-of-type,
  .checkout-product-section .selected-product,
  .checkout-details-section legend,
  .checkout-details-section .field-billing-address,
  .checkout-details-section .field-vat-id {
    grid-column: 1;
    grid-row: auto;
  }

  .checkout-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .status-pill {
    justify-self: start;
  }

  .app-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-preview-body {
    padding: 16px;
  }

  .app-preview-metrics,
  .app-preview-actions {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .seo-hero {
    gap: 28px;
    padding: 46px 0 54px;
  }

  .seo-table {
    display: block;
    overflow-x: auto;
  }

  .assistant-launcher {
    right: 14px;
    bottom: 14px;
    width: 54px;
    padding: 0;
  }

  body.cookie-consent-active .assistant-launcher {
    bottom: calc(var(--cookie-panel-height) + 20px);
  }

  body.cookie-consent-active .support-assistant {
    bottom: calc(var(--cookie-panel-height) + 84px);
  }

  .assistant-launcher span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .support-assistant {
    right: 14px;
    bottom: 78px;
    width: calc(100vw - 28px);
  }

  .assistant-card {
    padding: 18px;
    border-radius: 20px;
  }

  .assistant-head h2 {
    font-size: 24px;
  }

  .assistant-form {
    grid-template-columns: 1fr;
  }

  .assistant-form .primary-action {
    width: 100%;
  }

  .cookie-consent {
    inset: auto 10px 10px;
  }

  .cookie-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .secondary-action,
  .cookie-actions .primary-action {
    flex: 1 1 100%;
    width: 100%;
  }

  .cookie-preferences {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .topbar {
    gap: 10px;
  }

  .brand span {
    max-width: 145px;
  }

  .app-link {
    padding: 0 10px;
  }

  .language-select {
    padding-left: 10px;
    padding-right: 34px;
  }

  [dir="rtl"] .language-select {
    padding-right: 10px;
    padding-left: 34px;
  }

  .app-link {
    width: 42px;
  }

  .app-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  h1 {
    font-size: 38px;
  }

  .checkout,
  .result-panel {
    padding: 20px;
  }

  .checkout-progress button strong {
    max-width: 54px;
    font-size: 10px;
  }

  .checkout-progress button > span {
    width: 26px;
    height: 26px;
  }
}

.legal-page {
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.13), transparent 520px),
    var(--bg);
}

.legal-main {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.legal-hero {
  max-width: 900px;
  padding: 92px 0 64px;
}

.legal-hero h1 {
  margin: 20px 0 22px;
  font-size: clamp(54px, 8vw, 92px);
}

.legal-hero > p {
  max-width: 780px;
  color: var(--soft);
  font-size: 22px;
  line-height: 1.55;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.legal-back:hover {
  color: var(--text);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.legal-meta span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 14px;
}

.legal-meta strong {
  color: var(--text);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 820px);
  justify-content: space-between;
  gap: 72px;
  align-items: start;
  padding: 12px 0 96px;
}

.legal-nav {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 2px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%),
    rgba(18, 18, 22, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.legal-nav strong {
  margin: 0 8px 10px;
  font-size: 15px;
}

.legal-nav a {
  padding: 7px 8px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.legal-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.legal-content {
  min-width: 0;
}

.legal-callout {
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid rgba(185, 163, 255, 0.34);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.16), transparent 64%),
    var(--panel);
}

.legal-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-callout p {
  margin: 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.65;
}

.legal-section {
  scroll-margin-top: 108px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 22px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line-soft);
}

.legal-section > span {
  padding-top: 5px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.legal-section h2 {
  margin: 0 0 15px;
  font-size: 29px;
  line-height: 1.2;
}

.legal-section p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-contact {
  border-bottom: 0;
}

.legal-contact .secondary-action {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .legal-topbar .nav {
    display: none;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .legal-main {
    width: min(calc(100% - 24px), var(--max));
  }

  .legal-hero {
    padding: 56px 0 42px;
  }

  .legal-hero h1 {
    font-size: 48px;
  }

  .legal-hero > p {
    font-size: 18px;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 28px 0;
  }

  .legal-section h2 {
    font-size: 25px;
  }

  .legal-section p {
    font-size: 16px;
  }
}

@media (max-width: 980px) {
  .process-slide {
    flex-basis: min(620px, calc(100vw - 36px));
  }

  .process-visual {
    min-height: 300px;
  }
}

@media (max-width: 680px) {
  .process-carousel-band .band-head {
    align-items: start;
  }

  .process-carousel-trackline {
    margin-top: 6px;
  }

  .process-carousel-track {
    gap: 18px;
  }

  .process-slide {
    flex-basis: calc(100vw - 28px);
    gap: 22px;
  }

  .process-slide-copy {
    min-height: auto;
    gap: 14px;
  }

  .process-slide-copy small {
    font-size: 38px;
  }

  .process-slide-copy h3 {
    font-size: 26px;
  }

  .process-slide-copy p {
    font-size: 17px;
  }

  .process-visual {
    min-height: 260px;
  }

  .visual-shell {
    width: calc(100% - 42px);
    border-radius: 22px;
  }

  .visual-reference b {
    font-size: 46px;
  }

  .visual-review {
    grid-template-columns: 1fr;
  }

  .visual-reward-orbit {
    justify-self: center;
    width: 138px;
  }

  .visual-objectives {
    grid-template-columns: 1fr;
  }

  .visual-chart-bars i {
    width: 18px;
  }

  .process-carousel-controls {
    justify-content: space-between;
  }
}

/* Appearance picker: the dark palette above remains the default and the light
   palette is applied explicitly by theme.js. */
.theme-picker {
  position: relative;
  flex: 0 0 auto;
}

.theme-picker > summary {
  list-style: none;
}

.theme-picker > summary::-webkit-details-marker {
  display: none;
}

.theme-picker__trigger {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 50%),
    rgba(255, 255, 255, 0.045);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.theme-picker__trigger:hover,
.theme-picker[open] .theme-picker__trigger {
  border-color: rgba(231, 220, 255, 0.38);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.17), transparent 48%),
    rgba(255, 255, 255, 0.075);
  transform: translateY(-1px);
}

.theme-picker__trigger:focus-visible,
.theme-picker__menu button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 68%, transparent);
  outline-offset: 3px;
}

.theme-picker__icon,
.theme-picker__option-icon {
  display: inline-grid;
  place-items: center;
}

.theme-picker svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-picker__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 90;
  display: grid;
  gap: 3px;
  min-width: 196px;
  padding: 8px;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(124, 58, 237, 0.12), transparent 72%),
    rgba(12, 12, 16, 0.96);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  backdrop-filter: blur(26px) saturate(160%);
  box-shadow: var(--liquid-shadow);
}

.theme-picker__menu button {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 18px;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  border: 0;
  border-radius: 10px;
  color: var(--muted);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.theme-picker__menu button:hover,
.theme-picker__menu button[aria-checked="true"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
}

.theme-picker__menu button[aria-checked="true"] {
  font-weight: 700;
}

.theme-picker__check {
  color: var(--accent);
  opacity: 0;
}

.theme-picker__menu button[aria-checked="true"] .theme-picker__check {
  opacity: 1;
}

[dir="rtl"] .theme-picker__menu {
  right: auto;
  left: 0;
}

[dir="rtl"] .theme-picker__menu button {
  text-align: right;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f6fa;
  --panel: #ffffff;
  --panel-2: #f3f0fa;
  --panel-3: #edf0f6;
  --line: rgba(38, 31, 51, 0.16);
  --line-soft: rgba(38, 31, 51, 0.09);
  --text: #18141f;
  --muted: #625c6c;
  --soft: #3d3747;
  --accent: #6040b9;
  --accent-2: #4c318f;
  --violet: #6d43d3;
  --positive: #3b7764;
  --warning: #8a6100;
  --danger: #bd354e;
  --glass: rgba(255, 255, 255, 0.76);
  --glass-strong: rgba(255, 255, 255, 0.92);
  --glass-soft: rgba(83, 61, 131, 0.06);
  --glass-border: rgba(46, 36, 61, 0.20);
  --glass-border-soft: rgba(46, 36, 61, 0.12);
  --human-edge: rgba(255, 255, 255, 0.86);
  --liquid-shadow:
    0 26px 70px rgba(48, 38, 66, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  --surface-shadow:
    0 24px 62px rgba(48, 38, 66, 0.12),
    0 8px 22px rgba(48, 38, 66, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --surface-shadow-active:
    0 24px 64px rgba(48, 38, 66, 0.15),
    0 10px 26px rgba(96, 64, 185, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  --tile-shadow:
    0 16px 38px rgba(48, 38, 66, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(48, 38, 66, 0.06);
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 50% -160px, rgba(109, 67, 211, 0.19), transparent 430px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), transparent 640px),
    var(--bg);
}

html[data-theme="light"] body::before {
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 18px 24px, rgba(63, 47, 87, 0.34) 0 0.7px, transparent 1.2px),
    radial-gradient(circle at 92px 70px, rgba(96, 64, 185, 0.32) 0 0.7px, transparent 1.1px);
  mix-blend-mode: normal;
}

html[data-theme="light"] .legal-page {
  background:
    linear-gradient(180deg, rgba(109, 67, 211, 0.13), transparent 520px),
    var(--bg);
}

html[data-theme="light"] .topbar {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), transparent 48%),
    linear-gradient(180deg, rgba(109, 67, 211, 0.08), transparent 76%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(48, 38, 66, 0.11);
}

html[data-theme="light"] .brand-mark {
  border: 1px solid rgba(82, 62, 111, 0.28);
  border-radius: 10px;
  background: linear-gradient(145deg, #393047, #1f1a28);
  box-shadow:
    0 7px 18px rgba(41, 31, 56, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

html[data-theme="light"] .brand-mark img {
  padding: 2px;
}

html[data-theme="light"] :is(.app-link, .secondary-action, .language-picker, .theme-picker__trigger) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), transparent 56%),
    rgba(78, 58, 104, 0.045);
}

html[data-theme="light"] :is(.app-link, .secondary-action, .language-picker, .theme-picker__trigger):hover,
html[data-theme="light"] .theme-picker[open] .theme-picker__trigger {
  border-color: rgba(96, 64, 185, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), transparent 52%),
    rgba(96, 64, 185, 0.10);
}

html[data-theme="light"] :is(.nav-menu, .theme-picker__menu) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), transparent 48%),
    linear-gradient(180deg, rgba(109, 67, 211, 0.09), transparent 72%),
    rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 58px rgba(48, 38, 66, 0.16);
}

html[data-theme="light"] :is(.nav-menu a, .theme-picker__menu button):hover,
html[data-theme="light"] .theme-picker__menu button[aria-checked="true"] {
  background: rgba(96, 64, 185, 0.09);
}

html[data-theme="light"] :is(
  .market-panel,
  .checkout,
  .result-panel,
  .market-table-wrap,
  .product-card,
  .app-preview,
  .operations-visual,
  .hero-proof,
  .faq-list details,
  .assistant-card,
  .cookie-panel,
  .seo-summary,
  .seo-cta,
  .article-card,
  .legal-nav
) {
  border-color: var(--glass-border-soft);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), transparent 46%),
    linear-gradient(180deg, rgba(109, 67, 211, 0.075), transparent 70%),
    var(--glass);
  box-shadow: var(--liquid-shadow);
}

html[data-theme="light"] :is(
  .hero-proof div,
  .ticker-card,
  .selected-product,
  .payment-options label,
  .checkline,
  .checkout-section,
  .checkout-disclosure,
  .instructions div,
  .experience-list div,
  .reward-list div,
  .rule-list div,
  .detail-grid div,
  .operations-visual div,
  .app-account-select,
  .app-preview-metrics div,
  .app-preview-grid div,
  .app-preview-actions span,
  .seo-card,
  .article-facts div,
  .drawdown-examples div
) {
  border-color: var(--glass-border-soft);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), transparent 54%),
    rgba(245, 243, 249, 0.82);
}

html[data-theme="light"] :is(.ticker-card:hover, .ticker-card.active) {
  background: #e8ecf4;
}

html[data-theme="light"] :is(.product-card:hover, .product-card.active) {
  border-color: rgba(96, 64, 185, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), transparent 54%),
    rgba(109, 67, 211, 0.11);
  box-shadow: var(--surface-shadow-active);
}

html[data-theme="light"] .payment-options label:hover,
html[data-theme="light"] .payment-options label:has(input:checked) {
  border-color: rgba(96, 64, 185, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), transparent 52%),
    rgba(109, 67, 211, 0.13);
  box-shadow: var(--surface-shadow-active);
  color: var(--text);
}

html[data-theme="light"] .metric-strip {
  background: rgba(238, 240, 246, 0.72);
}

html[data-theme="light"] .checkout-progress button > span {
  background: rgba(239, 237, 245, 0.92);
}

html[data-theme="light"] .checkout-progress :is(button.active, button.complete) > span {
  border-color: rgba(96, 64, 185, 0.48);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), transparent 48%),
    rgba(109, 67, 211, 0.17);
}

html[data-theme="light"] input,
html[data-theme="light"] select:not(.language-select) {
  border-color: var(--glass-border-soft);
  background-color: rgba(249, 249, 252, 0.94);
  color: var(--text);
}

html[data-theme="light"] select:not(.language-select) {
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 7.5 10 12l4.5-4.5' fill='none' stroke='%235c5566' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 24px center / 16px 16px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), transparent 56%),
    rgba(243, 241, 247, 0.94);
}

html[data-theme="light"] select option {
  background: var(--panel);
  color: var(--text);
}

html[data-theme="light"] :is(.primary-link, .primary-action, .payment-link) {
  border-color: rgba(84, 53, 160, 0.54);
  background: linear-gradient(135deg, #7353ca, #513098);
  color: #ffffff;
  box-shadow:
    0 18px 40px rgba(78, 45, 151, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
}

html[data-theme="light"] :is(.primary-link, .primary-action, .payment-link):hover {
  background: linear-gradient(135deg, #6544be, #452783);
}

html[data-theme="light"] :is(.process-slide-copy small) {
  color: #332b3e;
}

html[data-theme="light"] .process-carousel-trackline {
  background-image: linear-gradient(90deg, rgba(45, 36, 58, 0.46) 45%, transparent 0);
}

html[data-theme="light"] .process-visual {
  border-color: var(--glass-border-soft);
  background:
    radial-gradient(circle at 50% 42%, rgba(109, 67, 211, 0.16), transparent 31%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(237, 239, 246, 0.8)),
    #eef0f5;
  box-shadow: 0 30px 70px rgba(48, 38, 66, 0.14);
}

html[data-theme="light"] .process-visual::before {
  background:
    linear-gradient(90deg, rgba(221, 224, 233, 0.72), transparent 21%, transparent 79%, rgba(221, 224, 233, 0.72)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent 42%);
}

html[data-theme="light"] .process-visual::after {
  background-image:
    linear-gradient(rgba(55, 44, 72, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 44, 72, 0.08) 1px, transparent 1px);
}

html[data-theme="light"] .visual-shell {
  border-color: var(--glass-border-soft);
  background: rgba(255, 255, 255, 0.93);
  box-shadow:
    0 26px 62px rgba(48, 38, 66, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

html[data-theme="light"] :is(
  .visual-payment-grid span,
  .visual-review-path span,
  .visual-objectives span,
  .visual-reward-row,
  .process-carousel-controls > button,
  .process-dots
) {
  border-color: var(--glass-border-soft);
  background: rgba(79, 58, 104, 0.07);
}

html[data-theme="light"] .visual-chart-bars {
  border-bottom-color: var(--glass-border);
}

html[data-theme="light"] .process-dots button {
  background: rgba(49, 40, 61, 0.30);
}

html[data-theme="light"] .process-dots button.active {
  background: var(--accent);
}

html[data-theme="light"] :is(.market-table-wrap, .seo-table) {
  background: rgba(255, 255, 255, 0.86);
}

html[data-theme="light"] :is(.market-table tbody tr:hover, .market-table tbody tr.active) {
  background: rgba(96, 64, 185, 0.08);
}

html[data-theme="light"] .article-card-featured {
  background:
    radial-gradient(circle at 84% 10%, rgba(109, 67, 211, 0.17), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), transparent 50%),
    rgba(240, 236, 249, 0.90);
}

html[data-theme="light"] :is(.assistant-launcher, .assistant-close) {
  border-color: var(--glass-border-soft);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), transparent 48%),
    rgba(242, 239, 248, 0.92);
  box-shadow: var(--liquid-shadow);
}

html[data-theme="light"] .assistant-message {
  background: rgba(66, 53, 84, 0.06);
}

html[data-theme="light"] .assistant-message.user {
  background: rgba(109, 67, 211, 0.14);
}

html[data-theme="light"] :is(.legal-meta span, .legal-nav a:hover) {
  background: rgba(75, 58, 98, 0.06);
}

html[data-theme="light"] .checkout-terms-notice {
  border-bottom-color: var(--line-soft);
}

@media (max-width: 680px) {
  .theme-picker__trigger {
    width: 40px;
    height: 40px;
  }

  .theme-picker__menu {
    position: fixed;
    top: 66px;
    right: 12px;
  }

  [dir="rtl"] .theme-picker__menu {
    right: auto;
    left: 12px;
  }
}

@media (max-width: 420px) {
  .brand > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
