:root {
  --bg: #08110f;
  --bg-deep: #040909;
  --panel: rgba(14, 23, 22, 0.82);
  --panel-strong: rgba(15, 24, 22, 0.94);
  --line: rgba(144, 234, 184, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #edf5f0;
  --muted: #9daea7;
  --green: #33d17a;
  --green-deep: #1c8f54;
  --red: #ff6269;
  --gold: #ffcc63;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #091110 0%, #050909 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at top left, rgba(43, 140, 84, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 98, 105, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(4, 10, 9, 0.6) 0%, rgba(3, 7, 7, 0.72) 100%);
  pointer-events: none;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(2, 8, 7, 0.72) 0%, rgba(3, 7, 7, 0.82) 100%),
    url("../images/bg.jpg") center center / cover no-repeat;
  opacity: 0.52;
  filter: saturate(0.92) contrast(1.05);
  pointer-events: none;
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(51, 209, 122, 0.08), transparent 18%, transparent 82%, rgba(255, 98, 105, 0.08)),
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 18%, transparent 82%, rgba(255,255,255,0.03));
}

.market-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
  opacity: 0.52;
}

.site-shell {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
}

.container {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header .container {
  width: min(1600px, calc(100% - 48px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 11, 10, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(144, 234, 184, 0.12);
}

.header-row {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  padding: 5px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(144, 234, 184, 0.08);
}

.brand-mark img {
  width: 108%;
  height: 108%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.45rem;
  line-height: 1;
}

.brand-copy small,
.market-pill,
.section-kicker,
.card-kicker,
.plan-badge,
.footer-title {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.brand-copy small {
  color: #b0c3ba;
  font-size: 0.72rem;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.top-nav a {
  text-decoration: none;
  color: #cfe0d8;
  font-size: 0.92rem;
  padding: 12px 14px;
  border-radius: 12px;
}

.top-nav a:hover {
  background: rgba(255, 255, 255, 0.04);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.market-pill {
  font-size: 0.68rem;
  color: #bfe7cb;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(51, 209, 122, 0.2);
  background: rgba(51, 209, 122, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-ghost,
.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.btn-primary {
  color: #07110c;
  background: linear-gradient(135deg, #86f6b1 0%, #38d47c 60%, #ffcf6f 100%);
}

.btn-current {
  color: #f3fbf6;
  border-color: rgba(89, 255, 171, 0.26);
  background: rgba(89, 255, 171, 0.09);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #eef6f1;
  margin: 5px 0;
}

.hero-section,
.about-section,
.plans-section,
.activity-section,
.capital-wall-section,
.affiliate-section {
  padding: 96px 0;
}

.activity-section {
  padding: 78px 0;
}

.hero-section {
  padding-top: 40px;
  padding-bottom: 72px;
}

.hero-grid,
.affiliate-grid,
.activity-layout,
.about-grid {
  display: grid;
  gap: 28px;
}

.login-section {
  padding: 72px 0 96px;
}

.login-section .section-head {
  margin-bottom: 34px;
}

.login-layout {
  display: grid;
  grid-template-columns: 0.96fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.login-layout-single {
  grid-template-columns: 1fr;
  justify-items: center;
}

.login-side {
  display: block;
}

.login-story {
  padding: 24px 24px 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 204, 99, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.2)),
    rgba(10, 17, 16, 0.9);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow);
}

.login-story-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.login-story-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(89, 255, 171, 0.12), rgba(255, 207, 111, 0.08)),
    rgba(11, 19, 18, 0.78);
  border: 1px solid rgba(255,255,255,0.07);
  color: #eef8f2;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.login-story h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.02;
}

.login-story > p:last-of-type {
  margin: 0 0 22px;
}

.login-points {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.login-point {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.login-point:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.login-point span {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #07110c;
  background: linear-gradient(135deg, #95f3bc, #ffcf72);
}

.login-point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.login-point p {
  margin: 0;
  color: var(--muted);
}

.login-panel {
  position: relative;
  width: min(100%, 760px);
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.18)),
    rgba(11, 18, 17, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.login-panel-wide {
  width: min(100%, 880px);
}

.login-panel-narrow {
  width: min(100%, 680px);
}

.login-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 18%, transparent 82%, rgba(255,255,255,0.02)),
    linear-gradient(90deg, rgba(255,255,255,0.02) 0 1px, transparent 1px) 0 0 / 48px 100%,
    linear-gradient(180deg, rgba(255,255,255,0.018) 0 1px, transparent 1px) 0 0 / 100% 40px;
  pointer-events: none;
  opacity: 0.6;
}

.login-panel-head,
.login-form,
.login-terminal {
  position: relative;
  z-index: 1;
}

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

.login-panel-head h2 {
  margin: 6px 0 0;
  font-size: 2rem;
}

.login-head-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(89, 255, 171, 0.08);
  border: 1px solid rgba(89, 255, 171, 0.16);
  color: #9ce7b8;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.login-form {
  display: grid;
  gap: 16px;
}

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

.login-field {
  display: grid;
  gap: 9px;
}

.login-field span {
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #a6bbb2;
}

.login-field input,
.login-field select,
.login-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  outline: none;
  color: #edf5f0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  font: inherit;
}

.login-field select {
  color-scheme: dark;
}

.login-field select option {
  color: #edf5f0;
  background: #101917;
}

.login-field textarea {
  min-height: 180px;
  padding: 16px;
  resize: vertical;
}

.login-field input::placeholder {
  color: #7f9189;
}

.login-field input:focus,
.login-field select:focus,
.login-field textarea:focus {
  border-color: rgba(89, 255, 171, 0.26);
  box-shadow: 0 0 0 4px rgba(89, 255, 171, 0.08);
}

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

.login-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d7e3dd;
  font-size: 0.92rem;
}

.login-check input {
  accent-color: #5effac;
}

.login-help {
  color: #97deb0;
  text-decoration: none;
  font-size: 0.92rem;
}

.login-submit {
  width: 100%;
  margin-top: 4px;
}

.login-terminal {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.login-terminal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.login-terminal-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.login-terminal-row span {
  color: #9eb0a8;
  font-size: 0.88rem;
}

.login-terminal-row strong {
  font-size: 0.94rem;
  color: #f1f9f4;
}

.support-panel {
  width: min(100%, 920px);
}

.support-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.support-lane {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}

.support-lane-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #98dfb1;
}

.support-lane strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.support-lane p {
  margin: 0;
  color: var(--muted);
}

.support-form {
  margin-top: 4px;
}

.support-feedback {
  margin: 4px 0 18px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-feedback strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.support-feedback p {
  margin: 0;
  color: var(--muted);
}

.support-feedback-success {
  background:
    linear-gradient(90deg, rgba(89, 255, 171, 0.1), rgba(255, 207, 111, 0.06)),
    rgba(10, 17, 16, 0.84);
}

.support-feedback-error {
  background:
    linear-gradient(90deg, rgba(255, 98, 105, 0.12), rgba(255, 207, 111, 0.05)),
    rgba(18, 12, 12, 0.84);
}

.support-error-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #ffd3cd;
}

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

.support-static-field[readonly],
.support-static-field:disabled {
  color: #edf5f0;
  opacity: 1;
  cursor: default;
}

.support-captcha-wrap {
  margin-top: 2px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: auto;
}

.support-captcha-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.support-captcha-table td {
  color: var(--muted);
  vertical-align: middle;
}

.support-captcha-table input[type="text"],
.support-captcha-table input[type="number"],
.support-captcha-table input[type="password"] {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  outline: none;
  color: #edf5f0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font: inherit;
}

.support-captcha-table input:focus {
  border-color: rgba(89, 255, 171, 0.26);
  box-shadow: 0 0 0 4px rgba(89, 255, 171, 0.08);
}

.signup-form {
  gap: 18px;
}

.signup-form-section {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.signup-form-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.signup-form-section-head .card-kicker {
  margin: 0;
}

.signup-form-section-head span {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #95dcb0;
}

.login-field-full {
  grid-column: 1 / -1;
}

.signup-upline-box {
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(89, 255, 171, 0.08), rgba(255, 207, 111, 0.05)),
    rgba(10, 17, 16, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.signup-upline-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.signup-upline-box p {
  margin: 0;
  color: var(--muted);
}

.signup-agree {
  margin-top: 12px;
}

.login-help-inline {
  color: #97deb0;
  text-decoration: none;
}

.login-help-inline:hover,
.login-help:hover {
  text-decoration: underline;
}

.info-section {
  padding: 78px 0 96px;
}

.info-section .section-head {
  margin-bottom: 34px;
}

.faq-shell,
.rules-shell {
  display: grid;
  gap: 18px;
}

.faq-group,
.rules-card {
  padding: 24px 24px 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 204, 99, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(0,0,0,0.16)),
    rgba(10, 17, 16, 0.9);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow);
}

.faq-group-head,
.rules-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.faq-group-head h3,
.rules-card-head h3 {
  margin: 0;
  font-size: 1.42rem;
}

.faq-chip,
.rules-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: #dce9e2;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
  background: rgba(255,255,255,0.026);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 18px;
  font-weight: 700;
  color: #eef6f1;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #93e1af;
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.75;
}

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

.rules-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.85;
}

.rules-card li + li {
  margin-top: 8px;
}

.auth-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.auth-status-card {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}

.auth-status-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #98dfb1;
}

.auth-status-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
  color: #f0f8f3;
}

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

.auth-highlight {
  margin: 0 0 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(89, 255, 171, 0.1), rgba(255, 207, 111, 0.08)),
    rgba(10, 17, 16, 0.82);
  border: 1px solid rgba(255,255,255,0.07);
  color: #dce9e2;
}

.auth-highlight strong {
  color: #f2fbf5;
}

.auth-code-input {
  text-align: center;
  letter-spacing: 0.34em;
  font-size: 1.28rem;
  font-weight: 800;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.auth-actions .btn {
  min-width: 190px;
}

.auth-actions .login-submit {
  width: auto;
  margin-top: 0;
}

.redirect-page .login-section {
  padding-top: 84px;
}

.redirect-panel {
  text-align: center;
}

.redirect-panel .login-panel-head {
  justify-content: center;
  margin-bottom: 18px;
}

.redirect-panel .login-panel-head div {
  text-align: center;
}

.redirect-panel .login-head-chip {
  position: absolute;
  top: 26px;
  right: 26px;
}

.redirect-loader {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 8px auto 20px;
}

.redirect-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.08);
  border-top-color: rgba(89, 255, 171, 0.92);
  border-right-color: rgba(255, 207, 111, 0.68);
  animation: redirect-spin 1.2s linear infinite;
}

.redirect-ring-delay {
  inset: 12px;
  border-top-color: rgba(255, 207, 111, 0.92);
  border-right-color: rgba(89, 255, 171, 0.56);
  animation-duration: 1.65s;
  animation-direction: reverse;
}

.redirect-highlight {
  margin-bottom: 14px;
  text-align: center;
}

.redirect-progress {
  width: 100%;
  height: 8px;
  margin: 0 0 18px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.05);
}

.redirect-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: linear-gradient(90deg, #85f4b2 0%, #36d27c 58%, #ffcf72 100%);
  animation: redirect-fill 5s linear forwards;
}

.redirect-actions {
  justify-content: center;
}

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

@keyframes redirect-fill {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

.hero-grid {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  min-height: calc(100vh - 88px);
}

.section-kicker,
.card-kicker {
  color: #8fe5b2;
  font-size: 0.72rem;
  margin: 0 0 14px;
}

.hero-copy h1,
.section-head h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
  max-width: 11ch;
  position: relative;
  z-index: 1;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  max-width: none;
}

.section-copy,
.hero-copy > .section-copy,
.plan-copy,
.activity-stat-card span,
.affiliate-step p,
.footer-copy,
.about-stat span {
  color: var(--muted);
  line-height: 1.75;
}

.hero-title-shell {
  position: relative;
  max-width: 760px;
  padding: 26px 30px 24px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 204, 99, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.14)),
    rgba(5, 13, 12, 0.34);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}

.hero-title-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 18%, transparent 82%, rgba(255,255,255,0.02)),
    linear-gradient(90deg, rgba(255,255,255,0.018) 0 1px, transparent 1px) 0 0 / 46px 100%,
    linear-gradient(180deg, rgba(255,255,255,0.018) 0 1px, transparent 1px) 0 0 / 100% 38px;
  opacity: 0.46;
  pointer-events: none;
}

.hero-title-shell::after {
  content: "";
  position: absolute;
  inset: auto auto 18px -24px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 209, 122, 0.16), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-title-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-kicker {
  margin: 0;
  padding: 0 0 0 14px;
  border-left: 2px solid rgba(143, 229, 178, 0.54);
}

.hero-title-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: #d9e7e0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  background: linear-gradient(135deg, #edf7f1 0%, #9bf2bd 54%, #ffcf72 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero-copy .section-copy {
  position: relative;
  z-index: 1;
  max-width: 56ch;
  margin-top: 18px;
}

.hero-metrics,
.hero-actions,
.chip-row,
.footer-links,
.affiliate-cards {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-metrics {
  margin: 32px 0;
}

.metric-card,
.about-stat,
.activity-stat-card,
.affiliate-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-card {
  min-width: 170px;
  padding: 18px 18px 16px;
}

.metric-label {
  display: block;
  color: #9cc1af;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(144, 234, 184, 0.34) 0%, rgba(144, 234, 184, 0.18) 46%, rgba(144, 234, 184, 0) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-visual img {
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.about-feature img,
.affiliate-side > img {
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.floating-ticket {
  position: absolute;
  padding: 16px 18px;
  border-radius: 18px;
  min-width: 170px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
}

.floating-ticket span {
  display: block;
  color: #bdd1c7;
  font-size: 0.78rem;
  margin-bottom: 6px;
}

.floating-ticket strong {
  font-size: 1.3rem;
}

.floating-green {
  left: -18px;
  bottom: 72px;
  background: rgba(17, 48, 31, 0.82);
}

.floating-red {
  right: -18px;
  top: 54px;
  background: rgba(57, 21, 24, 0.82);
}

.section-head {
  margin-bottom: 36px;
}

.section-head.center {
  text-align: center;
  display: grid;
  justify-items: center;
}

.section-copy.narrow {
  max-width: 60ch;
}

.about-grid {
  grid-template-columns: 0.9fr 1.15fr 0.9fr;
  align-items: center;
}

.about-column {
  display: grid;
  gap: 22px;
  grid-template-rows: repeat(3, minmax(170px, 1fr));
  height: 100%;
}

.about-centerpiece {
  display: flex;
  justify-content: center;
}

.about-center-frame {
  position: relative;
  width: min(100%, 464px);
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(13, 23, 20, 0.82), rgba(8, 15, 14, 0.92));
  box-shadow: var(--shadow);
}

.about-center-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(144, 234, 184, 0.3) 0%, rgba(144, 234, 184, 0.14) 46%, rgba(144, 234, 184, 0) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.about-center-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  padding: 1px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.07) 42%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.about-center-frame img {
  width: 100%;
  max-height: 608px;
  object-fit: contain;
  margin: 0 auto;
  opacity: 0.7;
}

.about-card-copy h3,
.activity-board h3,
.affiliate-step h3 {
  margin: 0 0 12px;
  font-size: 1.8rem;
}

.about-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 170px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-note:last-child {
  border-bottom: 0;
}

.about-note strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.about-note span {
  color: var(--muted);
  line-height: 1.75;
  max-width: 34ch;
}

.about-column-right .about-note {
  align-items: flex-start;
}

.about-note-feature .chip-row {
  display: none;
}

.about-column-right .about-note span {
  max-width: 30ch;
}

.about-note-feature .chip-row {
  margin-top: 16px;
}

.about-note .chip-row span {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.1);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plan-card {
  --plan-accent: 89, 255, 171;
  --plan-edge: rgba(89, 255, 171, 0.26);
  position: relative;
}

.plan-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 14px;
  height: 100%;
  padding: 20px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.plan-shell > * {
  position: relative;
  z-index: 1;
}

.plan-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(var(--plan-accent), 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 26%, transparent 72%, rgba(255,255,255,0.03)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 36px);
  opacity: 0.92;
  pointer-events: none;
}

.plan-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 18%, rgba(var(--plan-accent), 0.22) 36%, transparent 54%) top right / 54% 46% no-repeat,
    linear-gradient(180deg, rgba(var(--plan-accent), 0.14), transparent 22%) top / 100% 100% no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.plan-green {
  --plan-accent: 89, 255, 171;
  --plan-edge: rgba(89, 255, 171, 0.28);
}

.plan-green .plan-shell {
  background:
    radial-gradient(circle at top left, rgba(89, 255, 171, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(15, 32, 25, 0.98), rgba(7, 16, 14, 0.99));
}

.plan-red {
  --plan-accent: 255, 118, 124;
  --plan-edge: rgba(255, 118, 124, 0.28);
}

.plan-red .plan-shell {
  background:
    radial-gradient(circle at top left, rgba(255, 118, 124, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(43, 18, 24, 0.98), rgba(16, 9, 13, 0.99));
}

.plan-gold {
  --plan-accent: 255, 214, 102;
  --plan-edge: rgba(255, 214, 102, 0.28);
}

.plan-gold .plan-shell {
  background:
    radial-gradient(circle at top left, rgba(255, 214, 102, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(44, 34, 14, 0.98), rgba(17, 13, 8, 0.99));
}

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

.plan-id {
  margin: 0 0 8px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}

.plan-card h3 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 0.94;
  letter-spacing: -0.07em;
  color: #f7fbf9;
}

.plan-window {
  min-width: 108px;
  padding: 10px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(var(--plan-accent), 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.plan-window span,
.plan-target span,
.plan-stat span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.54);
}

.plan-window strong {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
  color: #f0f7f4;
}

.plan-terminal {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 15px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.28)),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.plan-terminal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(var(--plan-accent), 0.34), rgba(var(--plan-accent), 0) 78%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.plan-tape {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.plan-badge,
.plan-pair {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan-badge {
  color: #eff8f3;
  background: rgba(var(--plan-accent), 0.13);
  border: 1px solid rgba(var(--plan-accent), 0.24);
}

.plan-pair {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.plan-target-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.plan-target strong {
  display: block;
  margin-top: 8px;
  font-size: 2.15rem;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #ffffff;
}

.plan-signal {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  width: 118px;
  min-width: 118px;
  height: 76px;
  padding: 8px 7px 7px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.12));
  border: 1px solid rgba(255,255,255,0.06);
}

.plan-signal::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 12px;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.plan-signal::after {
  content: "";
  position: absolute;
  inset: 12px 9px 14px;
  background: linear-gradient(128deg, transparent 4%, rgba(var(--plan-accent), 0.32) 26%, transparent 28%, transparent 46%, rgba(var(--plan-accent), 0.48) 60%, transparent 62%, transparent 76%, rgba(var(--plan-accent), 0.72) 90%, transparent 92%);
  opacity: 0.95;
  pointer-events: none;
}

.plan-signal span {
  position: relative;
  z-index: 1;
  width: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(var(--plan-accent), 0.95), rgba(var(--plan-accent), 0.18));
  box-shadow: 0 0 18px rgba(var(--plan-accent), 0.2);
}

.plan-signal span:nth-child(1) {
  height: 20px;
}

.plan-signal span:nth-child(2) {
  height: 32px;
}

.plan-signal span:nth-child(3) {
  height: 25px;
}

.plan-signal span:nth-child(4) {
  height: 45px;
}

.plan-signal span:nth-child(5) {
  height: 56px;
}

.plan-copy {
  margin: 0;
  max-width: 34ch;
  font-size: 0.98rem;
  line-height: 1.55;
}

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

.plan-stat {
  padding: 11px 13px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.1));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.plan-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 1.08rem;
  color: #f4faf7;
}

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

.plan-list li {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.4;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}

.plan-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: rgba(var(--plan-accent), 0.95);
  box-shadow: 0 0 18px rgba(var(--plan-accent), 0.45);
}

.activity-layout {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.affiliate-grid {
  grid-template-columns: 0.92fr 1.08fr 0.92fr;
  align-items: center;
}

.activity-board {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.activity-board > * {
  position: relative;
  z-index: 1;
}

.activity-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), transparent 24%, transparent 72%, rgba(255,255,255,0.03)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 38px);
  pointer-events: none;
}

.activity-board::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.activity-command {
  position: relative;
  padding: 0;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.activity-command::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), transparent 20%, transparent 82%, rgba(255,255,255,0.03)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 38px),
    radial-gradient(circle at top right, rgba(89, 255, 171, 0.12), transparent 30%);
  pointer-events: none;
}

.activity-command > * {
  position: relative;
  z-index: 1;
}

.activity-board {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 214, 102, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(10, 18, 18, 0.98), rgba(7, 13, 13, 0.99));
}

.activity-board::after {
  background:
    linear-gradient(128deg, transparent 18%, rgba(255, 98, 105, 0.09) 42%, transparent 60%) top right / 52% 44% no-repeat,
    linear-gradient(180deg, rgba(89, 255, 171, 0.08), transparent 20%) top / 100% 100% no-repeat;
}

.activity-command-head,
.board-head,
.transaction-column-head,
.affiliate-step,
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.activity-command-head {
  gap: 16px;
}

.activity-command h3,
.activity-board h3 {
  margin: 0;
  font-size: 1.72rem;
}

.board-live {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(51, 209, 122, 0.08);
  border: 1px solid rgba(51, 209, 122, 0.16);
  color: #97e8b6;
  font-size: 0.78rem;
}

.activity-market-board {
  position: relative;
  margin-top: 18px;
  padding: 14px 0 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.activity-market-head,
.activity-flow-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.activity-market-head {
  padding: 0 2px 10px;
}

.activity-market-head span,
.activity-flow-line span,
.activity-market-metrics span,
.board-chip span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.activity-market-head strong,
.activity-flow-line strong,
.activity-market-metrics strong,
.board-chip strong {
  display: block;
  margin-top: 8px;
  color: #f5fbf7;
}

.activity-market-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}

.activity-market-tag[data-state="live"] {
  color: #9af0bb;
  background: rgba(89, 255, 171, 0.08);
  border-color: rgba(89, 255, 171, 0.18);
}

.activity-market-tag[data-state="delay"] {
  color: #ffd86c;
  background: rgba(255, 214, 102, 0.08);
  border-color: rgba(255, 214, 102, 0.16);
}

.activity-market-tag[data-state="error"] {
  color: #ff9fa4;
  background: rgba(255, 98, 105, 0.08);
  border-color: rgba(255, 98, 105, 0.16);
}

.activity-gold-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
  padding: 12px 0 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.activity-gold-price {
  padding: 2px 0;
}

.activity-gold-price span,
.activity-quick-item span,
.activity-trend-item span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.activity-gold-price strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(2.25rem, 4vw, 3.45rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: #fff1bf;
  text-shadow: 0 0 26px rgba(255, 215, 108, 0.18);
}

.activity-gold-price small,
.activity-quick-item small,
.activity-trend-item small {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,0.56);
  font-size: 0.84rem;
  line-height: 1.45;
}

.activity-gold-quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid rgba(255,255,255,0.08);
}

.activity-quick-item {
  min-height: 100%;
  padding: 6px 0 6px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.activity-quick-item:last-child {
  border-right: 0;
}

.activity-quick-item strong,
.activity-trend-item strong {
  display: block;
  margin-top: 8px;
  font-size: 1.15rem;
  color: #f5fbf7;
}

.activity-trend-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.activity-trend-item {
  padding: 14px 14px 12px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.activity-trend-item:first-child {
  padding-left: 0;
}

.activity-trend-item:last-child {
  border-right: 0;
}

.activity-trend-item[data-trend-state="bullish"] strong,
.activity-trend-item[data-trend-state="positive"] strong,
.activity-quick-item[data-trend-state="bullish"] strong,
.activity-quick-item[data-trend-state="positive"] strong {
  color: #66f1a1;
}

.activity-trend-item[data-trend-state="bearish"] strong,
.activity-quick-item[data-trend-state="bearish"] strong {
  color: #ff9398;
}

.activity-trend-item[data-trend-state="gold"] strong,
.activity-quick-item[data-trend-state="gold"] strong {
  color: #ffd86c;
}

.activity-flow-line {
  gap: 18px;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.activity-flow-line-gold strong {
  color: #f9fbf9;
}

.activity-flow-track {
  position: relative;
  flex: 1 1 auto;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}

.activity-flow-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(89, 255, 171, 0.88), rgba(255, 214, 102, 0.48));
  transition: width 0.5s ease, background 0.35s ease;
}

.activity-market-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.activity-market-metrics div {
  padding: 11px 12px 0 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.activity-market-metrics div:last-child {
  border-right: 0;
}

.activity-market-metrics strong[data-gold-four-hour-change].negative,
.activity-quick-item strong[data-gold-daily-change].negative {
  color: #ff9398;
}

.activity-market-metrics strong[data-gold-four-hour-change].positive,
.activity-quick-item strong[data-gold-daily-change].positive {
  color: #66f1a1;
}

.activity-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 0;
}

.activity-stat-card {
  position: relative;
  padding: 15px 14px 12px;
  background: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.activity-stat-card:last-child {
  border-right: 0;
}

.activity-stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.activity-stat-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.66);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.activity-stat-tag.positive {
  background: rgba(89, 255, 171, 0.12);
  border-color: rgba(89, 255, 171, 0.18);
  color: #9af0bb;
}

.activity-stat-tag.negative {
  background: rgba(255, 98, 105, 0.12);
  border-color: rgba(255, 98, 105, 0.18);
  color: #ff9fa4;
}

.activity-stat-card strong {
  display: block;
  font-size: 1.82rem;
  margin-bottom: 6px;
}
.board-chip {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.board-chip span,
.transaction-time {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.board-chip strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  color: #fff8e8;
}

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

.board-chip-positive {
  background: rgba(89, 255, 171, 0.08);
  border-color: rgba(89, 255, 171, 0.14);
}

.board-chip-negative {
  background: rgba(255, 98, 105, 0.08);
  border-color: rgba(255, 98, 105, 0.14);
}

.capital-flow-board {
  padding: 18px 20px 20px;
}

.capital-flow-head {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.capital-flow-live {
  background: rgba(255, 214, 102, 0.08);
  border-color: rgba(255, 214, 102, 0.16);
  color: #ffe08b;
}

.capital-flow-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
  border: 0;
  overflow: hidden;
  background: none;
}

.capital-flow-metric {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.14)),
    rgba(7, 13, 13, 0.82);
}

.capital-flow-metric span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}

.capital-flow-metric strong {
  display: block;
  margin-top: 6px;
  font-size: 1.18rem;
  color: #f7fbf8;
}

.capital-flow-metric.positive strong {
  color: #83f3b3;
}

.capital-flow-metric.negative strong {
  color: #ffb3a4;
}

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

.capital-flow-grid {
  align-items: stretch;
}

.transaction-column {
  position: relative;
  padding: 14px 14px 13px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0,0,0,0.1)),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}

.transaction-column::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: rgba(255,255,255,0.1);
}

.transaction-column-inflow::before {
  background: linear-gradient(180deg, rgba(89, 255, 171, 0.95), rgba(89, 255, 171, 0.05));
}

.transaction-column-outflow::before {
  background: linear-gradient(180deg, rgba(255, 144, 113, 0.95), rgba(255, 144, 113, 0.05));
}

.transaction-column-head {
  margin-bottom: 10px;
}

.transaction-column-head span {
  color: var(--muted);
  font-size: 0.82rem;
}

.transaction-column-head > div span {
  display: block;
  margin-top: 4px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}

.transaction-column-head strong {
  display: block;
  font-size: 1.12rem;
}

.transaction-desk-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.transaction-desk-tag.positive {
  color: #93e8b5;
  border-color: rgba(89, 255, 171, 0.18);
  background: rgba(89, 255, 171, 0.08);
}

.transaction-desk-tag.negative {
  color: #ffb0a6;
  border-color: rgba(255, 98, 105, 0.18);
  background: rgba(255, 98, 105, 0.08);
}

.transaction-list {
  display: grid;
  gap: 7px;
}

.transaction-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  padding: 10px 11px;
  border-radius: 15px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.028), rgba(0,0,0,0.16)),
    rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255,255,255,0.06);
}

.transaction-row.in {
  box-shadow: inset 0 0 0 1px rgba(51, 209, 122, 0.08);
}

.transaction-row.out {
  box-shadow: inset 0 0 0 1px rgba(255, 98, 105, 0.08);
}

.transaction-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
  line-height: 1;
  color: rgba(255,255,255,0.62);
}

.transaction-row.in .transaction-arrow {
  color: #90e7b1;
  border-color: rgba(89, 255, 171, 0.14);
  background: rgba(89, 255, 171, 0.08);
}

.transaction-row.out .transaction-arrow {
  color: #ffb5ab;
  border-color: rgba(255, 98, 105, 0.14);
  background: rgba(255, 98, 105, 0.08);
}

.transaction-meta {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.transaction-user {
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.transaction-time {
  letter-spacing: 0.12em;
}

.transaction-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: 0;
  justify-self: auto;
}

.transaction-method img {
  display: block;
  width: auto;
  max-width: 72px;
  height: 32px;
  object-fit: contain;
}

.transaction-row strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  justify-self: end;
}

.affiliate-column {
  display: grid;
  gap: 14px;
  align-content: center;
}

.affiliate-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 116px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.affiliate-note:last-child {
  border-bottom: 0;
}

.affiliate-note strong {
  display: block;
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.affiliate-note span {
  color: var(--muted);
  line-height: 1.62;
  max-width: 32ch;
}

.affiliate-column-right .affiliate-note {
  align-items: flex-start;
}

.affiliate-centerpiece {
  display: flex;
  justify-content: center;
}

.affiliate-visual-shell {
  position: relative;
  width: min(100%, 474px);
  padding: 14px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 204, 99, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(13, 23, 20, 0.9), rgba(8, 14, 13, 0.96));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.affiliate-visual-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), transparent 22%, transparent 78%, rgba(255,255,255,0.025)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 38px);
  pointer-events: none;
}

.affiliate-visual-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 328px;
  border-radius: 24px;
  background:
    radial-gradient(circle at center, rgba(21, 79, 59, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.12));
  overflow: hidden;
}

.affiliate-visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(144, 234, 184, 0.22) 0%, rgba(144, 234, 184, 0.08) 44%, rgba(144, 234, 184, 0) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.affiliate-visual-frame img {
  width: min(100%, 520px);
  max-height: 300px;
  object-fit: contain;
  margin: 0 auto;
}

.affiliate-center-badge {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  min-width: 214px;
  padding: 11px 15px;
  border-radius: 18px;
  background: rgba(10, 18, 17, 0.82);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  text-align: center;
}

.affiliate-center-badge span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #98ddba;
}

.affiliate-center-badge strong {
  display: block;
  margin-top: 6px;
  font-size: 0.98rem;
}

.affiliate-tier-board {
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
}

.affiliate-tier-head {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.affiliate-tier-head strong {
  display: block;
  font-size: 1.12rem;
}

.affiliate-tier-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 12px;
}

.affiliate-tier-card {
  position: relative;
  padding: 14px 14px 13px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(0,0,0,0.16)),
    rgba(10, 17, 16, 0.88);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.affiliate-tier-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: rgba(255,255,255,0.1);
}

.affiliate-tier-card span {
  display: block;
  color: #9fd8b8;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.affiliate-tier-card strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.affiliate-tier-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.affiliate-tier-green {
  background:
    radial-gradient(circle at top right, rgba(89, 255, 171, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(17, 33, 26, 0.96), rgba(9, 16, 14, 0.98));
}

.affiliate-tier-green::before {
  background: linear-gradient(180deg, rgba(89, 255, 171, 0.95), rgba(89, 255, 171, 0.08));
}

.affiliate-tier-green strong {
  color: #82f1b1;
}

.affiliate-tier-gold {
  background:
    radial-gradient(circle at top right, rgba(255, 204, 99, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(37, 29, 15, 0.96), rgba(15, 12, 7, 0.98));
}

.affiliate-tier-gold::before {
  background: linear-gradient(180deg, rgba(255, 204, 99, 0.95), rgba(255, 204, 99, 0.08));
}

.affiliate-tier-gold span {
  color: #ffe08a;
}

.affiliate-tier-gold strong {
  color: #fff1bf;
}

.affiliate-tier-red {
  background:
    radial-gradient(circle at top right, rgba(255, 98, 105, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(39, 19, 22, 0.96), rgba(15, 9, 10, 0.98));
}

.affiliate-tier-red::before {
  background: linear-gradient(180deg, rgba(255, 98, 105, 0.95), rgba(255, 98, 105, 0.08));
}

.affiliate-tier-red span {
  color: #ffb0b4;
}

.affiliate-tier-red strong {
  color: #ffd0c4;
}

.site-footer {
  padding: 34px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(6, 12, 11, 0.46), rgba(3, 7, 7, 0.9));
  backdrop-filter: blur(12px);
}

.footer-shell {
  position: relative;
  padding: 0;
}

.footer-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 204, 99, 0.08), transparent 24%),
    linear-gradient(90deg, rgba(255,255,255,0.018) 0 1px, transparent 1px) 0 0 / 44px 100%,
    linear-gradient(180deg, rgba(255,255,255,0.018) 0 1px, transparent 1px) 0 0 / 100% 40px;
  pointer-events: none;
  opacity: 0.52;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.18fr 0.92fr;
  align-items: stretch;
  gap: 34px;
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-panel {
  min-width: 0;
  padding: 10px 0 0;
  background: transparent;
  border: 0;
}

.footer-panel + .footer-panel {
  border-left: 1px solid rgba(255,255,255,0.07);
  padding-left: 34px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-title {
  font-size: 0.76rem;
  color: #93e1af;
  margin: 0 0 14px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #d8e4de;
}

.footer-copy {
  max-width: 34ch;
  margin: 0;
}

.footer-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dce9e2;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.footer-links-rich a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 0 0 14px;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.footer-links-rich a::after {
  content: "↗";
  margin-left: auto;
  color: rgba(255,255,255,0.36);
  transition: transform 0.22s ease, color 0.22s ease;
}

.footer-links-rich a:hover {
  transform: translateX(4px);
  color: #f3fbf6;
  border-color: rgba(89, 255, 171, 0.22);
}

.footer-links-rich a:hover::after {
  transform: translateX(3px);
  color: #95eab6;
}

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

.footer-contact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-radius: 0;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.footer-contact:hover {
  transform: translateX(4px);
}

.footer-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-contact span strong,
.footer-contact span small {
  display: block;
}

.footer-contact span strong {
  font-size: 0.98rem;
  color: #f0f8f3;
}

.footer-contact span small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-contact-telegram:hover {
  border-color: rgba(89, 255, 171, 0.2);
}

.footer-contact-telegram .footer-contact-icon {
  color: #0a1512;
  background: linear-gradient(135deg, #8bf2b4, #ffcf72);
}

.footer-contact-email:hover {
  border-color: rgba(255, 204, 99, 0.2);
}

.footer-contact-email .footer-contact-icon {
  color: #ffeebd;
  background: linear-gradient(135deg, rgba(255, 204, 99, 0.18), rgba(255, 98, 105, 0.22));
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 18px 0 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.56);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .header-row,
  .hero-grid,
  .activity-layout,
  .affiliate-grid,
  .about-grid,
  .plans-grid,
  .transactions-grid,
  .login-layout {
    grid-template-columns: 1fr;
  }

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

  .top-nav,
  .header-actions {
    display: none;
  }

  .top-nav.open {
    display: grid;
    position: absolute;
    top: 88px;
    left: 24px;
    right: 24px;
    padding: 18px;
    background: rgba(9, 15, 14, 0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .mobile-toggle {
    display: inline-block;
    justify-self: end;
  }

  .wide-card {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .activity-stats,
  .activity-market-metrics,
  .activity-trend-strip {
    grid-template-columns: 1fr;
  }

  .activity-gold-hero,
  .activity-gold-quick {
    grid-template-columns: 1fr;
  }

  .activity-gold-quick {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .activity-quick-item {
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .activity-quick-item:last-child {
    border-bottom: 0;
  }

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

  .capital-flow-strip {
    grid-template-columns: 1fr;
  }

  .capital-flow-metric {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .capital-flow-metric:last-child {
    border-bottom: 0;
  }

  .affiliate-visual-frame {
    min-height: 280px;
  }

  .affiliate-note {
    min-height: auto;
  }

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

  .about-column {
    grid-template-rows: none;
  }

  .about-note {
    min-height: auto;
  }

  .about-center-frame {
    width: min(100%, 640px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .login-story h2 {
    max-width: 12ch;
  }

  .login-story-top {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .auth-status-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-panel {
    padding-top: 0;
  }

  .footer-panel + .footer-panel {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-left: 0;
    padding-top: 18px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1400px);
  }

  .hero-section,
  .about-section,
  .plans-section,
  .activity-section,
  .capital-wall-section,
  .affiliate-section {
    padding: 78px 0;
  }

  .activity-stats {
    grid-template-columns: 1fr;
  }

  .activity-command,
  .activity-board {
    padding: 18px;
  }

  .activity-command-head,
  .board-head,
  .activity-market-head,
  .activity-flow-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .activity-gold-hero,
  .activity-gold-quick,
  .activity-trend-strip,
  .activity-market-metrics,
  .board-summary {
    grid-template-columns: 1fr;
  }

  .activity-flow-track,
  .activity-command-ribbon {
    width: 100%;
  }

  .activity-stat-card {
    border-right: 0;
  }

  .activity-quick-item,
  .activity-trend-item,
  .activity-market-metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .activity-quick-item:last-child,
  .activity-trend-item:last-child,
  .activity-market-metrics div:last-child {
    border-bottom: 0;
  }

  .activity-trend-item {
    padding-right: 0;
  }

  .activity-gold-price strong {
    font-size: 2.5rem;
  }

  .login-section {
    padding: 60px 0 82px;
  }

  .login-story {
    padding: 22px 20px 18px;
  }

  .login-story h2 {
    font-size: 2.15rem;
  }

  .login-panel {
    padding: 22px 18px;
  }

  .login-panel-head,
  .login-meta,
  .login-terminal-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .support-lane {
    padding: 16px 16px 14px;
  }

  .faq-group,
  .rules-card {
    padding: 20px 18px 18px;
  }

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

  .capital-flow-board {
    padding: 18px;
  }

  .footer-shell {
    padding: 0;
  }

  .footer-panel {
    padding: 0;
  }

  .footer-links-rich {
    grid-template-columns: 1fr;
  }

  .affiliate-visual-shell {
    padding: 12px;
  }

  .affiliate-visual-frame {
    min-height: 220px;
  }

  .affiliate-visual-frame img {
    max-height: 210px;
  }

  .affiliate-tier-card {
    padding: 13px 13px 12px;
  }

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

  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .hero-title-shell {
    padding: 22px 20px 20px;
    border-radius: 24px;
  }

  .hero-title-top {
    align-items: flex-start;
  }

  .section-head h2 {
    font-size: 2rem;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-shell {
    padding: 20px;
  }

  .plan-head,
  .plan-target-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .plan-card h3 {
    font-size: 2.8rem;
  }

  .plan-window,
  .plan-signal {
    width: 100%;
  }

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

  .floating-ticket {
    position: static;
    margin-top: 14px;
  }

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

  .transaction-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .transaction-arrow,
  .transaction-method {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
    justify-self: start;
  }
}

/* Home redesign scope */
body.home-page {
  --bg: #0b1018;
  --bg-deep: #05080d;
  --panel: rgba(13, 19, 29, 0.82);
  --panel-strong: rgba(16, 23, 35, 0.94);
  --line: rgba(112, 226, 255, 0.18);
  --line-soft: rgba(255, 255, 255, 0.09);
  --text: #f7fbff;
  --muted: #a7b8c7;
  --green: #42dcc8;
  --green-deep: #168f87;
  --red: #ff697f;
  --gold: #f6bd54;
  --shadow: 0 22px 58px rgba(0, 0, 0, 0.38);
  --radius: 14px;
  color: var(--text);
  background:
    linear-gradient(115deg, rgba(9, 26, 39, 0.92), rgba(8, 12, 19, 0.98) 42%, rgba(25, 18, 17, 0.94)),
    repeating-linear-gradient(90deg, rgba(112, 226, 255, 0.035) 0 1px, transparent 1px 84px),
    #070b12;
}

body.home-page::before {
  background:
    linear-gradient(90deg, rgba(64, 220, 205, 0.1), transparent 28%, transparent 70%, rgba(255, 105, 127, 0.09)),
    linear-gradient(180deg, rgba(246, 189, 84, 0.08), transparent 24%, rgba(7, 10, 16, 0.78));
}

.home-page .site-bg {
  background:
    linear-gradient(180deg, rgba(4, 8, 14, 0.74), rgba(4, 7, 11, 0.9)),
    url("../images/bg.jpg") center center / cover no-repeat;
  opacity: 0.28;
  filter: hue-rotate(165deg) saturate(0.65) contrast(1.15);
}

.home-page .site-bg::after {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 76px);
}

.home-page .market-canvas {
  opacity: 0.32;
  mix-blend-mode: screen;
}

.home-page .site-header {
  background: rgba(7, 11, 18, 0.82);
  border-bottom: 1px solid rgba(112, 226, 255, 0.14);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
}

.home-page .brand-mark {
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(66, 220, 200, 0.12), rgba(246, 189, 84, 0.08));
  border-color: rgba(112, 226, 255, 0.2);
}

.home-page .brand-copy strong {
  color: #f9fcff;
}

.home-page .brand-copy small {
  color: #9fc5d5;
}

.home-page .top-nav {
  justify-content: flex-end;
}

.home-page .top-nav a {
  border-radius: 8px;
  color: #c8d7e2;
}

.home-page .top-nav a:hover {
  color: #ffffff;
  background: rgba(112, 226, 255, 0.08);
}

.home-page .market-pill {
  color: #9eece5;
  background: rgba(66, 220, 200, 0.08);
  border-color: rgba(66, 220, 200, 0.22);
}

.home-page .btn {
  min-height: 44px;
  border-radius: 8px;
}

.home-page .btn-primary {
  color: #081016;
  background: linear-gradient(135deg, #59e4d1 0%, #f7c25a 58%, #ff7b72 100%);
  box-shadow: 0 12px 30px rgba(66, 220, 200, 0.15);
}

.home-page .btn-secondary,
.home-page .btn-ghost {
  color: #e8f4fb;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

.home-page .hero-section {
  padding-top: 54px;
  padding-bottom: 88px;
}

.home-page .hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  gap: 54px;
  min-height: calc(100vh - 102px);
}

.home-page .hero-title-shell {
  max-width: 820px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.home-page .hero-title-shell::before,
.home-page .hero-title-shell::after {
  display: none;
}

.home-page .hero-title-top {
  margin-bottom: 20px;
}

.home-page .section-kicker,
.home-page .card-kicker {
  color: #6ee7db;
  letter-spacing: 0.18em;
}

.home-page .hero-kicker {
  padding-left: 0;
  border-left: 0;
}

.home-page .hero-title-chip {
  min-height: 30px;
  border-radius: 7px;
  color: #ffe1a2;
  background: rgba(246, 189, 84, 0.09);
  border-color: rgba(246, 189, 84, 0.2);
}

.home-page .hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 7.3vw, 6.4rem);
  letter-spacing: -0.045em;
}

.home-page .hero-title-accent {
  background: linear-gradient(120deg, #79f4e8 0%, #fff0c2 52%, #ff8d84 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.home-page .hero-copy .section-copy {
  max-width: 64ch;
  color: #b6c7d4;
  font-size: 1.04rem;
}

.home-page .hero-metrics {
  width: min(100%, 760px);
  margin: 34px 0 28px;
  gap: 10px;
}

.home-page .metric-card {
  flex: 1 1 180px;
  min-width: 0;
  padding: 17px 18px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025)),
    rgba(10, 16, 24, 0.8);
  border-color: rgba(112, 226, 255, 0.16);
  box-shadow: none;
}

.home-page .metric-label {
  color: #8eb0c0;
}

.home-page .metric-card strong {
  color: #ffffff;
}

.home-page .hero-actions {
  gap: 12px;
}

.home-page .hero-visual {
  align-self: stretch;
  display: grid;
  align-items: center;
}

.home-page .hero-visual::before {
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(112, 226, 255, 0.44), rgba(246, 189, 84, 0.18), rgba(255, 105, 127, 0.28));
}

.home-page .hero-visual img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: hue-rotate(162deg) saturate(0.72) contrast(1.08);
}

.home-page .floating-ticket {
  border-radius: 10px;
  background: rgba(9, 14, 22, 0.82);
  border-color: rgba(255, 255, 255, 0.12);
}

.home-page .floating-green {
  left: 22px;
  bottom: 24px;
}

.home-page .floating-red {
  right: 22px;
  top: 24px;
}

.home-page .about-section,
.home-page .plans-section,
.home-page .activity-section,
.home-page .capital-wall-section,
.home-page .affiliate-section {
  padding: 92px 0;
}

.home-page .section-head {
  margin-bottom: 42px;
}

.home-page .section-head h2 {
  max-width: 820px;
  color: #f9fcff;
  letter-spacing: -0.035em;
}

.home-page .section-copy {
  color: #aabccc;
}

.home-page .about-grid {
  grid-template-columns: 0.85fr 1.1fr 0.85fr;
  gap: 36px;
  align-items: stretch;
}

.home-page .about-column {
  gap: 12px;
  align-content: stretch;
}

.home-page .about-note {
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(11, 17, 27, 0.7);
}

.home-page .about-note strong {
  color: #ffffff;
}

.home-page .about-note span {
  color: #aabccc;
}

.home-page .about-center-frame {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(66, 220, 200, 0.12), rgba(246, 189, 84, 0.08) 48%, rgba(255, 105, 127, 0.1)),
    rgba(11, 17, 27, 0.78);
  border-color: rgba(112, 226, 255, 0.16);
}

.home-page .about-center-frame::before,
.home-page .about-center-frame::after {
  display: none;
}

.home-page .about-center-frame img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: hue-rotate(155deg) saturate(0.74) contrast(1.04);
}

.home-page .plans-grid {
  grid-template-columns: 0.92fr 1.16fr 0.92fr;
  gap: 16px;
}

.home-page .plan-shell {
  border-radius: 12px;
  padding: 22px;
  background: rgba(12, 18, 28, 0.88);
  border-color: rgba(255, 255, 255, 0.1);
}

.home-page .plan-shell::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 58px);
}

.home-page .plan-shell::after {
  background: linear-gradient(135deg, rgba(var(--plan-accent), 0.18), transparent 46%);
}

.home-page .plan-red .plan-shell {
  min-height: 104%;
  transform: translateY(-10px);
  background:
    linear-gradient(180deg, rgba(16, 28, 42, 0.98), rgba(10, 15, 23, 0.98));
  border-color: rgba(66, 220, 200, 0.24);
}

.home-page .plan-green {
  --plan-accent: 66, 220, 200;
}

.home-page .plan-red {
  --plan-accent: 246, 189, 84;
}

.home-page .plan-gold {
  --plan-accent: 255, 105, 127;
}

.home-page .plan-card h3 {
  font-size: clamp(2.1rem, 3vw, 3.1rem);
  letter-spacing: -0.055em;
}

.home-page .plan-window,
.home-page .plan-terminal,
.home-page .plan-stat,
.home-page .plan-signal {
  border-radius: 9px;
}

.home-page .plan-terminal {
  background: rgba(4, 8, 13, 0.44);
}

.home-page .plan-badge,
.home-page .plan-pair {
  border-radius: 6px;
}

.home-page .activity-command {
  padding: 26px;
  border: 1px solid rgba(112, 226, 255, 0.15);
  border-radius: 16px;
  background: rgba(9, 15, 24, 0.76);
  box-shadow: var(--shadow);
}

.home-page .activity-command::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), transparent 30%),
    repeating-linear-gradient(90deg, rgba(112, 226, 255, 0.035) 0 1px, transparent 1px 72px);
}

.home-page .activity-command h3,
.home-page .activity-board h3 {
  color: #ffffff;
}

.home-page .board-live,
.home-page .activity-market-tag {
  border-radius: 7px;
}

.home-page .activity-market-board {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(4, 8, 13, 0.35);
}

.home-page .activity-gold-price strong {
  color: #ffdf8a;
}

.home-page .activity-stats {
  gap: 12px;
  margin-top: 16px;
}

.home-page .activity-stat-card {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.035);
}

.home-page .activity-stat-card strong {
  color: #ffffff;
}

.home-page .capital-flow-board {
  border-radius: 16px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(66, 220, 200, 0.08), transparent 38%, rgba(255, 105, 127, 0.08)),
    rgba(10, 15, 24, 0.82);
}

.home-page .capital-flow-metric,
.home-page .transaction-column,
.home-page .transaction-row {
  border-radius: 10px;
}

.home-page .capital-flow-metric {
  background: rgba(255,255,255,0.04);
}

.home-page .transaction-column {
  background: rgba(4, 8, 13, 0.38);
}

.home-page .transaction-arrow {
  border-radius: 8px;
}

.home-page .affiliate-grid {
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 32px;
}

.home-page .affiliate-note {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(11, 17, 27, 0.68);
}

.home-page .affiliate-note:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.home-page .affiliate-note strong {
  color: #ffffff;
}

.home-page .affiliate-visual-shell {
  width: min(100%, 540px);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(66, 220, 200, 0.1), rgba(246, 189, 84, 0.08), rgba(255, 105, 127, 0.09)),
    rgba(10, 15, 24, 0.86);
  border-color: rgba(112, 226, 255, 0.15);
}

.home-page .affiliate-visual-shell::before,
.home-page .affiliate-visual-frame::before {
  display: none;
}

.home-page .affiliate-visual-frame {
  min-height: 380px;
  border-radius: 12px;
  background: rgba(4, 8, 13, 0.28);
}

.home-page .affiliate-visual-frame img {
  filter: hue-rotate(155deg) saturate(0.76) contrast(1.06);
}

.home-page .affiliate-center-badge,
.home-page .affiliate-tier-card {
  border-radius: 10px;
}

.home-page .affiliate-tier-board {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(11, 17, 27, 0.68);
}

.home-page .affiliate-tier-card {
  background: rgba(255,255,255,0.04);
}

.home-page .affiliate-tier-green strong {
  color: #61e5d6;
}

.home-page .affiliate-tier-gold strong {
  color: #ffd37b;
}

.home-page .affiliate-tier-red strong {
  color: #ff9aa5;
}

.home-page .site-footer {
  background: rgba(6, 10, 16, 0.92);
  border-top-color: rgba(112, 226, 255, 0.13);
}

.home-page .footer-shell::before {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.024) 0 1px, transparent 1px 68px),
    linear-gradient(90deg, rgba(66, 220, 200, 0.06), transparent 55%, rgba(246, 189, 84, 0.05));
}

.home-page .footer-title {
  color: #6ee7db;
}

.home-page .footer-status-chip,
.home-page .footer-contact-icon {
  border-radius: 8px;
}

@media (max-width: 1100px) {
  .home-page .hero-grid,
  .home-page .about-grid,
  .home-page .plans-grid,
  .home-page .affiliate-grid {
    grid-template-columns: 1fr;
  }

  .home-page .plan-red .plan-shell {
    min-height: auto;
    transform: none;
  }

  .home-page .about-center-frame {
    min-height: 420px;
  }

  .home-page .top-nav.open {
    background: rgba(7, 11, 18, 0.98);
    border-color: rgba(112, 226, 255, 0.18);
    border-radius: 12px;
  }
}

@media (max-width: 720px) {
  .home-page .hero-section {
    padding-top: 42px;
  }

  .home-page .hero-copy h1 {
    font-size: 2.85rem;
  }

  .home-page .hero-grid {
    gap: 34px;
    min-height: auto;
  }

  .home-page .hero-metrics {
    display: grid;
  }

  .home-page .about-center-frame,
  .home-page .affiliate-visual-frame {
    min-height: 260px;
  }

  .home-page .activity-command,
  .home-page .capital-flow-board {
    padding: 18px;
  }

  .home-page .activity-market-board {
    padding: 14px;
  }
}

/* OrbitX complete homepage rebuild */
.home-v2 {
  --ox-bg: #080b12;
  --ox-panel: rgba(12, 18, 30, 0.82);
  --ox-panel-2: rgba(18, 24, 37, 0.94);
  --ox-text: #f7fbff;
  --ox-muted: #99aabc;
  --ox-line: rgba(134, 220, 255, 0.16);
  --ox-cyan: #5bd8ff;
  --ox-teal: #42dcc8;
  --ox-amber: #f5b94f;
  --ox-coral: #ff6f7f;
  --ox-violet: #9f8cff;
  background:
    radial-gradient(circle at 12% 12%, rgba(91, 216, 255, 0.14), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(255, 111, 127, 0.12), transparent 24%),
    radial-gradient(circle at 55% 88%, rgba(245, 185, 79, 0.08), transparent 30%),
    linear-gradient(140deg, #070a11 0%, #101521 45%, #090b10 100%);
}

.home-v2 .site-bg {
  opacity: 0.18;
  filter: grayscale(0.35) hue-rotate(185deg) contrast(1.2);
}

.home-v2 .market-canvas {
  opacity: 0.24;
}

.home-v2 .container {
  width: min(1480px, calc(100% - 48px));
}

.ox-header {
  position: sticky;
  top: 12px;
  width: min(1480px, calc(100% - 32px));
  margin: 12px auto 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(7, 10, 17, 0.78);
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}

.ox-header-row {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 0 16px;
}

.ox-brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(91,216,255,0.18), rgba(245,185,79,0.12)),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(134, 220, 255, 0.18);
}

.ox-brand .brand-copy strong {
  font-size: 1.28rem;
}

.ox-brand .brand-copy small {
  color: #9eb8ca;
}

.ox-nav {
  justify-content: center;
  gap: 4px;
}

.ox-nav a {
  min-height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #c2d3df;
}

.ox-nav a:hover {
  color: #fff;
  background: rgba(91,216,255,0.08);
}

.ox-actions {
  gap: 9px;
}

.ox-status {
  border-radius: 999px;
  color: #b8f4e8;
  background: rgba(66, 220, 200, 0.08);
  border-color: rgba(66, 220, 200, 0.22);
}

.home-v2 .btn {
  min-height: 42px;
  border-radius: 999px;
}

.home-v2 .btn-primary {
  color: #071016;
  background: linear-gradient(135deg, var(--ox-cyan), var(--ox-amber) 62%, var(--ox-coral));
}

.home-v2 .btn-secondary,
.home-v2 .btn-ghost {
  color: #ecf6ff;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}

.ox-hero {
  padding: 82px 0 104px;
}

.ox-hero-grid {
  min-height: calc(100vh - 150px);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  gap: 48px;
  align-items: center;
}

.ox-hero-copy h1 {
  margin: 0;
  max-width: 10.6ch;
  color: var(--ox-text);
  font-size: clamp(3.8rem, 8vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.ox-hero-copy .section-copy {
  max-width: 64ch;
  margin: 24px 0 0;
  color: #b2c0cf;
  font-size: 1.08rem;
}

.ox-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.ox-market-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid var(--ox-line);
  border-radius: 18px;
  background: var(--ox-line);
}

.ox-market-strip div {
  padding: 18px;
  background: rgba(9, 13, 22, 0.86);
}

.ox-market-strip span,
.ox-board-top span,
.ox-board-grid span,
.ox-cycle-side span,
.ox-cycle-main p,
.ox-cycle-stats span,
.ox-live-title span,
.ox-live-price span,
.ox-bias-line span,
.ox-live-grid span,
.ox-kpi-strip span,
.ox-wallet-summary span,
.ox-ledger-head span,
.ox-partner-steps span,
.ox-commission span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #85a2b4;
}

.ox-market-strip strong,
.ox-board-top strong,
.ox-board-grid strong {
  display: block;
  margin-top: 8px;
  color: #fff;
}

.ox-market-strip small {
  display: block;
  margin-top: 6px;
  color: #8294a5;
  font-size: 0.82rem;
}

.ox-hero-board {
  position: relative;
  padding: 16px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(91,216,255,0.08), rgba(245,185,79,0.05) 42%, rgba(255,111,127,0.08)),
    rgba(11, 17, 28, 0.88);
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: 0 30px 90px rgba(0,0,0,0.4);
}

.ox-hero-board::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

.ox-board-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 4px 14px;
}

.ox-hero-image {
  position: relative;
  height: min(62vh, 660px);
  min-height: 460px;
  overflow: hidden;
  border-radius: 22px;
  background: #0c111b;
}

.ox-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: hue-rotate(175deg) saturate(0.7) contrast(1.08);
}

.ox-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,12,20,0.16), transparent 42%, rgba(8,12,20,0.38)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 76px);
}

.ox-board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.ox-board-grid article {
  padding: 15px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.ox-system,
.ox-cycles,
.ox-live,
.ox-wallet,
.ox-partners {
  padding: 108px 0;
}

.ox-section-line {
  max-width: 900px;
  margin-bottom: 42px;
}

.ox-section-line h2,
.ox-section-split h2,
.ox-partner-copy h2 {
  margin: 0;
  color: #f9fcff;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.ox-section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.5fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.ox-section-split .section-copy {
  margin: 0;
}

.ox-system-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: stretch;
}

.ox-system-media {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}

.ox-system-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: hue-rotate(170deg) saturate(0.64) contrast(1.08);
}

.ox-media-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(7, 11, 18, 0.78);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
}

.ox-media-caption span {
  display: block;
  margin-bottom: 8px;
  color: var(--ox-cyan);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ox-media-caption strong {
  color: #fff;
}

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

.ox-system-stack article {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border-radius: 22px;
  background: rgba(13, 19, 31, 0.82);
  border: 1px solid rgba(255,255,255,0.09);
}

.ox-system-stack article:nth-child(2),
.ox-system-stack article:nth-child(3) {
  transform: translateY(28px);
}

.ox-system-stack article > span {
  color: var(--ox-amber);
  font-weight: 800;
}

.ox-system-stack h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.45rem;
}

.ox-system-stack p {
  margin: 0;
  color: var(--ox-muted);
  line-height: 1.7;
}

.ox-cycle-board {
  display: grid;
  gap: 14px;
}

.ox-cycle {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(12, 18, 30, 0.78);
}

.ox-cycle-b {
  margin-left: 72px;
  background:
    linear-gradient(90deg, rgba(91,216,255,0.09), transparent 42%),
    rgba(12, 18, 30, 0.82);
}

.ox-cycle-c {
  margin-left: 144px;
}

.ox-cycle-side,
.ox-cycle-main,
.ox-cycle-stats div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.ox-cycle-side {
  display: grid;
  align-content: space-between;
}

.ox-cycle-side strong {
  color: #fff;
  font-size: 1.5rem;
}

.ox-cycle-main h3 {
  margin: 7px 0 10px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.ox-cycle-main > span {
  color: var(--ox-muted);
  line-height: 1.6;
}

.ox-cycle-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ox-cycle-stats strong {
  display: block;
  margin-top: 8px;
  color: #fff;
}

.ox-cycle-a .ox-cycle-side span,
.ox-cycle-a .ox-cycle-main p {
  color: var(--ox-cyan);
}

.ox-cycle-b .ox-cycle-side span,
.ox-cycle-b .ox-cycle-main p {
  color: var(--ox-amber);
}

.ox-cycle-c .ox-cycle-side span,
.ox-cycle-c .ox-cycle-main p {
  color: var(--ox-coral);
}

.ox-live-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
}

.ox-live-summary,
.ox-live-grid article,
.ox-kpi-strip article,
.ox-wallet-summary,
.ox-ledger,
.ox-partner-copy,
.ox-partner-visual,
.ox-commission,
.ox-footer-grid {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(12, 18, 30, 0.78);
}

.ox-live-summary {
  position: relative;
  min-height: 480px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  border-radius: 26px;
}

.ox-live-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top right, rgba(245,185,79,0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(91,216,255,0.12), transparent 32%);
  pointer-events: none;
}

.ox-live-summary > * {
  position: relative;
  z-index: 1;
}

.ox-live-title strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.35rem;
}

.ox-live-price strong {
  display: block;
  margin-top: 12px;
  color: #ffe0a0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.ox-live-price small,
.ox-live-grid small,
.ox-kpi-strip small,
.ox-commission small {
  display: block;
  margin-top: 8px;
  color: #8da0b1;
  line-height: 1.45;
}

.ox-bias-line {
  display: grid;
  gap: 14px;
}

.ox-bias-line strong {
  display: block;
  margin-top: 8px;
  color: #fff;
}

.ox-feed-tag {
  width: fit-content;
}

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

.ox-live-grid article {
  min-height: 154px;
  padding: 18px;
  border-radius: 18px;
}

.ox-live-grid strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 1.16rem;
}

.ox-kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.ox-kpi-strip article {
  padding: 18px;
  border-radius: 18px;
}

.ox-kpi-strip strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 2rem;
}

.ox-wallet-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
}

.ox-wallet-summary {
  border-radius: 26px;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.ox-wallet-summary div {
  min-height: 138px;
  display: grid;
  align-content: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
}

.ox-wallet-summary strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
}

.ox-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: 26px;
}

.ox-ledger-column {
  display: grid;
  gap: 9px;
}

.ox-ledger-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 2px 8px;
}

.ox-ledger-head strong {
  color: #fff;
}

.ox-ledger-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
}

.ox-ledger-row span {
  min-width: 0;
  color: #edf7ff;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ox-ledger-row img {
  max-width: 72px;
  height: 32px;
  object-fit: contain;
  justify-self: center;
}

.ox-ledger-row strong {
  color: #fff;
}

.ox-partner-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.9fr) minmax(280px, 0.52fr);
  gap: 18px;
  align-items: stretch;
}

.ox-partner-copy,
.ox-partner-visual,
.ox-commission {
  border-radius: 28px;
}

.ox-partner-copy {
  padding: 28px;
}

.ox-partner-copy .section-copy {
  margin-top: 18px;
}

.ox-partner-steps {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.ox-partner-steps article,
.ox-commission article {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}

.ox-partner-steps strong {
  display: block;
  margin-top: 8px;
  color: #fff;
}

.ox-partner-visual {
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at center, rgba(91,216,255,0.11), transparent 42%),
    rgba(12, 18, 30, 0.78);
}

.ox-partner-visual img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  filter: hue-rotate(170deg) saturate(0.72);
}

.ox-commission {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.ox-commission strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 2.45rem;
  letter-spacing: -0.05em;
}

.ox-commission article:nth-child(1) strong {
  color: var(--ox-cyan);
}

.ox-commission article:nth-child(2) strong {
  color: var(--ox-amber);
}

.ox-commission article:nth-child(3) strong {
  color: var(--ox-coral);
}

.ox-footer {
  padding: 28px 0 36px;
  border-top: 0;
  background: transparent;
}

.ox-footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1fr) minmax(260px, 0.7fr);
  gap: 28px;
  padding: 24px;
  border-radius: 28px;
}

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

.ox-footer-links a,
.ox-footer-contact a {
  text-decoration: none;
  color: #dbe8f3;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ox-footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.ox-footer-contact strong,
.ox-footer-contact span {
  display: block;
}

.ox-footer-contact span,
.ox-footer-contact small {
  color: #93a6b7;
}

@media (max-width: 1180px) {
  .ox-header-row,
  .ox-hero-grid,
  .ox-system-layout,
  .ox-section-split,
  .ox-live-layout,
  .ox-wallet-grid,
  .ox-partner-layout,
  .ox-footer-grid {
    grid-template-columns: 1fr;
  }

  .ox-nav,
  .ox-actions {
    display: none;
  }

  .ox-nav.open {
    display: grid;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    padding: 16px;
    border-radius: 18px;
    background: rgba(7, 10, 17, 0.98);
    border: 1px solid rgba(255,255,255,0.1);
  }

  .ox-header-row {
    grid-template-columns: auto 1fr auto;
  }

  .ox-cycle,
  .ox-cycle-b,
  .ox-cycle-c {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .ox-system-stack,
  .ox-live-grid,
  .ox-kpi-strip,
  .ox-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ox-system-stack article:nth-child(2),
  .ox-system-stack article:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 720px) {
  .home-v2 .container {
    width: min(100% - 28px, 1480px);
  }

  .ox-header {
    top: 8px;
    width: min(100% - 16px, 1480px);
    border-radius: 14px;
  }

  .ox-hero,
  .ox-system,
  .ox-cycles,
  .ox-live,
  .ox-wallet,
  .ox-partners {
    padding: 72px 0;
  }

  .ox-hero-copy h1 {
    font-size: 3.25rem;
  }

  .ox-market-strip,
  .ox-board-grid,
  .ox-cycle-stats,
  .ox-system-stack,
  .ox-live-grid,
  .ox-kpi-strip,
  .ox-ledger,
  .ox-footer-links {
    grid-template-columns: 1fr;
  }

  .ox-hero-image,
  .ox-system-media {
    min-height: 320px;
    height: 420px;
  }

  .ox-live-summary {
    min-height: 360px;
  }

  .ox-live-price strong {
    font-size: 3.05rem;
  }

  .ox-ledger-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

/* Home V2 layout refinements */
.home-v2 .ox-header {
  top: 0;
  width: 100%;
  margin: 0;
  border-width: 0 0 1px;
  border-radius: 0;
  background: rgba(7, 10, 17, 0.9);
  box-shadow: none;
}

.home-v2 .ox-header-row {
  width: min(1480px, calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  padding: 0;
}

.home-v2 .ox-nav a,
.home-v2 .btn,
.home-v2 .ox-status {
  border-radius: 8px;
}

.home-v2 .ox-status {
  background: transparent;
  border-color: rgba(91, 216, 255, 0.2);
}

.home-v2 .ox-hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 52px 0;
}

.home-v2 .ox-hero-grid {
  min-height: 0;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
}

.home-v2 .ox-hero-board {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-v2 .ox-hero-board::before {
  display: none;
}

.home-v2 .ox-board-top {
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
}

.home-v2 .ox-hero-image {
  height: min(54vh, 560px);
  min-height: 360px;
  border-radius: 18px;
  background: transparent;
}

.home-v2 .ox-hero-image img {
  border: 1px solid rgba(255,255,255,0.1);
}

.home-v2 .ox-board-grid article {
  border-radius: 12px;
  background: rgba(255,255,255,0.035);
}

.home-v2 .ox-system,
.home-v2 .ox-cycles,
.home-v2 .ox-live,
.home-v2 .ox-wallet,
.home-v2 .ox-partners {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 58px 0;
}

.home-v2 .ox-section-line,
.home-v2 .ox-section-split {
  margin-bottom: 26px;
}

.home-v2 .ox-section-line h2,
.home-v2 .ox-section-split h2,
.home-v2 .ox-partner-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.35rem);
}

.home-v2 .ox-system-layout,
.home-v2 .ox-live-layout,
.home-v2 .ox-wallet-grid,
.home-v2 .ox-partner-layout {
  gap: 16px;
}

.home-v2 .ox-system-media {
  min-height: 470px;
}

.home-v2 .ox-system-stack {
  gap: 10px;
}

.home-v2 .ox-system-stack article {
  min-height: 192px;
  padding: 18px;
}

.home-v2 .ox-cycle {
  padding: 14px;
  gap: 12px;
}

.home-v2 .ox-cycle-side,
.home-v2 .ox-cycle-main,
.home-v2 .ox-cycle-stats div {
  padding: 14px;
}

.home-v2 .ox-live-summary {
  min-height: 390px;
}

.home-v2 .ox-live-grid {
  gap: 10px;
}

.home-v2 .ox-live-grid article {
  min-height: 124px;
  padding: 14px;
}

.home-v2 .ox-kpi-strip {
  gap: 10px;
  margin-top: 10px;
}

.home-v2 .ox-kpi-strip article {
  padding: 14px;
}

.home-v2 .ox-wallet-summary div {
  min-height: 112px;
}

.home-v2 .ox-ledger {
  padding: 14px;
}

.home-v2 .ox-ledger-row {
  min-height: 50px;
  padding: 8px 10px;
}

.home-v2 .ox-partner-copy,
.home-v2 .ox-commission {
  padding: 22px;
}

.home-v2 .ox-partner-visual img {
  max-height: 360px;
}

@media (max-width: 1180px) {
  .home-v2 .ox-header-row {
    grid-template-columns: auto 1fr auto;
  }

  .home-v2 .ox-hero,
  .home-v2 .ox-system,
  .home-v2 .ox-cycles,
  .home-v2 .ox-live,
  .home-v2 .ox-wallet,
  .home-v2 .ox-partners {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .home-v2 .ox-header {
    top: 0;
    width: 100%;
    border-radius: 0;
  }

  .home-v2 .ox-header-row {
    width: min(100% - 28px, 1480px);
    min-height: 72px;
  }

  .home-v2 .ox-hero {
    padding: 42px 0 64px;
  }

  .home-v2 .ox-hero-image {
    height: 340px;
    min-height: 300px;
  }
}

/* Viewport-fit polish */
.home-v2 .ox-header {
  position: relative;
  background:
    linear-gradient(180deg, rgba(12, 18, 30, 0.28), rgba(7, 10, 17, 0.14)),
    rgba(7, 10, 17, 0.16);
  border-bottom: 1px solid rgba(134, 220, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.home-v2 .ox-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,216,255,0.32), rgba(245,185,79,0.22), transparent);
  pointer-events: none;
}

.home-v2 .ox-brand-mark {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 8px 26px rgba(91,216,255,0.08);
}

.home-v2 .ox-nav a {
  border: 1px solid transparent;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home-v2 .ox-nav a:hover {
  border-color: rgba(134, 220, 255, 0.18);
  background: rgba(91,216,255,0.07);
}

.home-v2 .ox-status {
  color: #baf7ec;
  background:
    linear-gradient(90deg, rgba(66,220,200,0.08), rgba(245,185,79,0.05));
}

.home-v2 .ox-nav {
  position: relative;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2px;
  min-height: 48px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(3, 7, 13, 0.24);
}

.home-v2 .ox-nav::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,216,255,0.28), rgba(245,185,79,0.2), transparent);
  pointer-events: none;
}

.home-v2 .ox-nav a {
  position: relative;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  color: #c5d7e3;
  font-size: 0.88rem;
  font-weight: 700;
}

.home-v2 .ox-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ox-cyan), var(--ox-amber));
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.home-v2 .ox-nav a:hover,
.home-v2 .ox-nav a:focus-visible {
  color: #ffffff;
  border-color: rgba(134, 220, 255, 0.16);
  background: rgba(91,216,255,0.075);
}

.home-v2 .ox-nav a:hover::after,
.home-v2 .ox-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-v2 .ox-nav a.is-current {
  color: #ffffff;
  border-color: rgba(245,185,79,0.2);
  background: rgba(245,185,79,0.08);
}

.home-v2 .ox-nav a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-v2 .ox-actions {
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.home-v2 .ox-actions .btn {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
}

.home-v2 .ox-actions .btn-primary {
  box-shadow: 0 12px 28px rgba(91,216,255,0.14);
}

.home-v2 .ox-hero {
  min-height: calc(100vh - 82px);
  padding: 26px 0 30px;
  overflow: hidden;
}

.home-v2 .ox-hero-grid {
  gap: 42px;
}

.home-v2 .ox-hero-copy h1 {
  max-width: 11.2ch;
  font-size: clamp(3.4rem, 6.05vw, 6rem);
  line-height: 0.92;
}

.home-v2 .ox-hero-copy .section-copy {
  max-width: 58ch;
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.65;
}

.home-v2 .ox-hero-actions {
  margin-top: 24px;
}

.home-v2 .ox-market-strip {
  margin-top: 26px;
}

.home-v2 .ox-market-strip div {
  padding: 14px 16px;
}

.home-v2 .ox-hero-image {
  height: min(48vh, 470px);
  min-height: 330px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  background:
    linear-gradient(120deg, rgba(91,216,255,0.06), transparent 42%, rgba(255,111,127,0.05)),
    rgba(8, 12, 20, 0.24);
}

.home-v2 .ox-hero-image img {
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 82%;
  object-fit: contain;
  border: 0;
}

.home-v2 .ox-hero-image::after {
  background:
    linear-gradient(90deg, rgba(8,12,20,0.12), transparent 42%, rgba(8,12,20,0.18)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 76px);
}

.home-v2 .ox-board-grid {
  gap: 8px;
  margin-top: 10px;
}

.home-v2 .ox-board-grid article {
  padding: 12px 14px;
}

.home-v2 .ox-system,
.home-v2 .ox-cycles,
.home-v2 .ox-live,
.home-v2 .ox-wallet,
.home-v2 .ox-partners {
  min-height: calc(100vh - 82px);
  padding: 36px 0;
  overflow: hidden;
}

.home-v2 .ox-section-line,
.home-v2 .ox-section-split {
  margin-bottom: 20px;
}

.home-v2 .ox-section-line h2,
.home-v2 .ox-section-split h2,
.home-v2 .ox-partner-copy h2 {
  font-size: clamp(1.78rem, 3.05vw, 3rem);
  line-height: 1;
}

.home-v2 .ox-system-media {
  min-height: 390px;
  max-height: 520px;
}

.home-v2 .ox-system-stack article {
  min-height: 166px;
  padding: 16px;
}

.home-v2 .ox-system-stack h3 {
  font-size: 1.22rem;
}

.home-v2 .ox-system-stack p {
  line-height: 1.55;
  font-size: 0.94rem;
}

.home-v2 .ox-cycle {
  padding: 12px;
}

.home-v2 .ox-cycle-side,
.home-v2 .ox-cycle-main,
.home-v2 .ox-cycle-stats div {
  padding: 12px;
}

.home-v2 .ox-cycle-main h3 {
  font-size: clamp(1.55rem, 2.35vw, 2.35rem);
}

.home-v2 .ox-live-summary {
  min-height: 330px;
  padding: 18px;
}

.home-v2 .ox-live-price strong {
  font-size: clamp(2.35rem, 4.4vw, 4.1rem);
}

.home-v2 .ox-live-grid article {
  min-height: 106px;
  padding: 12px;
}

.home-v2 .ox-live-grid small,
.home-v2 .ox-kpi-strip small {
  font-size: 0.78rem;
}

.home-v2 .ox-kpi-strip article {
  padding: 12px;
}

.home-v2 .ox-kpi-strip strong {
  font-size: 1.6rem;
}

.home-v2 .ox-wallet-summary div {
  min-height: 92px;
  padding: 14px;
}

.home-v2 .ox-wallet-summary strong {
  font-size: 1.74rem;
}

.home-v2 .ox-ledger-row {
  min-height: 44px;
}

.home-v2 .ox-partner-copy,
.home-v2 .ox-commission {
  padding: 18px;
}

.home-v2 .ox-partner-visual img {
  max-height: 300px;
}

.home-v2 .ox-commission strong {
  font-size: 2rem;
}

@media (max-height: 860px) and (min-width: 1181px) {
  .home-v2 .ox-header-row {
    min-height: 72px;
  }

  .home-v2 .ox-hero,
  .home-v2 .ox-system,
  .home-v2 .ox-cycles,
  .home-v2 .ox-live,
  .home-v2 .ox-wallet,
  .home-v2 .ox-partners {
    min-height: calc(100vh - 72px);
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .home-v2 .ox-hero-copy h1 {
    font-size: clamp(3rem, 5.15vw, 5.25rem);
  }

  .home-v2 .ox-hero-image {
    height: min(42vh, 380px);
    min-height: 280px;
  }

  .home-v2 .ox-market-strip {
    display: none;
  }

  .home-v2 .ox-system-media {
    min-height: 340px;
  }

  .home-v2 .ox-system-stack article {
    min-height: 148px;
  }
}

/* Hero V3 rebuild */
.home-v2 .ox-hero-v3 {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 28px 0 34px;
  overflow: hidden;
}

.ox-hero-stage {
  position: relative;
  min-height: min(720px, calc(100vh - 128px));
  display: grid;
  grid-template-columns: 118px minmax(0, 0.96fr) minmax(420px, 0.9fr);
  grid-template-rows: 1fr auto;
  gap: 18px 34px;
  align-items: center;
}

.ox-hero-stage::before {
  content: "";
  position: absolute;
  left: 118px;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(91,216,255,0.5), rgba(245,185,79,0.32), transparent);
  pointer-events: none;
}

.ox-hero-stage::after {
  content: "";
  position: absolute;
  inset: 12px 0 auto 118px;
  height: 42%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.028) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 64px);
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 72%, transparent);
  pointer-events: none;
  opacity: 0.8;
}

.ox-hero-rail {
  position: relative;
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px 0;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.ox-hero-rail span,
.ox-hero-labels span,
.ox-hero-tape span,
.ox-hero-figure figcaption span {
  display: block;
  color: #75dff1;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ox-hero-rail strong {
  color: #fff;
  font-size: 4.8rem;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.ox-hero-rail small {
  max-width: 10ch;
  color: #93a8b8;
  line-height: 1.45;
}

.ox-rail-lines {
  display: grid;
  gap: 8px;
  width: 68px;
  margin-top: 18px;
}

.ox-rail-lines b {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5bd8ff, #f5b94f);
}

.ox-rail-lines b:nth-child(2) {
  width: 70%;
  background: linear-gradient(90deg, #9f8cff, #5bd8ff);
}

.ox-rail-lines b:nth-child(3) {
  width: 46%;
  background: linear-gradient(90deg, #ff6f7f, #f5b94f);
}

.ox-hero-main {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.ox-hero-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.ox-hero-labels span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-left: 2px solid rgba(91,216,255,0.6);
  background: rgba(255,255,255,0.035);
}

.ox-hero-main h1 {
  margin: 0;
  max-width: 11ch;
  color: #f8fcff;
  font-size: clamp(3.35rem, 6.1vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.ox-hero-main .section-copy {
  max-width: 60ch;
  margin: 20px 0 0;
  color: #adbecc;
  font-size: 1rem;
  line-height: 1.65;
}

.ox-hero-figure {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 0;
  margin: 0;
}

.ox-hero-figure img {
  width: auto;
  height: auto;
  max-width: min(86%, 520px);
  max-height: min(64vh, 520px);
  object-fit: contain;
  filter: hue-rotate(175deg) saturate(0.72) contrast(1.08) drop-shadow(0 32px 54px rgba(0,0,0,0.46));
}

.ox-hero-figure figcaption {
  position: absolute;
  right: 0;
  bottom: 12%;
  padding: 12px 0 12px 18px;
  min-width: 190px;
  border-left: 1px solid rgba(245,185,79,0.45);
  background: linear-gradient(90deg, rgba(8,12,20,0.72), transparent);
}

.ox-hero-figure figcaption strong {
  display: block;
  margin-top: 8px;
  color: #fff;
}

.ox-hero-tape {
  position: relative;
  z-index: 1;
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.1);
}

.ox-hero-tape article {
  min-height: 76px;
  display: grid;
  align-content: center;
  padding: 12px 16px;
  background: rgba(9, 13, 22, 0.82);
}

.ox-hero-tape strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1rem;
}

@media (max-height: 860px) and (min-width: 1181px) {
  .home-v2 .ox-hero-v3 {
    min-height: calc(100vh - 72px);
    padding: 18px 0 20px;
  }

  .ox-hero-stage {
    min-height: min(640px, calc(100vh - 108px));
    grid-template-columns: 100px minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 12px 26px;
  }

  .ox-hero-main h1 {
    font-size: clamp(3rem, 5.15vw, 5.25rem);
  }

  .ox-hero-main .section-copy {
    margin-top: 14px;
    line-height: 1.55;
  }

  .ox-hero-actions {
    margin-top: 18px;
  }

  .ox-hero-figure img {
    max-width: min(78%, 450px);
    max-height: min(58vh, 430px);
  }

  .ox-hero-tape article {
    min-height: 62px;
    padding: 10px 14px;
  }
}

@media (max-width: 1180px) {
  .ox-hero-stage {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .ox-hero-stage::before,
  .ox-hero-stage::after {
    display: none;
  }

  .ox-hero-rail {
    grid-row: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 0 0 18px;
  }

  .ox-hero-rail strong {
    font-size: 3.8rem;
  }

  .ox-hero-tape {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ox-hero-main h1 {
    font-size: 3.1rem;
  }

  .ox-hero-figure img {
    max-width: 86%;
    max-height: 360px;
  }

  .ox-hero-figure figcaption {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

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

/* Hero-matched section redesign */
.home-v2 .ox-system,
.home-v2 .ox-cycles,
.home-v2 .ox-live,
.home-v2 .ox-wallet,
.home-v2 .ox-partners {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.012), transparent 26%, rgba(255,255,255,0.012)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 84px);
}

.home-v2 .ox-system::before,
.home-v2 .ox-cycles::before,
.home-v2 .ox-live::before,
.home-v2 .ox-wallet::before,
.home-v2 .ox-partners::before {
  content: "";
  position: absolute;
  left: max(24px, calc((100% - 1480px) / 2));
  top: 34px;
  bottom: 34px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(91,216,255,0.46), rgba(245,185,79,0.28), transparent);
  pointer-events: none;
}

.home-v2 .ox-section-line,
.home-v2 .ox-section-split,
.home-v2 .ox-partner-copy {
  position: relative;
}

.home-v2 .ox-section-line {
  padding-left: 38px;
  max-width: 980px;
}

.home-v2 .ox-section-split {
  padding-left: 38px;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.46fr);
}

.home-v2 .ox-section-line::before,
.home-v2 .ox-section-split::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(91,216,255,0.42);
  background: rgba(8, 12, 20, 0.8);
}

.home-v2 .section-kicker {
  color: #79e7f4;
}

.home-v2 .ox-system-layout,
.home-v2 .ox-live-layout,
.home-v2 .ox-wallet-grid,
.home-v2 .ox-partner-layout {
  padding-left: 38px;
}

.home-v2 .ox-system-media,
.home-v2 .ox-partner-visual {
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.home-v2 .ox-system-media::before,
.home-v2 .ox-partner-visual::before {
  content: "";
  position: absolute;
  inset: 8% 0 0 12%;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(120deg, rgba(91,216,255,0.06), transparent 44%, rgba(255,111,127,0.05)),
    rgba(8, 12, 20, 0.18);
  z-index: -1;
}

.home-v2 .ox-system-media img,
.home-v2 .ox-partner-visual img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  filter: hue-rotate(175deg) saturate(0.7) contrast(1.08) drop-shadow(0 30px 42px rgba(0,0,0,0.38));
}

.home-v2 .ox-system-media img {
  height: 100%;
}

.home-v2 .ox-media-caption {
  left: 0;
  right: auto;
  bottom: 18px;
  width: min(82%, 420px);
  border-radius: 0;
  border-width: 0 0 0 2px;
  border-left-color: rgba(245,185,79,0.5);
  background: linear-gradient(90deg, rgba(8,12,20,0.8), rgba(8,12,20,0.2));
}

.home-v2 .ox-system-stack {
  align-content: center;
}

.home-v2 .ox-system-stack article {
  position: relative;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
  border-width: 0 0 1px;
  border-color: rgba(255,255,255,0.1);
}

.home-v2 .ox-system-stack article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--ox-cyan), var(--ox-amber));
}

.home-v2 .ox-cycle-board {
  padding-left: 38px;
}

.home-v2 .ox-cycle {
  position: relative;
  border-radius: 0;
  border-width: 0 0 1px;
  background: transparent;
  padding: 10px 0;
}

.home-v2 .ox-cycle::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(91,216,255,0.34), rgba(255,255,255,0.08), transparent);
}

.home-v2 .ox-cycle-b,
.home-v2 .ox-cycle-c {
  margin-left: 0;
}

.home-v2 .ox-cycle-side,
.home-v2 .ox-cycle-main,
.home-v2 .ox-cycle-stats div {
  border-radius: 0;
  background: rgba(8, 12, 20, 0.22);
}

.home-v2 .ox-cycle-side {
  border-left: 2px solid rgba(91,216,255,0.48);
}

.home-v2 .ox-cycle-b .ox-cycle-side {
  border-left-color: rgba(245,185,79,0.58);
}

.home-v2 .ox-cycle-c .ox-cycle-side {
  border-left-color: rgba(255,111,127,0.58);
}

.home-v2 .ox-live-summary,
.home-v2 .ox-live-grid article,
.home-v2 .ox-kpi-strip article,
.home-v2 .ox-wallet-summary,
.home-v2 .ox-ledger,
.home-v2 .ox-partner-copy,
.home-v2 .ox-commission,
.home-v2 .ox-footer-grid {
  border-radius: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
    rgba(8, 12, 20, 0.28);
}

.home-v2 .ox-live-summary {
  border-left: 2px solid rgba(245,185,79,0.52);
}

.home-v2 .ox-live-summary::before {
  border-radius: 0;
}

.home-v2 .ox-live-grid article {
  border-width: 0 0 1px;
}

.home-v2 .ox-kpi-strip {
  padding-left: 38px;
}

.home-v2 .ox-kpi-strip article {
  border-width: 0 0 1px;
}

.home-v2 .ox-wallet-summary {
  border-left: 2px solid rgba(91,216,255,0.5);
}

.home-v2 .ox-wallet-summary div,
.home-v2 .ox-ledger-row,
.home-v2 .ox-partner-steps article,
.home-v2 .ox-commission article {
  border-radius: 0;
  background: rgba(255,255,255,0.035);
  border-width: 0 0 1px;
}

.home-v2 .ox-ledger {
  border-left: 2px solid rgba(255,111,127,0.46);
}

.home-v2 .ox-ledger-head {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.home-v2 .ox-partner-copy {
  border-left: 2px solid rgba(91,216,255,0.5);
}

.home-v2 .ox-partner-visual {
  position: relative;
}

.home-v2 .ox-commission {
  border-left: 2px solid rgba(245,185,79,0.52);
}

.home-v2 .ox-commission article:nth-child(1),
.home-v2 .ox-commission article:nth-child(2),
.home-v2 .ox-commission article:nth-child(3) {
  background: linear-gradient(90deg, rgba(255,255,255,0.045), transparent);
}

@media (max-height: 860px) and (min-width: 1181px) {
  .home-v2 .ox-section-line,
  .home-v2 .ox-section-split {
    margin-bottom: 14px;
  }

  .home-v2 .ox-system-layout,
  .home-v2 .ox-live-layout,
  .home-v2 .ox-wallet-grid,
  .home-v2 .ox-partner-layout,
  .home-v2 .ox-cycle-board,
  .home-v2 .ox-kpi-strip {
    padding-left: 30px;
  }

  .home-v2 .ox-system-stack article {
    padding: 14px;
  }
}

@media (max-width: 1180px) {
  .home-v2 .ox-system::before,
  .home-v2 .ox-cycles::before,
  .home-v2 .ox-live::before,
  .home-v2 .ox-wallet::before,
  .home-v2 .ox-partners::before {
    display: none;
  }

  .home-v2 .ox-section-line,
  .home-v2 .ox-section-split,
  .home-v2 .ox-system-layout,
  .home-v2 .ox-live-layout,
  .home-v2 .ox-wallet-grid,
  .home-v2 .ox-partner-layout,
  .home-v2 .ox-cycle-board,
  .home-v2 .ox-kpi-strip {
    padding-left: 0;
  }
}

/* Deep premium section layouts */
.home-v2 .dx-blueprint,
.home-v2 .dx-plan-lab,
.home-v2 .dx-terminal,
.home-v2 .dx-wallet,
.home-v2 .dx-network {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 42px 0;
  overflow: hidden;
}

.dx-section-heading > span,
.dx-plan-head span,
.dx-terminal-top span,
.dx-wallet-copy > span,
.dx-network-copy > span {
  display: block;
  margin-bottom: 12px;
  color: #78e7f5;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dx-section-heading h2,
.dx-plan-head h2,
.dx-terminal-top h2,
.dx-wallet-copy h2,
.dx-network-copy h2 {
  margin: 0;
  color: #f8fcff;
  font-size: clamp(1.9rem, 3.5vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.dx-section-heading p,
.dx-wallet-copy p,
.dx-network-copy p {
  margin: 16px 0 0;
  color: #9fb2c1;
  line-height: 1.7;
}

.dx-blueprint {
  background:
    radial-gradient(circle at 52% 45%, rgba(91,216,255,0.1), transparent 28%),
    repeating-linear-gradient(90deg, rgba(91,216,255,0.025) 0 1px, transparent 1px 62px),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 54px);
}

.dx-blueprint-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 0.84fr) minmax(340px, 0.82fr);
  gap: 28px;
  align-items: center;
}

.dx-orbit-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.dx-orbit-visual img {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 76%;
  max-height: 490px;
  object-fit: contain;
  filter: hue-rotate(175deg) saturate(0.7) drop-shadow(0 30px 44px rgba(0,0,0,0.44));
}

.dx-orbit-ring {
  position: absolute;
  border: 1px solid rgba(91,216,255,0.24);
  border-radius: 50%;
}

.ring-one {
  width: 78%;
  aspect-ratio: 1;
}

.ring-two {
  width: 54%;
  aspect-ratio: 1;
  border-color: rgba(245,185,79,0.22);
}

.dx-orbit-node {
  position: absolute;
  z-index: 3;
  min-width: 54px;
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(8, 12, 20, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.node-fx { left: 8%; top: 26%; }
.node-gold { right: 9%; top: 18%; color: #ffe0a0; }
.node-crypto { right: 12%; bottom: 20%; color: #91ecff; }

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

.dx-blueprint-list article {
  position: relative;
  padding: 18px 18px 18px 24px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(90deg, rgba(91,216,255,0.07), transparent 36%),
    rgba(8, 12, 20, 0.36);
}

.dx-blueprint-list article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  background: linear-gradient(180deg, #5bd8ff, #f5b94f);
}

.dx-blueprint-list span,
.dx-plan-panel > span,
.dx-price-module > span,
.dx-signal-grid span,
.dx-live-kpis span,
.dx-wallet-totals small,
.dx-lane-head span,
.dx-wallet-row span,
.dx-commission-stack span {
  display: block;
  color: #86a6b8;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dx-blueprint-list strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.2rem;
}

.dx-blueprint-list p {
  margin: 8px 0 0;
  color: #98aaba;
  line-height: 1.6;
}

.dx-plan-lab {
  background:
    radial-gradient(circle at 18% 42%, rgba(245,185,79,0.08), transparent 26%),
    linear-gradient(120deg, rgba(91,216,255,0.04), transparent 48%, rgba(255,111,127,0.05));
}

.dx-plan-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

.dx-plan-tabs {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(8, 12, 20, 0.36);
}

.dx-plan-tabs button {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  color: #b8c9d8;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.dx-plan-tabs button.is-active {
  color: #071016;
  background: linear-gradient(135deg, #5bd8ff, #f5b94f);
}

.dx-plan-stage {
  position: relative;
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(300px, 0.56fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.dx-plan-radar {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    radial-gradient(circle, transparent 0 22%, rgba(91,216,255,0.08) 23% 24%, transparent 25% 42%, rgba(245,185,79,0.08) 43% 44%, transparent 45%),
    rgba(8, 12, 20, 0.28);
  overflow: hidden;
}

.dx-plan-radar::after {
  content: "";
  width: 46%;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(91,216,255,0), #5bd8ff);
  animation: dx-sweep 5s linear infinite;
}

.dx-plan-radar span {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #5bd8ff;
  box-shadow: 0 0 22px rgba(91,216,255,0.7);
}

.dx-plan-radar span:nth-child(1) { left: 30%; top: 34%; }
.dx-plan-radar span:nth-child(2) { right: 27%; top: 48%; background: #f5b94f; }
.dx-plan-radar span:nth-child(3) { left: 48%; bottom: 26%; background: #ff6f7f; }

@keyframes dx-sweep {
  to { transform: rotate(360deg); }
}

.dx-plan-panel {
  display: none;
  align-content: center;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(135deg, rgba(91,216,255,0.08), transparent 48%, rgba(245,185,79,0.07)),
    rgba(8, 12, 20, 0.42);
}

.dx-plan-panel.is-active {
  display: grid;
}

.dx-plan-panel h3 {
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(2.6rem, 5.4vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.dx-plan-panel p {
  max-width: 58ch;
  margin: 0;
  color: #a9bac8;
  line-height: 1.7;
}

.dx-plan-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}

.dx-plan-metrics div {
  padding: 16px;
  background: rgba(8,12,20,0.72);
}

.dx-plan-metrics small {
  display: block;
  color: #86a6b8;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dx-plan-metrics strong {
  display: block;
  margin-top: 8px;
  color: #fff;
}

.dx-terminal {
  background:
    linear-gradient(180deg, rgba(6, 255, 190, 0.035), transparent 34%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 42px);
}

.dx-terminal-shell {
  padding: 20px;
  border: 1px solid rgba(91,216,255,0.14);
  background: rgba(4, 8, 13, 0.46);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025);
}

.dx-terminal-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dx-terminal-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(240px, 0.46fr) minmax(420px, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.dx-price-module,
.dx-candle-widget,
.dx-signal-grid article,
.dx-live-kpis article {
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.035);
}

.dx-price-module {
  padding: 22px;
  display: grid;
  align-content: space-between;
}

.dx-price-module > strong {
  display: block;
  margin-top: 12px;
  color: #ffe0a0;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.dx-price-module small {
  color: #94a7b6;
}

.dx-pressure {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.dx-pressure strong {
  display: block;
  margin-top: 8px;
  color: #fff;
}

.dx-candle-widget {
  min-height: 330px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 16px;
  padding: 28px 18px;
}

.dx-candle-widget span {
  width: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #5bd8ff, #42dcc8);
  box-shadow: 0 0 22px rgba(91,216,255,0.18);
}

.dx-candle-widget span:nth-child(1) { height: 34%; }
.dx-candle-widget span:nth-child(2) { height: 62%; background: linear-gradient(180deg, #ff6f7f, #f5b94f); }
.dx-candle-widget span:nth-child(3) { height: 48%; }
.dx-candle-widget span:nth-child(4) { height: 78%; }
.dx-candle-widget span:nth-child(5) { height: 56%; background: linear-gradient(180deg, #ff6f7f, #f5b94f); }
.dx-candle-widget span:nth-child(6) { height: 86%; }
.dx-candle-widget span:nth-child(7) { height: 70%; }

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

.dx-signal-grid article {
  min-height: 116px;
  padding: 14px;
}

.dx-signal-grid strong {
  display: block;
  margin-top: 8px;
  color: #fff;
}

.dx-signal-grid small {
  display: block;
  margin-top: 7px;
  color: #8fa2b2;
}

.dx-live-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.dx-live-kpis article {
  padding: 14px;
}

.dx-live-kpis strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.6rem;
}

.dx-wallet {
  background:
    radial-gradient(circle at 20% 60%, rgba(91,216,255,0.08), transparent 28%),
    radial-gradient(circle at 72% 40%, rgba(255,111,127,0.08), transparent 24%);
}

.dx-wallet-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.52fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.dx-wallet-copy {
  position: relative;
  padding: 24px 0 24px 28px;
  border-left: 2px solid rgba(91,216,255,0.5);
}

.dx-wallet-totals {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.dx-wallet-totals div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.035);
}

.dx-wallet-totals strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.55rem;
}

.dx-ledger-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(135deg, rgba(91,216,255,0.06), transparent 48%, rgba(255,111,127,0.06)),
    rgba(8, 12, 20, 0.36);
}

.dx-ledger-lane {
  display: grid;
  gap: 8px;
}

.dx-lane-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dx-lane-head strong {
  color: #fff;
}

.dx-wallet-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px auto;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
}

.dx-wallet-row.is-pulsing {
  border-color: rgba(91,216,255,0.36);
  background: rgba(91,216,255,0.08);
}

.dx-wallet-row span {
  color: #edf7ff;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dx-wallet-row img {
  max-width: 72px;
  height: 32px;
  object-fit: contain;
  justify-self: center;
}

.dx-wallet-row strong {
  color: #fff;
}

.dx-network {
  background:
    linear-gradient(120deg, rgba(159,140,255,0.06), transparent 44%, rgba(91,216,255,0.05)),
    repeating-radial-gradient(circle at center, rgba(255,255,255,0.025) 0 1px, transparent 1px 76px);
}

.dx-network-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr) minmax(420px, 0.94fr) minmax(260px, 0.46fr);
  gap: 24px;
  align-items: center;
}

.dx-network-copy {
  padding-left: 28px;
  border-left: 2px solid rgba(159,140,255,0.58);
}

.dx-network-map {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.dx-network-map::before,
.dx-network-map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
}

.dx-network-map::before {
  width: 84%;
  aspect-ratio: 1;
}

.dx-network-map::after {
  width: 56%;
  aspect-ratio: 1;
  border-color: rgba(91,216,255,0.18);
}

.dx-network-map img {
  position: relative;
  z-index: 2;
  width: min(72%, 430px);
  max-height: 360px;
  object-fit: contain;
  filter: hue-rotate(170deg) saturate(0.72) drop-shadow(0 30px 46px rgba(0,0,0,0.4));
}

.dx-map-node {
  position: absolute;
  z-index: 3;
  min-width: 74px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(8, 12, 20, 0.84);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.node-core { left: 50%; top: 50%; transform: translate(-50%, -50%); color: #ffe0a0; }
.node-l1 { right: 8%; top: 22%; }
.node-l2 { left: 10%; bottom: 28%; color: #91ecff; }
.node-l3 { right: 18%; bottom: 12%; color: #ffadb7; }

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

.dx-commission-stack article {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.035);
}

.dx-commission-stack strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 2rem;
}

.dx-commission-stack small {
  display: block;
  margin-top: 7px;
  color: #91a5b5;
}

[data-reveal-section] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal-section].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-height: 860px) and (min-width: 1181px) {
  .home-v2 .dx-blueprint,
  .home-v2 .dx-plan-lab,
  .home-v2 .dx-terminal,
  .home-v2 .dx-wallet,
  .home-v2 .dx-network {
    padding: 26px 0;
  }

  .dx-orbit-visual,
  .dx-network-map {
    min-height: 420px;
  }

  .dx-plan-stage {
    min-height: 390px;
  }

  .dx-plan-radar {
    min-height: 390px;
  }

  .dx-terminal-grid {
    grid-template-columns: minmax(280px, 0.58fr) minmax(180px, 0.34fr) minmax(390px, 1fr);
  }

  .dx-candle-widget {
    min-height: 270px;
  }
}

@media (max-width: 1180px) {
  .dx-blueprint-grid,
  .dx-plan-stage,
  .dx-terminal-grid,
  .dx-wallet-shell,
  .dx-network-grid {
    grid-template-columns: 1fr;
  }

  .dx-plan-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .dx-orbit-visual,
  .dx-network-map,
  .dx-plan-radar {
    min-height: 360px;
  }

  .dx-live-kpis,
  .dx-ledger-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .dx-plan-tabs,
  .dx-live-kpis,
  .dx-ledger-wall,
  .dx-plan-metrics,
  .dx-signal-grid {
    grid-template-columns: 1fr;
  }

  .dx-plan-tabs {
    display: grid;
    width: 100%;
  }

  .dx-wallet-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

/* AxisTrade final home concept */
.home-final {
  --pro-bg: #05070b;
  --pro-ink: #f5f7fb;
  --pro-muted: #9caabd;
  --pro-line: rgba(255,255,255,0.11);
  --pro-panel: rgba(10, 14, 22, 0.74);
  --pro-cyan: #67e8f9;
  --pro-lime: #b8ff70;
  --pro-amber: #ffc65a;
  --pro-red: #ff687f;
  color: var(--pro-ink);
  background:
    radial-gradient(circle at 20% 12%, rgba(103,232,249,0.16), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(255,104,127,0.12), transparent 22%),
    linear-gradient(140deg, #05070b, #0d111c 52%, #06080d);
}

.home-final .site-bg {
  opacity: 0;
}

.home-final .market-canvas {
  display: none;
  opacity: 0;
}

.home-final::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.12), transparent 36%),
    radial-gradient(ellipse at 18% 30%, rgba(103,232,249,0.09), transparent 24%),
    radial-gradient(ellipse at 92% 44%, rgba(255,104,127,0.08), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,0.026) 0 1px, transparent 1px 18px),
    linear-gradient(45deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #030508 0%, #090d14 48%, #050609 100%);
  background-size: auto, auto, auto, 18px 18px, 18px 18px, auto;
  pointer-events: none;
}

.home-final::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    repeating-radial-gradient(ellipse at 12% 18%, transparent 0 36px, rgba(103,232,249,0.035) 37px, transparent 38px 74px),
    repeating-radial-gradient(ellipse at 86% 70%, transparent 0 42px, rgba(255,198,90,0.03) 43px, transparent 44px 88px),
    linear-gradient(90deg, rgba(0,0,0,0.18), transparent 18%, transparent 82%, rgba(0,0,0,0.24)),
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 16%, transparent 78%, rgba(0,0,0,0.2));
  opacity: 0.58;
  filter: none;
  mask-image: radial-gradient(ellipse at center, #000 0%, #000 70%, transparent 96%);
  pointer-events: none;
}

.pro-container {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
}

.pro-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(5, 7, 11, 0.2);
  backdrop-filter: blur(8px);
}

.pro-nav-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
}

.pro-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.pro-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(103,232,249,0.22));
}

.pro-brand span {
  display: grid;
}

.pro-brand strong {
  line-height: 1;
  font-size: 1.32rem;
}

.pro-brand small {
  margin-top: 4px;
  color: var(--pro-muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pro-nav {
  justify-content: center;
  gap: 6px;
}

.pro-nav a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 0;
  color: #c7d2df;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.pro-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--pro-cyan), var(--pro-lime));
  opacity: 0;
  transform: scaleX(0.2);
  transition: 0.2s ease;
}

.pro-nav a:hover,
.pro-nav a.is-current {
  color: #fff;
}

.pro-nav a:hover::after,
.pro-nav a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.pro-nav-actions {
  display: flex;
  gap: 10px;
}

.pro-nav-actions a,
.pro-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--pro-line);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.pro-nav-actions a:last-child,
.pro-actions a:first-child {
  color: #061016;
  background: linear-gradient(135deg, var(--pro-cyan), var(--pro-lime) 58%, var(--pro-amber));
}

.home-final .mobile-toggle {
  justify-self: end;
}

.pro-hero,
.pro-system,
.pro-plans,
.pro-live,
.pro-why,
.pro-wallet,
.pro-partners {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 36px 0;
  overflow: hidden;
}

.pro-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.9fr);
  grid-template-rows: 1fr auto;
  gap: 24px 46px;
  align-items: center;
}

.pro-eyebrow,
.pro-section-title > span,
.pro-section-split span,
.pro-partner-copy > span {
  display: block;
  color: var(--pro-cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pro-hero h1,
.pro-section-title h2,
.pro-section-split h2,
.pro-partner-copy h2 {
  margin: 12px 0 0;
  max-width: 11ch;
  color: #fff;
  font-size: clamp(3rem, 5.8vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.pro-section-title h2,
.pro-section-split h2,
.pro-partner-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.pro-hero p,
.pro-section-title p,
.pro-partner-copy p {
  max-width: 58ch;
  margin: 20px 0 0;
  color: var(--pro-muted);
  line-height: 1.7;
}

.pro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pro-hero-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.pro-art-frame {
  position: relative;
  width: min(100%, 760px);
  height: 590px;
  display: grid;
  place-items: center;
}

.pro-art-frame::before,
.pro-art-frame::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,0.1);
}

.pro-art-frame::before {
  inset: 14% 4% 8% 14%;
}

.pro-art-frame::after {
  inset: 0 18% 20% 0;
  border-color: rgba(103,232,249,0.22);
}

.pro-art-frame img {
  position: relative;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: 96%;
  max-height: 104%;
  object-fit: contain;
  filter: hue-rotate(175deg) saturate(0.72) drop-shadow(0 36px 56px rgba(0,0,0,0.5));
}

.pro-art-stat {
  position: absolute;
  z-index: 3;
  min-width: 154px;
  padding: 14px;
  border-left: 2px solid var(--pro-cyan);
  background: rgba(5, 7, 11, 0.72);
  backdrop-filter: blur(10px);
}

.pro-art-stat span,
.pro-hero-ticker span,
.pro-layer-stack span,
.pro-tabs button,
.pro-plan-menu span,
.pro-plan-card > span,
.pro-plan-card small,
.pro-live-data span,
.pro-wallet-totals span,
.pro-ledger span,
.pro-commissions span {
  display: block;
  color: #8da3b8;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pro-art-stat strong {
  display: block;
  margin-top: 8px;
  color: #fff;
}

.stat-top { right: 2%; top: 16%; }
.stat-bottom { left: 4%; bottom: 14%; border-left-color: var(--pro-amber); }

.pro-hero-ticker {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--pro-line);
  background: var(--pro-line);
}

.pro-hero-ticker article {
  padding: 16px;
  background: rgba(5, 7, 11, 0.76);
}

.pro-hero-ticker strong {
  display: block;
  margin-top: 8px;
  color: #fff;
}

.pro-system-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(320px, 0.7fr) minmax(360px, 0.72fr);
  gap: 28px;
  align-items: center;
}

.pro-system-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.pro-system-visual::before {
  content: "";
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  border: 1px solid rgba(103,232,249,0.18);
  border-radius: 50%;
}

.pro-system-visual img {
  position: relative;
  z-index: 1;
  max-width: 78%;
  max-height: 500px;
  object-fit: contain;
  filter: hue-rotate(175deg) saturate(0.68) drop-shadow(0 28px 42px rgba(0,0,0,0.42));
}

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

.pro-layer-stack article,
.pro-plan-shell,
.pro-live-price,
.pro-live-chart,
.pro-live-data article,
.pro-ledger,
.pro-commissions article {
  border: 1px solid var(--pro-line);
  background: rgba(10, 14, 22, 0.54);
}

.pro-layer-stack article {
  padding: 20px;
  border-left: 2px solid var(--pro-cyan);
}

.pro-layer-stack strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.18rem;
}

.pro-layer-stack p {
  margin: 8px 0 0;
  color: var(--pro-muted);
  line-height: 1.6;
}

.pro-section-split {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.pro-tabs {
  display: flex;
  gap: 8px;
}

.pro-tabs button,
.pro-plan-menu button {
  border: 1px solid var(--pro-line);
  background: rgba(255,255,255,0.03);
  color: #cbd6e2;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.pro-tabs button {
  min-height: 42px;
  padding: 0 16px;
}

.pro-tabs button.is-active,
.pro-plan-menu button.is-active {
  color: #061016;
  background: linear-gradient(135deg, var(--pro-cyan), var(--pro-lime));
}

.pro-plan-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 470px;
}

.pro-plan-menu {
  display: grid;
  align-content: stretch;
  border-right: 1px solid var(--pro-line);
}

.pro-plan-menu button {
  display: grid;
  gap: 10px;
  padding: 22px;
  text-align: left;
  border-width: 0 0 1px;
}

.pro-plan-menu strong {
  color: inherit;
}

.pro-plan-card {
  display: none;
  align-content: center;
  padding: 42px;
}

.pro-plan-card.is-active {
  display: grid;
}

.pro-plan-card h3 {
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(2.5rem, 5.5vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.pro-plan-card p {
  max-width: 58ch;
  color: var(--pro-muted);
  line-height: 1.7;
}

.pro-plan-card div {
  display: grid;
  grid-template-columns: repeat(3, max-content 1fr);
  gap: 8px 14px;
  margin-top: 28px;
}

.pro-plan-card b {
  color: #fff;
  font-size: 1.35rem;
}

.pro-live-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(220px, 0.38fr) minmax(420px, 1fr);
  gap: 14px;
}

.pro-live-price {
  min-height: 430px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  border-left: 2px solid var(--pro-amber);
}

.pro-live-price > strong {
  color: #ffe0a0;
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.pro-live-price small {
  color: var(--pro-muted);
}

.pro-pressure {
  display: grid;
  gap: 10px;
}

.pro-pressure b {
  display: block;
  color: #fff;
}

.pro-pressure i {
  display: block;
  height: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.09);
}

.pro-pressure em {
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, var(--pro-cyan), var(--pro-amber));
}

.pro-live-chart {
  min-height: 430px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 12px;
  padding: 28px 18px;
}

.pro-live-chart span {
  width: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pro-cyan), var(--pro-lime));
}

.pro-live-chart span:nth-child(1) { height: 34%; }
.pro-live-chart span:nth-child(2) { height: 62%; background: linear-gradient(180deg, var(--pro-red), var(--pro-amber)); }
.pro-live-chart span:nth-child(3) { height: 46%; }
.pro-live-chart span:nth-child(4) { height: 82%; }
.pro-live-chart span:nth-child(5) { height: 58%; background: linear-gradient(180deg, var(--pro-red), var(--pro-amber)); }
.pro-live-chart span:nth-child(6) { height: 74%; }
.pro-live-chart span:nth-child(7) { height: 52%; }
.pro-live-chart span:nth-child(8) { height: 88%; }

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

.pro-live-data article {
  min-height: 102px;
  padding: 14px;
}

.pro-live-data strong {
  display: block;
  margin-top: 8px;
  color: #fff;
}

.pro-live-data small {
  display: block;
  margin-top: 6px;
  color: #8799aa;
}

.pro-wallet-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.pro-wallet-totals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.pro-wallet-totals article {
  padding: 16px;
  border: 1px solid var(--pro-line);
  background: rgba(255,255,255,0.035);
}

.pro-wallet-totals strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.45rem;
}

.pro-ledger {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px;
}

.pro-ledger h3 {
  margin: 0 0 14px;
  color: #fff;
}

.pro-ledger .dx-wallet-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px auto;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  margin: 0 0 8px;
  padding: 10px;
  border: 1px solid var(--pro-line);
  background: rgba(255,255,255,0.035);
}

.pro-ledger img {
  max-width: 64px;
  height: 30px;
  object-fit: contain;
}

.pro-partner-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(380px, 0.84fr) minmax(260px, 0.44fr);
  gap: 28px;
  align-items: center;
}

.pro-network-art {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.pro-network-art::before,
.pro-network-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
}

.pro-network-art::before {
  width: 84%;
  aspect-ratio: 1;
}

.pro-network-art::after {
  width: 56%;
  aspect-ratio: 1;
  border-color: rgba(103,232,249,0.2);
}

.pro-network-art img {
  position: relative;
  z-index: 1;
  max-width: 70%;
  max-height: 350px;
  object-fit: contain;
  filter: hue-rotate(175deg) saturate(0.7) drop-shadow(0 28px 42px rgba(0,0,0,0.42));
}

.pro-network-art b {
  position: absolute;
  z-index: 2;
  min-width: 66px;
  min-height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pro-line);
  background: rgba(5,7,11,0.78);
}

.pro-network-art b:nth-of-type(1) { left: 50%; top: 50%; transform: translate(-50%, -50%); color: var(--pro-amber); }
.pro-network-art b:nth-of-type(2) { right: 8%; top: 24%; color: var(--pro-cyan); }
.pro-network-art b:nth-of-type(3) { left: 10%; bottom: 28%; color: var(--pro-lime); }
.pro-network-art b:nth-of-type(4) { right: 18%; bottom: 12%; color: var(--pro-red); }

.pro-commissions {
  display: grid;
  gap: 10px;
}

.pro-commissions article {
  padding: 18px;
}

.pro-commissions strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 2rem;
}

.pro-commissions small {
  display: block;
  margin-top: 7px;
  color: var(--pro-muted);
}

/* Affiliate V2 commission board */
.home-final .affiliate-v2 {
  background:
    radial-gradient(circle at 28% 50%, rgba(183,255,84,0.08), transparent 28%),
    radial-gradient(circle at 72% 42%, rgba(103,232,249,0.08), transparent 30%);
}

.affiliate-v2-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(560px, 1fr) minmax(260px, 0.42fr);
  gap: 28px;
  align-items: center;
}

.affiliate-v2-copy h2 {
  max-width: 13ch;
  font-size: clamp(2.25rem, 3.8vw, 4.35rem);
}

.affiliate-v2-total {
  width: min(100%, 330px);
  margin-top: 24px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.affiliate-v2-total span,
.affiliate-v2-head span,
.affiliate-v2-tier span,
.affiliate-v2-side span {
  display: block;
  color: #8da3b8;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.affiliate-v2-total strong {
  display: block;
  margin-top: 8px;
  color: var(--pro-lime);
  font-size: clamp(3rem, 5.8vw, 5.5rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.affiliate-v2-total em {
  display: block;
  max-width: 28ch;
  margin-top: 10px;
  color: var(--pro-muted);
  font-style: normal;
  line-height: 1.55;
}

.affiliate-v2-board {
  position: relative;
  min-height: 430px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(0deg, rgba(255,255,255,0.018) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(135deg, rgba(14,24,31,0.82), rgba(6,8,12,0.66));
  overflow: hidden;
}

.affiliate-v2-board::before {
  content: "";
  position: absolute;
  inset: 18px 34px;
  border: 1px solid rgba(103,232,249,0.12);
  transform: skewX(-10deg);
  pointer-events: none;
}

.affiliate-v2-board::after {
  content: "";
  position: absolute;
  width: 62%;
  height: 2px;
  left: 14%;
  top: 50%;
  background: linear-gradient(90deg, transparent, rgba(103,232,249,0.72), transparent);
  animation: affiliate-scan 4.8s linear infinite;
  pointer-events: none;
}

.affiliate-v2-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.affiliate-v2-head strong {
  color: #fff;
  font-size: 0.95rem;
}

.affiliate-v2-lanes {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.affiliate-v2-tier {
  position: relative;
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06), transparent 72%),
    rgba(4,7,11,0.58);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 50%, calc(100% - 34px) 100%, 0 100%);
  overflow: hidden;
}

.affiliate-v2-tier::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--tier-fill, 68%);
  background: linear-gradient(90deg, var(--tier-color), transparent);
  opacity: 0.16;
}

.affiliate-v2-tier:nth-child(2) {
  margin-left: 58px;
  width: calc(100% - 58px);
}

.affiliate-v2-tier:nth-child(3) {
  margin-left: 112px;
  width: calc(100% - 112px);
}

.affiliate-v2-tier em {
  display: block;
  margin-top: 10px;
  color: var(--pro-muted);
  font-style: normal;
}

.affiliate-v2-tier strong {
  position: relative;
  color: #fff;
  font-size: clamp(3.4rem, 6.4vw, 6rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-shadow: 0 18px 34px rgba(0,0,0,0.35);
}

.affiliate-v2-tier i {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--tier-fill, 68%);
  height: 3px;
  background: var(--tier-color);
  box-shadow: 0 0 26px var(--tier-color);
}

.affiliate-v2-primary {
  --tier-color: rgba(183,255,84,0.92);
  --tier-fill: 100%;
}

.affiliate-v2-primary strong {
  color: var(--pro-lime);
}

.affiliate-v2-secondary {
  --tier-color: rgba(103,232,249,0.92);
  --tier-fill: 54%;
}

.affiliate-v2-secondary strong {
  color: var(--pro-cyan);
}

.affiliate-v2-tertiary {
  --tier-color: rgba(255,198,90,0.9);
  --tier-fill: 32%;
}

.affiliate-v2-tertiary strong {
  color: var(--pro-amber);
}

.affiliate-v2-side {
  display: grid;
  gap: 18px;
}

.affiliate-v2-side > div {
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.affiliate-v2-side strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.affiliate-v2-side small {
  display: block;
  margin-top: 12px;
  color: var(--pro-muted);
  line-height: 1.55;
}

.affiliate-v2-side ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.affiliate-v2-side li {
  display: grid;
  gap: 6px;
  padding-left: 16px;
  border-left: 2px solid rgba(103,232,249,0.44);
}

.affiliate-v2-side b {
  color: #fff;
  font-size: 0.96rem;
}

.affiliate-v2-side li span {
  color: var(--pro-muted);
  line-height: 1.45;
}

@keyframes affiliate-scan {
  0% {
    transform: translateX(-70%) rotate(-16deg);
    opacity: 0;
  }
  20%,
  78% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%) rotate(-16deg);
    opacity: 0;
  }
}

@media (max-height: 860px) and (min-width: 1181px) {
  .affiliate-v2-board {
    min-height: 374px;
    padding: 18px;
  }

  .affiliate-v2-lanes {
    gap: 10px;
    margin-top: 16px;
  }

  .affiliate-v2-tier {
    min-height: 82px;
  }

  .affiliate-v2-tier strong {
    font-size: clamp(3rem, 5.4vw, 5rem);
  }
}

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

  .affiliate-v2-board {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .affiliate-v2-tier,
  .affiliate-v2-tier:nth-child(2),
  .affiliate-v2-tier:nth-child(3) {
    width: 100%;
    margin-left: 0;
    grid-template-columns: 1fr;
    clip-path: none;
  }

  .affiliate-v2-tier strong {
    font-size: 4.4rem;
  }
}

.pro-footer {
  position: relative;
  padding: 46px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(90deg, rgba(103,232,249,0.12), transparent 22%, rgba(255,198,90,0.08) 82%, transparent),
    radial-gradient(circle at 14% 10%, rgba(103,232,249,0.13), transparent 30%),
    radial-gradient(circle at 84% 34%, rgba(183,255,84,0.08), transparent 26%),
    linear-gradient(180deg, rgba(8,13,18,0.96), rgba(2,4,7,0.99));
  overflow: hidden;
}

.pro-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(0deg, rgba(255,255,255,0.016) 1px, transparent 1px) 0 0 / 64px 64px;
  pointer-events: none;
}

.pro-footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1fr) minmax(280px, 0.62fr);
  gap: 28px;
  align-items: start;
}

.footer-email small,
.footer-contact-meta span {
  display: block;
  color: #8da3b8;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pro-footer-brand,
.pro-footer-menu,
.pro-footer-contact {
  min-height: 245px;
}

.pro-footer-brand p {
  max-width: 34ch;
  margin: 18px 0 0;
  color: var(--pro-muted);
  line-height: 1.65;
}

.footer-status-strip {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 10px;
  align-items: center;
  width: min(100%, 340px);
  margin-top: 28px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-status-strip b {
  color: #fff;
  font-size: 0.82rem;
}

.footer-status-strip i {
  height: 2px;
  background: linear-gradient(90deg, var(--pro-cyan), rgba(255,255,255,0.08));
}

.pro-footer a {
  color: #dbe6f0;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.pro-footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.08);
}

.pro-footer-links div {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 22px;
  background: rgba(5,7,11,0.52);
}

.pro-footer-contact {
  display: grid;
  gap: 14px;
}

.pro-footer-links span,
.pro-footer-contact > span {
  color: var(--pro-cyan);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pro-footer-links a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--pro-muted);
  font-size: 0.95rem;
}

.pro-footer-links a::after {
  content: ">";
  color: rgba(103,232,249,0.56);
}

.pro-footer-contact {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(135deg, rgba(103,232,249,0.12), transparent 44%, rgba(255,198,90,0.07)),
    rgba(5,7,11,0.54);
}

.footer-telegram {
  display: inline-flex;
  min-width: 230px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid rgba(103,232,249,0.26);
  background:
    linear-gradient(90deg, rgba(103,232,249,0.18), rgba(183,255,84,0.1));
  color: #fff !important;
  font-weight: 900;
}

.footer-telegram svg {
  width: 18px;
  height: 18px;
  fill: var(--pro-cyan);
}

.footer-email {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.035);
  color: var(--pro-muted);
  word-break: break-word;
}

.footer-email strong {
  color: #fff;
  font-size: 1rem;
}

.footer-contact-meta {
  display: grid;
  gap: 1px;
  margin-top: 4px;
  background: rgba(255,255,255,0.08);
}

.footer-contact-meta p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  background: rgba(5,7,11,0.5);
}

.footer-contact-meta b {
  color: #fff;
  font-size: 0.86rem;
}

.pro-footer p {
  margin: 0;
  color: var(--pro-muted);
  font-size: 0.86rem;
}

.pro-footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.pro-footer-bottom div {
  display: flex;
  gap: 16px;
}

.pro-footer-bottom a {
  color: var(--pro-muted);
  font-size: 0.86rem;
}

[data-reveal-section] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal-section].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-height: 860px) and (min-width: 1181px) {
  .pro-hero,
  .pro-system,
  .pro-plans,
  .pro-live,
  .pro-why,
  .pro-wallet,
  .pro-partners {
    padding: 24px 0;
  }

  .pro-hero h1 {
    font-size: clamp(3rem, 5vw, 5.15rem);
  }

  .pro-art-frame,
  .pro-system-visual,
  .pro-network-art {
    height: 430px;
    min-height: 430px;
  }

  .pro-live-price,
  .pro-live-chart {
    min-height: 350px;
  }
}

@media (max-width: 1180px) {
  .pro-nav,
  .pro-nav-actions {
    display: none;
  }

  .pro-nav.open {
    display: grid;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: rgba(5,7,11,0.96);
    border-bottom: 1px solid var(--pro-line);
  }

  .pro-nav-row {
    grid-template-columns: auto 1fr auto;
  }

  .pro-hero-grid,
  .pro-system-grid,
  .pro-live-grid,
  .pro-wallet-grid,
  .pro-partner-grid,
  .pro-footer-grid {
    grid-template-columns: 1fr;
  }

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

  .pro-plan-menu {
    border-right: 0;
    border-bottom: 1px solid var(--pro-line);
  }

  .pro-ledger,
  .pro-live-data {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .pro-container {
    width: min(100% - 28px, 1480px);
  }

  .pro-hero,
  .pro-system,
  .pro-plans,
  .pro-live,
  .pro-why,
  .pro-wallet,
  .pro-partners {
    min-height: auto;
    padding: 62px 0;
  }

  .pro-hero h1 {
    font-size: 3.1rem;
  }

  .pro-hero-ticker,
  .pro-tabs,
  .pro-wallet-totals,
  .pro-ledger,
  .pro-live-data {
    grid-template-columns: 1fr;
  }

  .pro-section-split {
    display: grid;
  }

  .pro-plan-card,
  .pro-live-price {
    padding: 24px;
  }

  .pro-footer {
    padding: 42px 0 24px;
  }

  .pro-footer-links {
    grid-template-columns: 1fr;
  }

  .pro-footer-brand,
  .pro-footer-menu,
  .pro-footer-contact {
    min-height: auto;
  }

  .footer-contact-meta p {
    align-items: flex-start;
    flex-direction: column;
  }

  .pro-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* AxisTrade inner page redesign */
.home-final > .site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.home-final > .site-shell > main,
.home-final > .site-shell > .login-page {
  flex: 1;
}

.login-page.home-final .site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.login-page.home-final main {
  flex: 1;
}

.login-page.home-final .login-section,
.login-page.home-final .info-section {
  position: relative;
  padding: 78px 0 92px;
  overflow: hidden;
}

.login-page.home-final .login-section::before,
.login-page.home-final .info-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px) 0 0 / 62px 62px,
    linear-gradient(0deg, rgba(255,255,255,0.016) 1px, transparent 1px) 0 0 / 62px 62px,
    radial-gradient(circle at 22% 26%, rgba(103,232,249,0.1), transparent 25%),
    radial-gradient(circle at 82% 42%, rgba(255,198,90,0.07), transparent 28%);
  pointer-events: none;
}

.login-page.home-final .login-section > .container,
.login-page.home-final .info-section > .container {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(480px, 0.92fr);
  gap: 44px;
  align-items: center;
}

.login-page.home-final .info-section > .container {
  align-items: start;
}

.login-page.home-final .section-head,
.login-page.home-final .section-head.center {
  max-width: 520px;
  margin: 0;
  text-align: left;
}

.login-page.home-final .section-kicker,
.login-page.home-final .card-kicker {
  color: var(--pro-cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.login-page.home-final .section-head h1,
.login-page.home-final .section-head h2 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.login-page.home-final .section-copy {
  max-width: 48ch;
  margin: 20px 0 0;
  color: var(--pro-muted);
  line-height: 1.75;
}

.login-page.home-final .section-head::after {
  content: "FX / Crypto / Gold";
  width: min(100%, 360px);
  min-height: 58px;
  display: flex;
  align-items: center;
  margin-top: 34px;
  padding: 0 18px;
  border-left: 2px solid var(--pro-cyan);
  background:
    linear-gradient(90deg, rgba(103,232,249,0.1), transparent),
    rgba(5,7,11,0.48);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.login-page.home-final .login-layout,
.login-page.home-final .login-layout-single {
  display: block;
  justify-items: stretch;
}

.login-page.home-final .login-panel,
.login-page.home-final .login-panel-wide,
.login-page.home-final .login-panel-narrow,
.login-page.home-final .support-panel,
.login-page.home-final .redirect-panel {
  width: 100%;
  max-width: none;
}

.login-page.home-final .login-panel {
  border-radius: 0;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(0deg, rgba(255,255,255,0.018) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(135deg, rgba(12,20,27,0.86), rgba(5,7,11,0.72));
  box-shadow: 0 32px 80px rgba(0,0,0,0.34);
}

.login-page.home-final .login-panel::before {
  background:
    linear-gradient(90deg, rgba(103,232,249,0.16), transparent 38%, rgba(255,198,90,0.1)),
    linear-gradient(180deg, rgba(255,255,255,0.05), transparent 26%);
  opacity: 0.52;
}

.login-page.home-final .login-panel-head {
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.login-page.home-final .login-panel-head h2 {
  color: #fff;
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.login-page.home-final .login-head-chip,
.login-page.home-final .faq-chip,
.login-page.home-final .rules-chip {
  border-radius: 0;
  border-color: rgba(103,232,249,0.22);
  background: rgba(103,232,249,0.08);
  color: var(--pro-cyan);
}

.login-page.home-final .login-form {
  gap: 18px;
}

.login-page.home-final .login-field input,
.login-page.home-final .login-field select,
.login-page.home-final .login-field textarea {
  border-radius: 0;
  min-height: 56px;
  color: #fff;
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.1);
}

.login-page.home-final .login-field textarea {
  min-height: 150px;
}

.login-page.home-final .login-field input:focus,
.login-page.home-final .login-field select:focus,
.login-page.home-final .login-field textarea:focus {
  border-color: rgba(103,232,249,0.5);
  box-shadow: 0 0 0 4px rgba(103,232,249,0.09);
}

.login-page.home-final .template-captcha {
  width: 100%;
  border-collapse: collapse;
}

.login-page.home-final .template-captcha:empty {
  display: none;
}

.login-page.home-final .template-captcha td {
  color: var(--pro-muted);
  padding: 8px 0;
}

.login-page.home-final .template-captcha input[type="text"],
.login-page.home-final .template-captcha .inpts {
  width: 100%;
  min-height: 46px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 0 16px;
  outline: none;
}

.login-page.home-final .login-field span,
.login-page.home-final .login-terminal-row span {
  color: #8da3b8;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.login-page.home-final .login-check,
.login-page.home-final .login-help {
  color: var(--pro-muted);
}

.login-page.home-final .login-check input {
  accent-color: var(--pro-cyan);
}

.login-page.home-final .login-terminal {
  gap: 1px;
  padding-top: 20px;
  border-top-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.08);
}

.login-page.home-final .login-terminal-row {
  min-height: 48px;
  padding: 12px 0;
  background: rgba(5,7,11,0.48);
  border-bottom: 0;
}

.login-page.home-final .login-terminal-row strong {
  color: #fff;
}

.login-page.home-final .btn,
.login-page.home-final .login-submit {
  border-radius: 0;
}

.login-page.home-final .support-lanes,
.login-page.home-final .auth-status-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.08);
}

.login-page.home-final .support-lane,
.login-page.home-final .auth-status-card {
  border-radius: 0;
  border: 0;
  background: rgba(5,7,11,0.52);
}

.login-page.home-final .support-lane-tag,
.login-page.home-final .auth-status-card span {
  color: var(--pro-cyan);
}

.login-page.home-final .support-routes {
  grid-template-columns: 1.05fr 1fr 0.9fr;
  gap: 12px;
  border: 0;
  background: transparent;
}

.login-page.home-final .support-routes .support-lane {
  position: relative;
  min-height: 132px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(255,255,255,0.11);
  background:
    linear-gradient(135deg, rgba(103,232,249,0.12), transparent 46%, rgba(255,198,90,0.06)),
    rgba(5,7,11,0.54);
  overflow: hidden;
}

.login-page.home-final .support-routes .support-lane::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--pro-cyan), var(--pro-lime));
}

.login-page.home-final .support-routes .support-lane::after {
  content: "";
  position: absolute;
  right: -22px;
  top: -30px;
  width: 88px;
  height: 170px;
  border-left: 1px solid rgba(103,232,249,0.18);
  transform: rotate(20deg);
}

.login-page.home-final .support-routes .support-lane strong {
  color: #fff;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.login-page.home-final .support-routes .support-lane p {
  max-width: 24ch;
  color: var(--pro-muted);
  line-height: 1.5;
}

.login-page.home-final .support-field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.login-page.home-final .auth-highlight {
  border-radius: 0;
  border-color: rgba(255,255,255,0.1);
  background:
    linear-gradient(90deg, rgba(103,232,249,0.12), transparent 55%, rgba(255,198,90,0.08)),
    rgba(5,7,11,0.48);
}

.login-page.home-final .info-section .section-head::after {
  content: "Desk Docs / Client Rules";
}

.login-page.home-final .faq-shell,
.login-page.home-final .rules-grid {
  display: grid;
  gap: 14px;
}

.login-page.home-final .faq-group,
.login-page.home-final .rules-card {
  border-radius: 0;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(135deg, rgba(103,232,249,0.06), transparent 46%, rgba(255,198,90,0.045)),
    rgba(7,11,17,0.66);
  box-shadow: none;
}

.login-page.home-final .faq-group:nth-child(even),
.login-page.home-final .rules-card:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(184,255,112,0.055), transparent 46%, rgba(103,232,249,0.045)),
    rgba(7,11,17,0.62);
}

.login-page.home-final .faq-grid {
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.08);
}

.login-page.home-final .faq-item {
  border-radius: 0;
  border: 0;
  background: rgba(5,7,11,0.5);
}

.login-page.home-final .faq-item summary {
  color: #fff;
}

.login-page.home-final .faq-item summary::after {
  color: var(--pro-cyan);
}

.login-page.home-final .faq-item p,
.login-page.home-final .rules-card ul {
  color: var(--pro-muted);
}

.login-page.home-final .rules-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.login-page.home-final .rules-card li::marker {
  color: var(--pro-cyan);
}

.login-page.home-final .redirect-loader {
  width: 132px;
  height: 132px;
}

.login-page.home-final .redirect-ring {
  border-top-color: var(--pro-cyan);
  border-right-color: var(--pro-amber);
}

.login-page.home-final .redirect-route {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) 90px auto minmax(120px, 1fr);
  gap: 14px;
  align-items: center;
  margin: 4px 0 20px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(90deg, rgba(103,232,249,0.1), transparent 42%, rgba(184,255,112,0.08)),
    rgba(5,7,11,0.46);
}

.login-page.home-final .redirect-route span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(103,232,249,0.28);
  color: var(--pro-cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.login-page.home-final .redirect-route strong {
  color: #fff;
  text-align: left;
}

.login-page.home-final .redirect-route i {
  height: 2px;
  background: linear-gradient(90deg, var(--pro-cyan), var(--pro-lime), var(--pro-amber));
  box-shadow: 0 0 22px rgba(103,232,249,0.28);
}

.login-page.home-final .redirect-wait {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--pro-muted);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-page.home-final .redirect-wait span {
  width: 8px;
  height: 8px;
  background: var(--pro-cyan);
  box-shadow: 0 0 18px rgba(103,232,249,0.5);
  animation: redirect-wait-pulse 1s ease-in-out infinite;
}

.login-page.home-final .redirect-wait span:nth-child(2) {
  animation-delay: 0.16s;
}

.login-page.home-final .redirect-wait span:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes redirect-wait-pulse {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

.login-page.home-final .redirect-progress {
  border-radius: 0;
}

.login-page.home-final .redirect-progress span {
  background: linear-gradient(90deg, var(--pro-cyan), var(--pro-lime), var(--pro-amber));
}

@media (max-width: 1180px) {
  .login-page.home-final .login-section > .container,
  .login-page.home-final .info-section > .container {
    grid-template-columns: 1fr;
  }

  .login-page.home-final .section-head,
  .login-page.home-final .section-head.center {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .login-page.home-final .login-section,
  .login-page.home-final .info-section {
    padding: 54px 0 64px;
  }

  .login-page.home-final .login-section > .container,
  .login-page.home-final .info-section > .container {
    width: min(100% - 28px, 1480px);
    gap: 28px;
  }

  .login-page.home-final .section-head h1,
  .login-page.home-final .section-head h2 {
    font-size: 3rem;
  }

  .login-page.home-final .login-panel {
    padding: 22px;
  }

  .login-page.home-final .login-form-grid,
  .login-page.home-final .support-lanes,
  .login-page.home-final .support-routes,
  .login-page.home-final .auth-status-grid,
  .login-page.home-final .rules-grid {
    grid-template-columns: 1fr;
  }

  .login-page.home-final .login-meta,
  .login-page.home-final .login-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .login-page.home-final .redirect-route {
    grid-template-columns: auto 1fr;
  }

  .login-page.home-final .redirect-route i {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* System section V2 */
.home-final .system-v2 {
  background:
    radial-gradient(circle at 76% 36%, rgba(103,232,249,0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent 34%, rgba(255,255,255,0.012));
}

.system-v2-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(420px, 0.88fr) minmax(330px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}

.system-v2-left {
  display: grid;
  align-content: center;
  min-height: 520px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(135deg, rgba(103,232,249,0.055), transparent 46%, rgba(255,198,90,0.04)),
    rgba(10,14,22,0.38);
}

.system-v2-left h2 {
  margin: 12px 0 0;
  max-width: 14ch;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.system-v2-left p {
  max-width: 42ch;
  margin: 18px 0 0;
  color: var(--pro-muted);
  line-height: 1.7;
}

.system-v2-left .pro-eyebrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(103,232,249,0.28);
  color: var(--pro-cyan);
  background: rgba(103,232,249,0.045);
}

.system-v2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.system-v2-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.09);
  color: #dce7ef;
  background: rgba(255,255,255,0.035);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.system-v2-mini article {
  position: relative;
  min-height: 104px;
  display: grid;
  align-content: end;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)),
    rgba(5,7,11,0.34);
  overflow: hidden;
}

.system-v2-mini article::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 22px;
  height: 34px;
  background:
    linear-gradient(135deg, transparent 7%, rgba(103,232,249,0.55) 8% 10%, transparent 11% 30%, rgba(184,255,112,0.45) 31% 33%, transparent 34% 58%, rgba(255,198,90,0.52) 59% 61%, transparent 62%);
  opacity: 0.8;
}

.system-v2-mini span {
  color: #8da3b8;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.system-v2-mini strong {
  margin-top: 6px;
  color: #fff;
}

.system-v2-mini b {
  margin-top: 5px;
  font-size: 0.72rem;
  color: var(--pro-lime);
}

.system-v2-mini b.hot {
  color: var(--pro-amber);
}

.system-v2-console {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018)),
    rgba(10,14,22,0.46);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 24px 70px rgba(0,0,0,0.18);
  overflow: hidden;
}

.system-v2-console::before {
  content: "";
  position: absolute;
  inset: 58px 20px 104px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

.system-v2-radar {
  position: absolute;
  right: 28px;
  top: 76px;
  width: 146px;
  aspect-ratio: 1;
  border: 1px solid rgba(103,232,249,0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(103,232,249,0.12) 0 2px, transparent 3px),
    radial-gradient(circle, transparent 0 32%, rgba(103,232,249,0.12) 33% 34%, transparent 35% 62%, rgba(255,255,255,0.08) 63% 64%, transparent 65%);
  overflow: hidden;
}

.radar-sweep {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(103,232,249,0), rgba(103,232,249,0.95));
  animation: system-radar-spin 3.8s linear infinite;
}

.pulse-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pro-cyan);
  box-shadow: 0 0 0 0 rgba(103,232,249,0.52);
  animation: system-dot-pulse 1.8s ease-out infinite;
}

.dot-fx { left: 32%; top: 34%; }
.dot-xau { right: 25%; top: 48%; background: var(--pro-amber); animation-delay: 0.35s; }
.dot-btc { left: 48%; bottom: 24%; background: var(--pro-lime); animation-delay: 0.7s; }

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

@keyframes system-dot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(103,232,249,0.42); transform: scale(0.92); }
  70% { box-shadow: 0 0 0 16px rgba(103,232,249,0); transform: scale(1); }
  100% { box-shadow: 0 0 0 0 rgba(103,232,249,0); transform: scale(0.92); }
}

.system-v2-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.system-v2-head span,
.system-v2-readout span,
.system-v2-timeline article > span {
  color: #8da3b8;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.system-v2-head strong {
  color: #fff;
}

.system-v2-bars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 22px;
  padding: 30px 0;
}

.system-v2-bars span {
  width: 30px;
  height: var(--h);
  min-height: 96px;
  background: linear-gradient(180deg, #89f1ff, rgba(103,232,249,0.08));
  box-shadow: 0 0 28px rgba(103,232,249,0.16);
  animation: system-bar-float 2.8s ease-in-out infinite;
}

.system-v2-bars span:nth-child(even) {
  background: linear-gradient(180deg, var(--pro-amber), rgba(255,198,90,0.08));
}

.system-v2-bars span:nth-child(2) { animation-delay: 0.15s; }
.system-v2-bars span:nth-child(3) { animation-delay: 0.3s; }
.system-v2-bars span:nth-child(4) { animation-delay: 0.45s; }
.system-v2-bars span:nth-child(5) { animation-delay: 0.6s; }
.system-v2-bars span:nth-child(6) { animation-delay: 0.75s; }

@keyframes system-bar-float {
  0%, 100% { transform: scaleY(0.92); filter: brightness(0.92); }
  50% { transform: scaleY(1.06); filter: brightness(1.2); }
}

.system-v2-readout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}

.system-v2-readout article {
  padding: 14px;
  background: rgba(5,7,11,0.72);
}

.system-v2-readout strong {
  display: block;
  margin-top: 8px;
  color: #fff;
}

.system-v2-timeline {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 520px;
}

.system-v2-timeline article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  min-height: 156px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.048), rgba(255,255,255,0.02)),
    rgba(10,14,22,0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.system-v2-timeline article.is-active {
  transform: translateX(-8px);
  border-color: rgba(103,232,249,0.32);
  background:
    linear-gradient(90deg, rgba(103,232,249,0.11), rgba(255,255,255,0.026)),
    rgba(10,14,22,0.5);
}

.system-v2-timeline article.is-active > span {
  color: #061016;
  background: linear-gradient(135deg, var(--pro-cyan), var(--pro-lime));
}

.system-v2-timeline article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(103,232,249,0.28);
  color: var(--pro-cyan);
}

.system-v2-timeline strong {
  color: #fff;
  font-size: 1.08rem;
}

.system-v2-timeline p {
  margin: 8px 0 0;
  color: var(--pro-muted);
  line-height: 1.58;
}

.trade-spark {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 28px;
  margin-top: 12px;
}

.trade-spark i {
  width: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pro-cyan), rgba(103,232,249,0.12));
}

.trade-spark i:nth-child(1) { height: 10px; }
.trade-spark i:nth-child(2) { height: 20px; background: linear-gradient(180deg, var(--pro-amber), rgba(255,198,90,0.12)); }
.trade-spark i:nth-child(3) { height: 15px; }
.trade-spark i:nth-child(4) { height: 26px; background: linear-gradient(180deg, var(--pro-lime), rgba(184,255,112,0.12)); }

.trade-pairs {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(103,232,249,0.18);
  color: #c9d8e4;
  background: rgba(103,232,249,0.045);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.trade-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 12px;
}

.trade-flow i {
  height: 7px;
  background: rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}

.trade-flow i::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--pro-cyan), var(--pro-amber));
  animation: trade-flow-fill 2.4s ease-in-out infinite;
}

.trade-flow i:nth-child(2)::before { animation-delay: 0.3s; }
.trade-flow i:nth-child(3)::before { animation-delay: 0.6s; }

@keyframes trade-flow-fill {
  0%, 100% { transform: translateX(-82%); }
  50% { transform: translateX(0); }
}

@media (max-height: 860px) and (min-width: 1181px) {
  .system-v2-console {
    min-height: 420px;
  }

  .system-v2-bars span {
    min-height: 72px;
  }

  .system-v2-timeline article {
    padding: 14px;
  }
}

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

  .system-v2-console {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .system-v2-readout {
    grid-template-columns: 1fr;
  }
}

/* Plans section V2 */
.home-final .plans-v2 {
  background:
    radial-gradient(circle at 18% 44%, rgba(255,198,90,0.07), transparent 26%),
    radial-gradient(circle at 80% 52%, rgba(103,232,249,0.07), transparent 26%);
}

.plans-v2-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

.plans-v2-head h2 {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.plans-v2-head p {
  max-width: 44ch;
  margin: 12px 0 0;
  color: var(--pro-muted);
  line-height: 1.6;
}

.plans-v2-tabs {
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(10,14,22,0.42);
}

.plans-v2-shell {
  grid-template-columns: 240px minmax(0, 1fr) 260px;
  min-height: 520px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(0deg, rgba(255,255,255,0.02) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)),
    rgba(10,14,22,0.48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045), 0 28px 80px rgba(0,0,0,0.16);
}

.plans-v2-shell .pro-plan-menu {
  border-right: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(103,232,249,0.045), transparent),
    rgba(5,7,11,0.32);
}

.plans-v2-shell .pro-plan-menu button {
  min-height: 33.333%;
  position: relative;
  overflow: hidden;
}

.plans-v2-shell .pro-plan-menu button::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 28px;
  opacity: 0.38;
  background:
    linear-gradient(135deg, transparent 6%, rgba(103,232,249,0.8) 7% 9%, transparent 10% 30%, rgba(255,198,90,0.75) 31% 33%, transparent 34% 58%, rgba(184,255,112,0.65) 59% 61%, transparent 62%);
}

.plans-v2-shell .pro-plan-menu button::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: transparent;
}

.plans-v2-shell .pro-plan-menu button.is-active::after {
  background: linear-gradient(180deg, var(--pro-cyan), var(--pro-lime));
}

.plans-v2-shell .pro-plan-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: 22px;
}

.plans-v2-shell .pro-plan-card::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(103,232,249,0.14);
  border-radius: 50%;
  opacity: 0.75;
}

.plans-v2-shell .pro-plan-card::after {
  content: "20D";
  position: absolute;
  right: 34px;
  top: 30px;
  color: rgba(255,255,255,0.05);
  font-size: 7rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.plans-v2-shell .pro-plan-card > * {
  position: relative;
  z-index: 1;
}

.plans-v2-shell .pro-plan-card h3 {
  max-width: 8.8ch;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
}

.plans-v2-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.plans-v2-chips li {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(103,232,249,0.18);
  background: rgba(103,232,249,0.045);
  color: #cfe7ef;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.plans-v2-visual {
  display: flex;
  align-items: end;
  gap: 10px;
  width: 100%;
  height: 132px;
  margin-top: 0;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(5,7,11,0.34);
}

.plans-v2-rules {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 14px;
  width: min(100%, 420px);
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(5,7,11,0.28);
}

.plans-v2-rules span {
  color: #8da3b8;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plans-v2-rules strong {
  color: #fff;
  font-size: 0.92rem;
}

.plans-v2-shell .pro-plan-card > div:last-child {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.09);
}

.plans-v2-visual i {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--pro-cyan), rgba(103,232,249,0.08));
  animation: plan-bars 2.8s ease-in-out infinite;
}

.plans-v2-visual i:nth-child(even) {
  background: linear-gradient(180deg, var(--pro-amber), rgba(255,198,90,0.08));
  animation-delay: 0.22s;
}

.plans-v2-visual i:nth-child(3) {
  animation-delay: 0.44s;
}

@keyframes plan-bars {
  0%, 100% { transform: scaleY(0.88); opacity: 0.8; }
  50% { transform: scaleY(1.08); opacity: 1; }
}

.plans-v2-meter {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 22px;
  border-left: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(circle at center, rgba(103,232,249,0.08), transparent 46%),
    rgba(5,7,11,0.26);
}

.plans-v2-meter::before {
  content: "";
  width: 100%;
  height: 42px;
  margin-bottom: 18px;
  background:
    linear-gradient(90deg, rgba(103,232,249,0.8), transparent 16% 22%, rgba(184,255,112,0.72) 28%, transparent 34% 42%, rgba(255,198,90,0.78) 52%, transparent 60% 68%, rgba(255,104,127,0.68) 74%, transparent 82%);
  opacity: 0.42;
}

.plans-v2-meter > span {
  color: #8da3b8;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.plans-v2-meter > strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.2rem;
}

.plans-meter-ring {
  position: relative;
  width: 158px;
  aspect-ratio: 1;
  margin: 30px 0;
  border-radius: 50%;
  background:
    conic-gradient(from 220deg, var(--pro-cyan), var(--pro-lime), var(--pro-amber), var(--pro-red), rgba(255,255,255,0.08) 78%);
}

.plans-meter-ring::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: #080b10;
}

.plans-meter-ring i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 64px;
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(38deg);
  background: #fff;
  animation: meter-needle 3s ease-in-out infinite;
}

@keyframes meter-needle {
  0%, 100% { transform: translate(-50%, -100%) rotate(22deg); }
  50% { transform: translate(-50%, -100%) rotate(58deg); }
}

.plans-v2-meter ul {
  width: 100%;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plans-v2-meter li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.plans-v2-meter b {
  color: #fff;
}

.plans-v2-meter em {
  color: var(--pro-muted);
  font-style: normal;
}

@media (max-height: 860px) and (min-width: 1181px) {
  .plans-v2-shell {
    min-height: 430px;
  }

  .plans-v2-visual {
    height: 72px;
    margin-top: 18px;
  }

  .plans-meter-ring {
    width: 128px;
    margin: 20px 0;
  }
}

@media (max-width: 1180px) {
  .plans-v2-head {
    display: grid;
  }

  .plans-v2-shell {
    grid-template-columns: 1fr;
  }

  .plans-v2-meter {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
}

/* Plans V3 comparison layout */
.plans-v3-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plans-v3-card {
  position: relative;
  min-height: 500px;
  display: grid;
  grid-template-rows: auto auto auto auto auto 1fr;
  align-content: start;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.11);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(0deg, rgba(255,255,255,0.018) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.014)),
    rgba(10,14,22,0.48);
  overflow: hidden;
}

.plans-v3-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--pro-cyan), var(--pro-lime));
}

.plans-v3-card:nth-child(2)::before {
  background: linear-gradient(180deg, var(--pro-amber), var(--pro-cyan));
}

.plans-v3-card:nth-child(3)::before {
  background: linear-gradient(180deg, var(--pro-red), var(--pro-amber));
}

.plans-v3-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.plans-v3-card > * {
  position: relative;
  z-index: 1;
}

.plans-v3-card > span {
  color: #8da3b8;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.plans-v3-card h3 {
  max-width: 8.4ch;
  margin: 10px 0 10px;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.plans-v3-card p {
  min-height: 72px;
  margin: 0;
  color: var(--pro-muted);
  line-height: 1.58;
}

.plans-v3-card .plans-v2-chips {
  margin-top: 16px;
}

.plans-v3-card .plans-v2-visual {
  height: 86px;
  margin-top: 14px;
}

.plans-v3-card .plans-v2-rules {
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 14px;
  padding: 12px;
}

.plans-v3-card .plans-v2-rules strong {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.plans-v3-card .plans-v2-rules strong:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.plans-v3-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  align-self: end;
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.09);
}

.plans-v3-metrics b,
.plans-v3-metrics small {
  display: block;
  padding: 8px 9px;
  background: rgba(5,7,11,0.62);
}

.plans-v3-metrics b {
  color: #fff;
  font-size: 1rem;
}

.plans-v3-metrics small {
  color: #8da3b8;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plans-v3-card.is-featured {
  background:
    radial-gradient(circle at top right, rgba(103,232,249,0.12), transparent 32%),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(0deg, rgba(255,255,255,0.018) 1px, transparent 1px) 0 0 / 46px 46px,
    rgba(10,14,22,0.54);
}

@media (max-height: 860px) and (min-width: 1181px) {
  .plans-v3-card {
    min-height: 430px;
    padding: 16px;
  }

  .plans-v3-card p {
    min-height: 54px;
    font-size: 0.92rem;
  }

  .plans-v3-card .plans-v2-visual {
    height: 66px;
  }

  .plans-v3-card .plans-v2-rules {
    margin-top: 10px;
    padding: 10px;
  }
}

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

/* Plans V4 route board */
.plans-v4-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 18px;
  align-items: stretch;
}

.plans-v4-routes {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(0deg, rgba(255,255,255,0.018) 1px, transparent 1px) 0 0 / 64px 64px,
    rgba(8,12,20,0.42);
}

.plans-v4-routes::before {
  content: "";
  position: absolute;
  left: 44px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(180deg, var(--pro-cyan), var(--pro-amber), var(--pro-red));
  opacity: 0.55;
}

.plan-route {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px minmax(220px, 0.72fr) minmax(150px, 0.34fr) minmax(220px, 0.48fr);
  gap: 16px;
  align-items: center;
  min-height: 136px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(90deg, rgba(103,232,249,0.08), rgba(255,255,255,0.018) 42%, rgba(255,255,255,0.035)),
    rgba(10,14,22,0.72);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 50%, calc(100% - 34px) 100%, 0 100%);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.plan-route:nth-child(2) {
  width: 94%;
  margin-left: 42px;
  background:
    linear-gradient(90deg, rgba(255,198,90,0.08), rgba(255,255,255,0.018) 42%, rgba(255,255,255,0.035)),
    rgba(10,14,22,0.72);
}

.plan-route:nth-child(3) {
  width: 88%;
  margin-left: 84px;
  background:
    linear-gradient(90deg, rgba(255,104,127,0.08), rgba(255,255,255,0.018) 42%, rgba(255,255,255,0.035)),
    rgba(10,14,22,0.72);
}

.plan-route.is-featured {
  transform: translateX(10px);
  border-color: rgba(103,232,249,0.32);
}

.route-no {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(103,232,249,0.32);
  color: var(--pro-cyan);
  background: rgba(5,7,11,0.7);
  font-weight: 900;
}

.route-main span,
.plans-v4-side > span,
.allocation-table span,
.route-stats em {
  display: block;
  color: #8da3b8;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: normal;
}

.route-main strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.route-main small {
  display: block;
  margin-top: 8px;
  color: #a7b6c4;
}

.route-wave {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 74px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(5,7,11,0.28);
}

.route-wave i {
  flex: 1;
  height: 35%;
  background: linear-gradient(180deg, var(--pro-cyan), rgba(103,232,249,0.08));
  animation: plan-bars 2.4s ease-in-out infinite;
}

.route-wave i:nth-child(2) { height: 72%; background: linear-gradient(180deg, var(--pro-amber), rgba(255,198,90,0.08)); animation-delay: 0.2s; }
.route-wave i:nth-child(3) { height: 50%; animation-delay: 0.4s; }
.route-wave i:nth-child(4) { height: 88%; background: linear-gradient(180deg, var(--pro-lime), rgba(184,255,112,0.08)); animation-delay: 0.6s; }

.route-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.09);
}

.route-stats b,
.route-stats em {
  display: block;
  padding: 8px;
  background: rgba(5,7,11,0.62);
}

.route-stats b {
  color: #fff;
  font-size: 0.96rem;
}

.plans-v4-side {
  display: grid;
  align-content: space-between;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(circle at center, rgba(103,232,249,0.08), transparent 48%),
    rgba(10,14,22,0.5);
}

.allocation-orbit {
  position: relative;
  width: min(100%, 220px);
  aspect-ratio: 1;
  margin: 20px auto;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
}

.allocation-orbit::before,
.allocation-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(103,232,249,0.16);
  border-radius: 50%;
}

.allocation-orbit::before { inset: 24px; }
.allocation-orbit::after { inset: 58px; border-color: rgba(255,198,90,0.18); }

.allocation-orbit b {
  position: absolute;
  min-width: 54px;
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(5,7,11,0.78);
  color: #fff;
  font-size: 0.78rem;
}

.allocation-orbit b:nth-child(1) { left: 50%; top: 8px; transform: translateX(-50%); color: var(--pro-cyan); }
.allocation-orbit b:nth-child(2) { right: 6px; bottom: 44px; color: var(--pro-amber); }
.allocation-orbit b:nth-child(3) { left: 10px; bottom: 44px; color: var(--pro-lime); }

.allocation-table {
  display: grid;
  gap: 8px;
}

.allocation-table p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.allocation-table strong {
  color: #fff;
}

@media (max-height: 860px) and (min-width: 1181px) {
  .plan-route {
    min-height: 112px;
  }

  .route-wave {
    height: 54px;
  }
}

@media (max-width: 1180px) {
  .plans-v4-board {
    grid-template-columns: 1fr;
  }

  .plan-route,
  .plan-route:nth-child(2),
  .plan-route:nth-child(3) {
    width: 100%;
    margin-left: 0;
    clip-path: none;
    grid-template-columns: 58px 1fr;
  }

  .route-wave,
  .route-stats {
    grid-column: 1 / -1;
  }
}

/* Why Choose Us section */
.home-final .why-v1 {
  background:
    radial-gradient(circle at 28% 54%, rgba(184,255,112,0.07), transparent 28%),
    radial-gradient(circle at 78% 32%, rgba(103,232,249,0.08), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.012), transparent 40%, rgba(255,255,255,0.015));
}

.why-v1-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(360px, 0.74fr) minmax(420px, 0.76fr);
  gap: 34px;
  align-items: stretch;
}

.why-v1-copy {
  display: grid;
  align-content: center;
  padding: 0 24px 0 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.why-v1-copy .pro-eyebrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184,255,112,0.28);
  color: var(--pro-lime);
}

.why-v1-copy h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.why-v1-copy p {
  margin: 18px 0 0;
  color: var(--pro-muted);
  line-height: 1.7;
}

.why-v1-core {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 0;
  overflow: hidden;
}

.why-orbit {
  position: absolute;
  inset: auto;
  width: min(100%, 420px);
  height: 420px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.why-orbit::before,
.why-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(103,232,249,0.16);
  border-radius: 50%;
}

.why-orbit::before {
  inset: 38px;
}

.why-orbit::after {
  inset: 82px;
  border-color: rgba(255,198,90,0.16);
}

.why-orbit span {
  position: absolute;
  z-index: 2;
  min-width: 56px;
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(5,7,11,0.76);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.why-orbit span:nth-child(1) { left: 50%; top: -18px; transform: translateX(-50%); color: var(--pro-cyan); }
.why-orbit span:nth-child(2) { right: 6px; bottom: 66px; color: var(--pro-amber); }
.why-orbit span:nth-child(3) { left: 4px; bottom: 66px; color: var(--pro-lime); }

.why-orbit i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, var(--pro-cyan));
  animation: system-radar-spin 4.4s linear infinite;
}

.why-v1-list p > span {
  color: #8da3b8;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.why-v1-list strong {
  display: block;
  margin-top: 0;
  color: #fff;
  font-size: 1.18rem;
}

.why-v1-list em {
  display: block;
  margin-top: 7px;
  color: var(--pro-muted);
  font-style: normal;
  line-height: 1.58;
}

.why-v1-list {
  display: grid;
  gap: 0;
  align-content: center;
}

.why-v1-list p {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.why-v1-list p:last-child {
  border-bottom: 0;
}

.why-v1-list p > span {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-left: 2px solid rgba(103,232,249,0.6);
  color: var(--pro-cyan);
  background: transparent;
}

.why-v1-list strong,
.why-v1-list em {
  grid-column: 2;
  min-width: 0;
}

@media (max-height: 860px) and (min-width: 1181px) {
  .why-v1-core {
    min-height: 420px;
  }

  .why-orbit {
    width: 320px;
    height: 320px;
  }

  .why-v1-list p {
    padding: 16px 0;
  }
}

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

/* Wallet section V2 */
.home-final .wallet-v2 {
  background:
    radial-gradient(circle at 48% 48%, rgba(103,232,249,0.08), transparent 30%),
    radial-gradient(circle at 84% 40%, rgba(255,198,90,0.06), transparent 26%);
}

.wallet-v2-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(300px, 0.52fr) minmax(460px, 0.9fr);
  gap: 24px;
  align-items: center;
}

.wallet-v2-copy {
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.wallet-v2-copy .pro-eyebrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(103,232,249,0.26);
}

.wallet-v2-copy h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(2rem, 3.3vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.wallet-v2-copy p {
  margin: 18px 0 0;
  color: var(--pro-muted);
  line-height: 1.7;
}

.wallet-v2-balance {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.wallet-v2-balance div {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.wallet-v2-balance span {
  display: block;
  color: #8da3b8;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.wallet-v2-balance strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.5rem;
}

/* Wallet V3 two-tape layout */
.wallet-v2-grid {
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.wallet-v2-copy {
  display: grid;
  align-content: center;
}

.wallet-v3-board {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 150px minmax(280px, 1fr);
  grid-template-rows: 1fr auto;
  gap: 14px;
  align-items: stretch;
  min-height: 520px;
}

.wallet-v3-column {
  display: grid;
  align-content: center;
  padding: 20px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(0deg, rgba(255,255,255,0.018) 1px, transparent 1px) 0 0 / 52px 52px,
    rgba(10,14,22,0.42);
}

.wallet-v3-column.deposits {
  border-left: 2px solid rgba(103,232,249,0.6);
}

.wallet-v3-column.withdrawals {
  border-left: 2px solid rgba(255,198,90,0.6);
}

.wallet-v3-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.wallet-v3-head span,
.wallet-v3-spread span {
  color: #8da3b8;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.wallet-v3-head strong {
  color: #fff;
  font-size: 1.25rem;
}

.wallet-v3-column .dx-wallet-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px auto;
  gap: 10px;
  align-items: center;
  min-height: 56px;
  margin: 0 0 10px;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.055), transparent),
    rgba(255,255,255,0.035);
}

.wallet-v3-column .dx-wallet-row span {
  color: #dce7ef;
  font-weight: 800;
}

.wallet-v3-column .dx-wallet-row img {
  max-width: 62px;
  height: 28px;
  object-fit: contain;
  justify-self: center;
}

.wallet-v3-column .dx-wallet-row strong {
  color: #fff;
  transition: color 180ms ease, transform 180ms ease;
}

.wallet-v3-column .dx-wallet-row.is-updating strong {
  color: var(--pro-lime);
  transform: translateY(-1px);
}

.wallet-v3-spread {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 18px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(circle at center, rgba(103,232,249,0.08), transparent 48%),
    rgba(5,7,11,0.35);
  text-align: center;
}

.wallet-v3-spread strong {
  color: #fff;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.wallet-v3-spread i {
  width: 12px;
  height: 230px;
  display: block;
  overflow: hidden;
  background: rgba(255,255,255,0.09);
}

.wallet-v3-spread b {
  display: block;
  width: 100%;
  height: var(--wallet-split, 59%);
  background: linear-gradient(180deg, var(--pro-cyan), var(--pro-amber));
  transition: height 420ms ease, width 420ms ease;
}

.wallet-v3-spread em {
  color: var(--pro-muted);
  font-style: normal;
  font-size: 0.82rem;
  line-height: 1.45;
}

.wallet-v2-status {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.08);
}

.wallet-v2-status p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 13px 14px;
  background: rgba(5,7,11,0.5);
}

.wallet-v2-status span,
.wallet-v3-footer span {
  color: #8da3b8;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.wallet-v2-status strong {
  color: #fff;
  font-size: 0.9rem;
}

.wallet-v3-footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr 36% 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(90deg, rgba(103,232,249,0.08), transparent 35%, rgba(255,198,90,0.08)),
    rgba(5,7,11,0.46);
}

.wallet-v3-footer b,
.wallet-v3-footer strong {
  color: #fff;
  font-size: 0.9rem;
}

.wallet-v3-footer i {
  height: 3px;
  background: linear-gradient(90deg, var(--pro-cyan), var(--pro-lime), var(--pro-amber));
  box-shadow: 0 0 24px rgba(103,232,249,0.24);
}

@media (max-height: 860px) and (min-width: 1181px) {
  .wallet-v3-board {
    min-height: 460px;
  }

  .wallet-v3-column .dx-wallet-row {
    min-height: 48px;
    margin-bottom: 7px;
  }

  .wallet-v3-spread i {
    height: 174px;
  }

  .wallet-v3-footer {
    min-height: 60px;
  }
}

@media (max-width: 1180px) {
  .wallet-v2-grid,
  .wallet-v3-board {
    grid-template-columns: 1fr;
  }

  .wallet-v2-copy {
    border-right: 0;
    padding-right: 0;
  }

  .wallet-v3-spread i {
    width: 100%;
    height: 8px;
  }

  .wallet-v3-spread b {
    width: var(--wallet-split, 59%);
    height: 100%;
  }

  .wallet-v3-footer {
    grid-template-columns: 1fr;
  }

  .wallet-v3-footer i {
    width: 100%;
  }
}
