/* ==========================================================================
   REX Landing — design tokens mirrored from REX-TMA WebApp
   ========================================================================== */
:root {
  --bg:        #0c0c12;
  --bg2:       #111119;
  --bg3:       #16161f;
  --bg4:       #1d1d28;
  --bg5:       #252533;
  --border:    rgba(255,255,255,0.06);
  --border-2:  rgba(255,255,255,0.12);
  --text:      #f0f0f0;
  --text2:     #a0a0b0;
  --text3:     #55556a;
  --gold:      #c0a96e;
  --gold-2:    #d4bc86;
  --gold-3:    #8a6f38;
  --gold-light:#f0d99f;
  --green:     #0ecb81;
  --red:       #f6465d;
  --amber:     #f5a524;
  --blue:      #38bdf8;
  --r-sm:      10px;
  --r:         16px;
  --r-lg:      22px;
  --r-xl:      28px;
  --container: 1200px;
  --gold-grad:        linear-gradient(145deg, rgba(212,188,134,0.14), rgba(212,188,134,0.04));
  --gold-grad-strong: linear-gradient(145deg, rgba(212,188,134,0.22), rgba(212,188,134,0.08));
  --gold-btn:         linear-gradient(135deg, #d4bc86 0%, #c0a96e 50%, #8a6f38 100%);
  --gold-btn-hover:   linear-gradient(135deg, #f0d99f 0%, #d4bc86 50%, #a8924f 100%);
  --gold-text:        linear-gradient(135deg, #f0d99f 0%, #d4bc86 50%, #8a6f38 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
html, body { background: var(--bg); color: var(--text); }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', 'Onest', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(192,169,110,0.10), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(56,189,248,0.07), transparent 60%),
    var(--bg);
}
img { display: block; max-width: 100%; user-select: none; -webkit-user-drag: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.gold-text { background: var(--gold-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ==========================================================================
   Aurora — slow-moving background blobs
   ========================================================================== */
.aurora { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.aurora__blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
  mix-blend-mode: screen;
}
.aurora__blob--1 { width: 520px; height: 520px; left: -10%; top: -10%; background: radial-gradient(circle, rgba(192,169,110,0.55), transparent 70%); animation: drift1 26s ease-in-out infinite; }
.aurora__blob--2 { width: 600px; height: 600px; right: -15%; top: 20%;  background: radial-gradient(circle, rgba(56,189,248,0.32),  transparent 70%); animation: drift2 32s ease-in-out infinite; }
.aurora__blob--3 { width: 480px; height: 480px; left:  20%; bottom: 0%; background: radial-gradient(circle, rgba(192,169,110,0.35), transparent 70%); animation: drift3 24s ease-in-out infinite; }

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40vw, 20vh) scale(1.15); }
  66%      { transform: translate(15vw, 50vh) scale(0.9); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-30vw, 25vh) scale(1.2); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(35vw, -30vh) scale(1.1); }
}

/* ==========================================================================
   Top scroll progress bar
   ========================================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--gold-btn); z-index: 100;
  box-shadow: 0 0 12px rgba(212,188,134,0.6);
  transition: width 80ms linear;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(12, 12, 18, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background .35s ease, border-color .35s ease, padding .25s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 16, 0.78);
  backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom-color: rgba(212,188,134,0.22);
  box-shadow: 0 14px 50px rgba(0,0,0,0.45), 0 1px 0 rgba(212,188,134,0.06) inset;
}
.nav.scrolled .nav__inner { height: 64px; }
.nav__inner {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; height: 76px; gap: 24px;
}
.nav__links { display: flex; align-items: center; gap: 6px; flex-wrap: nowrap; }
.nav__link {
  position: relative; padding: 10px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 500; color: var(--text2);
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}
.nav__link::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform .3s cubic-bezier(0.25,1,0.5,1);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__right { display: flex; align-items: center; gap: 14px; }

/* Language toggle */
.lang-toggle {
  display: flex; align-items: center; padding: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-2);
  border-radius: 999px;
}
.lang-toggle button {
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px; color: var(--text2);
  transition: color .2s ease, background .2s ease;
}
.lang-toggle button.active {
  color: #0c0c12; background: var(--gold-btn);
  box-shadow: 0 4px 12px rgba(192,169,110,0.35);
}

.nav__cta {
  position: relative; overflow: hidden;
  padding: 11px 20px; border-radius: 12px;
  background: var(--gold-btn); color: #0c0c12; font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 8px 24px rgba(192,169,110,0.28);
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(192,169,110,0.4); background: var(--gold-btn-hover); }
.nav__cta::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transition: left .6s ease;
}
.nav__cta:hover::before { left: 100%; }

/* REX wordmark */
.nav__brand {
  position: relative;
  font-size: 26px; font-weight: 800; letter-spacing: 0.18em;
  background: var(--gold-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-left: 18px; margin-left: 4px;
  text-shadow: 0 0 30px rgba(212,188,134,0);
  transition: text-shadow .3s ease, transform .2s ease;
}
.nav__brand::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 28px; background: linear-gradient(180deg, transparent, rgba(212,188,134,0.45), transparent);
}
.nav__brand:hover { text-shadow: 0 0 24px rgba(212,188,134,0.5); transform: scale(1.04); }
.nav__brand .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-2); margin-left: 4px; vertical-align: middle;
  box-shadow: 0 0 12px rgba(212,188,134,0.7);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.6; }
}

.nav__burger {
  display: none; width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-2);
  align-items: center; justify-content: center;
}
.nav__burger svg { width: 18px; height: 18px; color: var(--text); }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__inner { height: 66px; }
  .nav__burger { display: inline-flex; }
  .nav__cta { display: none; }
}
@media (max-width: 520px) {
  .nav__brand { font-size: 22px; padding-left: 14px; }
  .lang-toggle button { padding: 5px 10px; font-size: 11px; }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(12,12,18,0.96); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; padding: 100px 32px 40px;
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { padding: 16px 0; font-size: 22px; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-menu .nav__cta { display: inline-flex; margin-top: 30px; padding: 16px 24px; }
.mobile-menu__close {
  position: absolute; top: 18px; right: 22px; width: 44px; height: 44px;
  border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-2);
  display: inline-flex; align-items: center; justify-content: center;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding: 170px 0 120px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--gold-grad); border: 1px solid rgba(212,188,134,0.25);
  font-size: 12px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--gold-2);
  position: relative; overflow: hidden;
}
.hero__badge::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(212,188,134,0.18) 50%, transparent 70%);
  animation: badgeShine 3.5s ease-in-out infinite;
}
@keyframes badgeShine {
  0%, 100% { transform: translateX(-120%); }
  50%      { transform: translateX(120%); }
}
.hero__badge .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold-2);
  box-shadow: 0 0 0 0 rgba(212,188,134,0.7); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212,188,134,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(212,188,134,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,188,134,0); }
}

.hero__title {
  margin: 24px 0 22px;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.hero__title .gold-shimmer {
  background: linear-gradient(110deg, #f0d99f 0%, #d4bc86 30%, #ffeac0 50%, #d4bc86 70%, #8a6f38 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmerSweep 5s linear infinite;
}
@keyframes shimmerSweep {
  0%   { background-position: -100% 0; }
  100% { background-position:  100% 0; }
}

.hero__sub {
  font-size: 18px; color: var(--text2); max-width: 560px; line-height: 1.6;
}
.hero__ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.btn-primary {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 14px;
  background: var(--gold-btn); color: #0c0c12; font-weight: 700; font-size: 15px;
  box-shadow: 0 10px 30px rgba(192,169,110,0.30);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(192,169,110,0.55), 0 0 0 1px rgba(240,217,159,0.4); background: var(--gold-btn-hover); }
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transition: left .65s ease;
  pointer-events: none;
}
.btn-primary:hover::before { left: 100%; transition: left .8s ease; }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -150%; width: 60%; height: 100%;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.32) 50%, transparent 70%);
  animation: ctaShine 5s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
}
@keyframes ctaShine {
  0%        { left: -150%; }
  40%, 100% { left: 220%;  }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary::after { animation: none; }
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 14px;
  background: rgba(255,255,255,0.04); color: var(--text);
  border: 1px solid var(--border-2); font-weight: 600; font-size: 15px;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(212,188,134,0.4); transform: translateY(-2px); }

.hero__stats { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
.stat__num {
  font-size: 32px; font-weight: 800; letter-spacing: -0.02em;
  background: var(--gold-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat__label { font-size: 12px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; max-width: 160px; line-height: 1.3; }

/* Hero card stack */
.hero__cards {
  position: relative; width: 100%; aspect-ratio: 1 / 1; max-height: 620px;
  display: flex; align-items: center; justify-content: center;
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at center, rgba(192,169,110,0.32) 0%, transparent 55%);
  filter: blur(40px);
  animation: heroGlowPulse 6s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%, 100% { transform: scale(1);   opacity: 0.85; }
  50%      { transform: scale(1.1); opacity: 1; }
}
.hero__card { position: absolute; width: 70%; max-width: 440px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
  transition: transform .6s cubic-bezier(0.25,1,0.5,1);
  will-change: transform;
}
.hero__card img { width: 100%; height: auto; }
.hero__card--back-left  { transform: translate(-26%, 4%) rotate(-16deg) scale(0.78); z-index: 1; filter: drop-shadow(0 18px 36px rgba(0,0,0,0.55)) brightness(0.78) saturate(0.9); }
.hero__card--back-right { transform: translate(26%, 4%) rotate(16deg) scale(0.78);  z-index: 1; filter: drop-shadow(0 18px 36px rgba(0,0,0,0.55)) brightness(0.78) saturate(0.9); }
.hero__card--front      { transform: rotate(-3deg); z-index: 2; animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-14px); }
}

/* Floating particles */
.particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-2); opacity: 0.4;
  box-shadow: 0 0 10px rgba(212,188,134,0.7);
  animation: particleFloat 12s ease-in-out infinite;
}
@keyframes particleFloat {
  0%   { transform: translate(0, 0)            scale(0.8); opacity: 0.2; }
  50%  { transform: translate(40px, -60px)     scale(1.2); opacity: 0.7; }
  100% { transform: translate(-20px, -120px)   scale(0.6); opacity: 0; }
}

/* Pay pills */
.hero__pills { position: absolute; bottom: -10px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; z-index: 3; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  font-size: 12px; font-weight: 600; color: var(--text); backdrop-filter: blur(8px);
}
.pill svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .hero { padding: 130px 0 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__cards { max-height: 460px; }
}

/* ==========================================================================
   Marquee ticker (between hero and cards) — also boosts SEO keyword density
   ========================================================================== */
.ticker {
  position: relative;
  padding: 22px 0; margin: 20px 0 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, transparent, rgba(212,188,134,0.04), transparent);
  overflow: hidden;
}
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.ticker::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.ticker__track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: tickerScroll 50s linear infinite;
}
.ticker__item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--text2);
  letter-spacing: 0.5px;
}
.ticker__item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-2); }
.ticker__item.gold { color: var(--gold-2); }
@keyframes tickerScroll {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Section header
   ========================================================================== */
section { padding: 110px 0; position: relative; }
.section__head { text-align: center; margin-bottom: 60px; }
.section__tag {
  display: inline-flex; padding: 6px 16px; border-radius: 999px;
  background: var(--gold-grad); border: 1px solid rgba(212,188,134,0.25);
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 18px;
}
.section__title {
  font-size: clamp(34px, 4.4vw, 56px); line-height: 1.1; letter-spacing: -0.025em;
  font-weight: 800; max-width: 780px; margin: 0 auto;
}
.section__title .gold {
  background: var(--gold-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section__sub {
  margin-top: 18px; font-size: 17px; color: var(--text2); max-width: 640px;
  margin-left: auto; margin-right: auto;
}

/* ==========================================================================
   Cards lineup
   ========================================================================== */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.tier {
  position: relative;
  padding: 30px 28px 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  transition: transform .4s cubic-bezier(0.25,1,0.5,1), border-color .25s ease, box-shadow .25s ease;
  overflow: hidden;
  transform-style: preserve-3d;
}
.tier:hover { border-color: rgba(212,188,134,0.35); box-shadow: 0 30px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(212,188,134,0.15); }
/* Spotlight that follows cursor */
.tier__spotlight {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(212,188,134,0.15), transparent 50%);
  transition: opacity .25s ease;
  border-radius: var(--r-lg);
}
.tier:hover .tier__spotlight { opacity: 1; }
.tier__badge {
  position: absolute; top: 18px; right: 18px;
  padding: 5px 10px; border-radius: 8px;
  background: var(--gold-grad-strong); border: 1px solid rgba(212,188,134,0.3);
  font-size: 10px; font-weight: 800; letter-spacing: 1.2px; color: var(--gold-2); text-transform: uppercase;
}
.tier__art {
  position: relative; width: 100%; aspect-ratio: 1.6/1; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
}
.tier__art::before {
  content: ''; position: absolute; inset: 8% 12%;
  background: radial-gradient(circle at center, var(--tier-glow, rgba(192,169,110,0.32)) 0%, transparent 60%);
  filter: blur(24px); z-index: 0;
}
.tier__art img {
  position: relative; z-index: 1; width: 85%; height: auto;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.55));
  transition: transform .5s cubic-bezier(0.25,1,0.5,1);
}
.tier:hover .tier__art img { transform: translateY(-6px) rotate(-3deg) scale(1.04); }

.tier__name { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.tier__sub { font-size: 13px; color: var(--text2); margin-top: 4px; }
.tier__price { display: flex; align-items: baseline; gap: 6px; margin-top: 18px; }
.tier__price-val {
  font-size: 38px; font-weight: 800; letter-spacing: -0.02em;
  background: var(--gold-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.tier__price-old { font-size: 16px; color: var(--text3); text-decoration: line-through; }
.tier__price-unit { font-size: 14px; color: var(--text2); }

.tier__features { list-style: none; margin: 22px 0 24px; display: flex; flex-direction: column; gap: 11px; }
.tier__features li { display: flex; align-items: start; gap: 10px; font-size: 14px; color: var(--text2); }
.tier__features li .check {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-grad-strong); border: 1px solid rgba(212,188,134,0.4);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.tier__features li .check svg { width: 10px; height: 10px; color: var(--gold-2); }

.tier__cta {
  position: relative; overflow: hidden;
  display: block; width: 100%; text-align: center;
  padding: 14px 0; border-radius: 12px;
  background: var(--gold-btn); color: #0c0c12; font-weight: 700; font-size: 14px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.tier__cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(192,169,110,0.4); background: var(--gold-btn-hover); }
.tier__cta::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transition: left .65s ease;
}
.tier__cta:hover::before { left: 100%; }

.tier--standard { --tier-glow: rgba(56,189,248,0.34); }
.tier--freedom  { --tier-glow: rgba(224,160,48,0.40); }
.tier--credit   { --tier-glow: rgba(74,144,217,0.34); }
.tier--freedom { border-color: rgba(212,188,134,0.20); background: linear-gradient(180deg, rgba(212,188,134,0.07), rgba(212,188,134,0.02)); }

@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Pay anywhere strip
   ========================================================================== */
.pay-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.pay-card {
  padding: 28px 22px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  transition: transform .25s ease, border-color .25s ease;
}
.pay-card:hover { transform: translateY(-6px); border-color: rgba(212,188,134,0.3); }
.pay-card__icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--gold-grad-strong); border: 1px solid rgba(212,188,134,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  position: relative; overflow: hidden;
}
.pay-card__icon::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 60%);
}
.pay-card__icon svg { width: 24px; height: 24px; color: var(--gold-2); position: relative; z-index: 1; }
.pay-card__title { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.pay-card__desc { font-size: 14px; color: var(--text2); margin-top: 6px; line-height: 1.55; }

@media (max-width: 900px) { .pay-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .pay-strip { grid-template-columns: 1fr; } }

/* ==========================================================================
   Crypto link section
   ========================================================================== */
.crypto-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.crypto-block__art {
  position: relative; aspect-ratio: 1/1; max-width: 520px; margin: 0 auto; width: 100%;
}
.crypto-orbit {
  position: absolute; inset: 0;
  border: 1px dashed rgba(212,188,134,0.20); border-radius: 50%;
  animation: spin 30s linear infinite;
}
.crypto-orbit--inner { inset: 14%; animation: spin 22s linear infinite reverse; border-color: rgba(56,189,248,0.18); }
@keyframes spin { to { transform: rotate(360deg); } }

/* SVG connecting lines from center to assets */
.crypto-block__art svg.crypto-lines {
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0;
}
.crypto-block__art svg.crypto-lines line {
  stroke: rgba(212,188,134,0.25); stroke-width: 1; stroke-dasharray: 4 6;
  animation: dashFlow 18s linear infinite;
}
@keyframes dashFlow { to { stroke-dashoffset: -200; } }

.crypto-center {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 50%; max-width: 240px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  z-index: 2;
}
.crypto-asset {
  position: absolute; width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg3); border: 1px solid var(--border-2);
  box-shadow: 0 12px 32px rgba(0,0,0,0.55), 0 0 0 0 rgba(212,188,134,0);
  animation: assetFloat 4s ease-in-out infinite, assetGlow 4s ease-in-out infinite;
  z-index: 3;
}
@keyframes assetFloat {
  0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); }
}
@keyframes assetGlow {
  0%,100% { box-shadow: 0 12px 32px rgba(0,0,0,0.55), 0 0 0 0 rgba(212,188,134,0); }
  50%     { box-shadow: 0 12px 32px rgba(0,0,0,0.55), 0 0 24px 4px rgba(212,188,134,0.25); }
}
.crypto-asset svg { width: 38px; height: 38px; }
.crypto-asset--usdt { top: 4%; left: 50%; margin-left: -30px; }
.crypto-asset--usdc { top: 50%; right: 4%; margin-top: -30px;  animation-delay: .4s; }
.crypto-asset--btc  { bottom: 4%; left: 50%; margin-left: -30px; animation-delay: .8s; }
.crypto-asset--eth  { top: 50%; left: 4%;  margin-top: -30px;   animation-delay: 1.2s; }

.crypto-block__title { font-size: clamp(30px, 3.6vw, 46px); font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; }
.crypto-block__title .gold { background: var(--gold-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.crypto-block__sub { margin-top: 18px; font-size: 17px; color: var(--text2); }
.crypto-block__list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.crypto-block__list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); }
.crypto-block__list .check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-grad-strong); border: 1px solid rgba(212,188,134,0.4);
  display: inline-flex; align-items: center; justify-content: center;
}
.crypto-block__list .check svg { width: 12px; height: 12px; color: var(--gold-2); }

@media (max-width: 900px) {
  .crypto-block { grid-template-columns: 1fr; gap: 40px; }
  .crypto-block__art { max-width: 380px; }
}

/* ==========================================================================
   Limits table
   ========================================================================== */
.limits {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; max-width: 980px; margin: 0 auto;
}
.limits__row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; padding: 18px 28px; align-items: center; transition: background .15s ease; }
.limits__row + .limits__row { border-top: 1px solid var(--border); }
.limits__row:not(.limits__row--head):hover { background: rgba(255,255,255,0.025); }
.limits__row--head { background: rgba(255,255,255,0.03); }
.limits__row--head > div { font-size: 11px; color: var(--text3); letter-spacing: 1.4px; text-transform: uppercase; font-weight: 800; }
.limits__row > div:first-child { font-size: 14px; color: var(--text2); }
.limits__row > div:not(:first-child) { font-size: 15px; font-weight: 800; font-variant-numeric: tabular-nums; text-align: center; }
.limits__row .val--gold { background: var(--gold-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

@media (max-width: 700px) {
  .limits__row { grid-template-columns: 1.2fr 1fr 1fr 1fr; padding: 14px 16px; gap: 8px; }
  .limits__row > div { font-size: 12px !important; }
}

/* ==========================================================================
   Ecosystem
   ========================================================================== */
.eco-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.eco-card {
  position: relative; overflow: hidden;
  padding: 28px 24px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.005));
  border: 1px solid var(--border);
  transition: transform .25s ease, border-color .25s ease;
}
.eco-card:hover { transform: translateY(-6px); border-color: rgba(212,188,134,0.3); }
.eco-card__icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--gold-grad-strong); border: 1px solid rgba(212,188,134,0.20);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  position: relative; overflow: hidden;
}
.eco-card__icon::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 60%);
}
.eco-card__icon svg { width: 24px; height: 24px; color: var(--gold-2); position: relative; z-index: 1; }
.eco-card__title { font-size: 19px; font-weight: 700; }
.eco-card__sub { font-size: 14px; color: var(--text2); margin-top: 6px; line-height: 1.55; }
.eco-card__glow {
  position: absolute; right: -30px; bottom: -30px; width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(192,169,110,0.25) 0%, transparent 70%);
  filter: blur(24px); pointer-events: none; opacity: 0; transition: opacity .25s ease;
}
.eco-card:hover .eco-card__glow { opacity: 1; }

@media (max-width: 1000px) { .eco-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .eco-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   How it works
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step {
  position: relative; padding: 36px 28px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: transform .25s ease, border-color .25s ease;
}
.step:hover { transform: translateY(-4px); border-color: rgba(212,188,134,0.3); }
.step__num {
  position: absolute; top: -22px; left: 28px;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--gold-btn); color: #0c0c12;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900;
  box-shadow: 0 14px 32px rgba(192,169,110,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
}
.step__title { margin-top: 14px; font-size: 21px; font-weight: 800; }
.step__sub { margin-top: 8px; font-size: 14px; color: var(--text2); line-height: 1.6; }

@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  padding: 22px 26px; border-radius: var(--r);
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  margin-bottom: 12px; cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.faq__item:hover { background: rgba(255,255,255,0.04); border-color: rgba(212,188,134,0.18); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 16px; font-weight: 600; }
.faq__q svg { transition: transform .25s ease; flex-shrink: 0; }
.faq__item.open { border-color: rgba(212,188,134,0.3); }
.faq__item.open .faq__q svg { transform: rotate(45deg); color: var(--gold-2); }
.faq__a { font-size: 15px; color: var(--text2); line-height: 1.65; max-height: 0; overflow: hidden; transition: max-height .35s ease, margin-top .35s ease; }
.faq__item.open .faq__a { max-height: 320px; margin-top: 14px; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  position: relative; overflow: hidden;
  padding: 90px 28px; border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(212,188,134,0.20) 0%, rgba(56,189,248,0.10) 50%, rgba(212,188,134,0.20) 100%);
  border: 1px solid rgba(212,188,134,0.28);
  text-align: center;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(192,169,110,0.22) 0%, transparent 60%);
  filter: blur(40px);
  animation: heroGlowPulse 7s ease-in-out infinite;
}
.final-cta > * { position: relative; }
.final-cta h2 { font-size: clamp(34px, 4.4vw, 56px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; }
.final-cta h2 .gold { background: var(--gold-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.final-cta p { margin: 16px auto 32px; max-width: 600px; font-size: 17px; color: var(--text2); }

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border); margin-top: 80px;
}
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer__brand { max-width: 360px; }
.footer__brand p { color: var(--text2); font-size: 14px; margin-top: 12px; line-height: 1.55; }
.footer__brand .nav__brand { font-size: 28px; padding-left: 0; }
.footer__brand .nav__brand::before { display: none; }
.footer__cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer__col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.4px; color: var(--text3); margin-bottom: 16px; font-weight: 800; }
.footer__col a { display: block; font-size: 14px; color: var(--text2); padding: 6px 0; transition: color .15s ease; }
.footer__col a:hover { color: var(--gold-2); }
.footer__bot { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 50px; padding-top: 28px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text3); flex-wrap: wrap; }

/* ==========================================================================
   Scroll-in animations
   ========================================================================== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(0.25,1,0.5,1), transform .8s cubic-bezier(0.25,1,0.5,1); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-in-scale { opacity: 0; transform: scale(0.94); transition: opacity .8s cubic-bezier(0.25,1,0.5,1), transform .8s cubic-bezier(0.25,1,0.5,1); }
.fade-in-scale.in-view { opacity: 1; transform: scale(1); }
.fade-up.delay-1 { transition-delay: .08s; }
.fade-up.delay-2 { transition-delay: .16s; }
.fade-up.delay-3 { transition-delay: .24s; }
.fade-up.delay-4 { transition-delay: .32s; }
.fade-up.delay-5 { transition-delay: .40s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .aurora__blob, .hero__card--front, .hero__glow, .crypto-asset, .crypto-orbit,
  .ticker__track, .badge::before, .stat__num, .particle { animation: none !important; }
}

/* Mobile spacing tweaks */
@media (max-width: 700px) {
  section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .final-cta { padding: 60px 24px; }
}
