: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;
  }
}
