/* ===================================================
   DESIGN TOKENS & CSS CUSTOM PROPERTIES
   =================================================== */
:root {
  /* Colors */
  --bg-primary: #080808;
  --bg-secondary: #0e0e0e;
  --bg-tertiary: #141414;
  --bg-card: rgba(20, 20, 20, 0.6);
  --bg-glass: rgba(243, 186, 47, 0.04);
  --bg-glass-hover: rgba(243, 186, 47, 0.08);

  --gold: #F3BA2F;
  --gold-light: #FFD84D;
  --gold-dark: #c9981f;
  --gold-glow: rgba(243, 186, 47, 0.3);
  --gold-glow-strong: rgba(243, 186, 47, 0.5);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-tertiary: rgba(255, 255, 255, 0.45);
  --text-gold: #F3BA2F;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(243, 186, 47, 0.2);
  --border-gold-strong: rgba(243, 186, 47, 0.4);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 4px 24px rgba(243, 186, 47, 0.15);
  --shadow-gold-lg: 0 8px 40px rgba(243, 186, 47, 0.2);
  --shadow-gold-xl: 0 12px 60px rgba(243, 186, 47, 0.25);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --nav-height: 72px;
}

/* ===================================================
   RESET & BASE
   =================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection {
  background: rgba(243, 186, 47, 0.3);
  color: #fff;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--gold-light);
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

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

ul, ol {
  list-style: none;
}

/* ===================================================
   TYPOGRAPHY
   =================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 1.0625rem;
}

.text-gold {
  color: var(--gold);
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #fff5cc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===================================================
   LAYOUT
   =================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(243, 186, 47, 0.08);
  border: 1px solid rgba(243, 186, 47, 0.15);
}

.section__title {
  margin-bottom: var(--space-lg);
}

.section__subtitle {
  max-width: 600px;
  margin-bottom: var(--space-3xl);
  font-size: 1.125rem;
}

.section--center {
  text-align: center;
}

.section--center .section__subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================
   GLASSMORPHISM CARD
   =================================================== */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.glass-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-glass-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.glass-card--gold {
  border-color: var(--border-gold);
  background: var(--bg-glass);
}

.glass-card--gold:hover {
  border-color: var(--border-gold-strong);
  box-shadow: var(--shadow-gold-lg);
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #080808;
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  color: #080808;
}

.btn--primary:active {
  transform: translateY(0);
}

/* Glow effect */
.btn--glow {
  animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% {
    box-shadow: 0 4px 24px rgba(243, 186, 47, 0.2),
                0 0 40px rgba(243, 186, 47, 0.05);
  }
  50% {
    box-shadow: 0 4px 32px rgba(243, 186, 47, 0.35),
                0 0 80px rgba(243, 186, 47, 0.12);
  }
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  border-color: var(--border-gold);
  background: rgba(243, 186, 47, 0.06);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--large {
  padding: 18px 40px;
  font-size: 1.125rem;
}

.btn--xl {
  padding: 22px 52px;
  font-size: 1.25rem;
  font-weight: 700;
}

.btn svg, .btn .btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--duration-normal) var(--ease-out);
}

.nav--scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav__logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #080808;
  font-size: 0.875rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: var(--space-sm);
}

.nav__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease-out);
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.hero__gradient-orb--1 {
  width: 600px;
  height: 600px;
  background: var(--gold);
  top: -200px;
  right: -100px;
  animation: orbFloat1 20s ease-in-out infinite;
}

.hero__gradient-orb--2 {
  width: 400px;
  height: 400px;
  background: var(--gold-light);
  bottom: -100px;
  left: -50px;
  animation: orbFloat2 25s ease-in-out infinite;
}

.hero__gradient-orb--3 {
  width: 300px;
  height: 300px;
  background: #c9981f;
  top: 40%;
  left: 50%;
  animation: orbFloat3 18s ease-in-out infinite;
  opacity: 0.08;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-60px, 40px) scale(1.1); }
  66% { transform: translate(30px, -30px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.05); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-40px, 30px) scale(1.15); }
  70% { transform: translate(20px, -20px) scale(0.9); }
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(243, 186, 47, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 186, 47, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 70%);
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__text {
  max-width: 600px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(243, 186, 47, 0.08);
  border: 1px solid rgba(243, 186, 47, 0.15);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.hero__title-highlight {
  display: inline;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__description {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 540px;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero__trust-row {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

.hero__trust-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  opacity: 0.7;
}

/* Hero Dashboard Illustration */
.hero__visual {
  position: relative;
  animation: fadeInUp 1s var(--ease-out) 0.3s both;
}

.dashboard {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.dashboard__main {
  background: rgba(14, 14, 14, 0.8);
  backdrop-filter: blur(30px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.dashboard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.dashboard__title-group h4 {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  font-weight: 500;
  margin-bottom: 4px;
}

.dashboard__balance {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.dashboard__balance-symbol {
  color: var(--text-tertiary);
  font-weight: 400;
  font-size: 1.25rem;
}

.dashboard__change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dashboard__chart {
  height: 140px;
  margin-bottom: var(--space-xl);
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}

.dashboard__chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(243, 186, 47, 0.15), rgba(243, 186, 47, 0.4));
  transition: height 1s var(--ease-out);
  min-height: 8px;
}

.dashboard__chart-bar:nth-child(even) {
  background: linear-gradient(to top, rgba(243, 186, 47, 0.1), rgba(243, 186, 47, 0.25));
}

.dashboard__chart-bar--active {
  background: linear-gradient(to top, var(--gold), var(--gold-light));
  box-shadow: 0 0 12px rgba(243, 186, 47, 0.3);
}

.dashboard__assets {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.dashboard__asset {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: all var(--duration-fast) var(--ease-out);
}

.dashboard__asset:hover {
  border-color: var(--border-subtle);
  background: rgba(255, 255, 255, 0.05);
}

.dashboard__asset-left {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.dashboard__asset-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
}

.dashboard__asset-icon--btc {
  background: linear-gradient(135deg, #f7931a, #ffab40);
  color: #fff;
}

.dashboard__asset-icon--eth {
  background: linear-gradient(135deg, #627eea, #8b9ff5);
  color: #fff;
}

.dashboard__asset-icon--bnb {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #080808;
}

.dashboard__asset-name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.dashboard__asset-ticker {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.dashboard__asset-right {
  text-align: right;
}

.dashboard__asset-price {
  font-weight: 600;
  font-size: 0.9375rem;
}

.dashboard__asset-change {
  font-size: 0.75rem;
  font-weight: 600;
}

.dashboard__asset-change--up {
  color: #22c55e;
}

.dashboard__asset-change--down {
  color: #ef4444;
}

/* Floating cards around dashboard */
.dashboard__float {
  position: absolute;
  background: rgba(14, 14, 14, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  z-index: 2;
}

.dashboard__float--1 {
  top: -16px;
  right: -20px;
  animation: float1 6s ease-in-out infinite;
}

.dashboard__float--2 {
  bottom: 40px;
  left: -30px;
  animation: float2 7s ease-in-out infinite;
}

.dashboard__float-label {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  margin-bottom: 2px;
}

.dashboard__float-value {
  font-weight: 700;
  font-size: 0.9375rem;
}

.dashboard__float-value--green {
  color: #22c55e;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

/* ===================================================
   SCROLL REVEAL ANIMATIONS
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================================
   STORY SECTION
   =================================================== */
.story {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.story__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.story__visual {
  position: relative;
}

.story__journey {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  position: relative;
  padding-left: var(--space-2xl);
}

.story__journey::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(243, 186, 47, 0.1));
  border-radius: 1px;
}

.story__journey-step {
  position: relative;
  padding: var(--space-lg);
  background: rgba(243, 186, 47, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.story__journey-step:hover {
  border-color: var(--border-gold);
  background: rgba(243, 186, 47, 0.06);
}

.story__journey-step::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-2xl) - 1px);
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg-secondary);
  box-shadow: 0 0 12px rgba(243, 186, 47, 0.3);
}

.story__journey-step-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.story__journey-step-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.story__text h2 {
  margin-bottom: var(--space-xl);
}

.story__narrative {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.story__narrative strong {
  color: var(--text-primary);
  font-weight: 600;
}

.story__disclaimer {
  margin-top: var(--space-xl);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--border-gold);
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  font-style: italic;
}

/* ===================================================
   WHY CRYPTO SECTION
   =================================================== */
.why-crypto__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.why-crypto__card {
  padding: var(--space-2xl);
  text-align: center;
}

.why-crypto__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-md);
  background: rgba(243, 186, 47, 0.08);
  border: 1px solid rgba(243, 186, 47, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--duration-normal) var(--ease-out);
}

.why-crypto__card:hover .why-crypto__icon {
  background: rgba(243, 186, 47, 0.15);
  box-shadow: 0 0 24px rgba(243, 186, 47, 0.15);
  transform: scale(1.05);
}

.why-crypto__card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.why-crypto__card p {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
}

/* ===================================================
   WHY BINANCE SECTION
   =================================================== */
.why-binance {
  background: var(--bg-secondary);
  position: relative;
}

.why-binance::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.why-binance__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.why-binance__card {
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-binance__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.why-binance__card:hover::before {
  opacity: 1;
}

.why-binance__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-sm);
  background: rgba(243, 186, 47, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--duration-normal) var(--ease-out);
}

.why-binance__card:hover .why-binance__icon {
  background: rgba(243, 186, 47, 0.12);
  transform: translateY(-2px);
}

.why-binance__card h4 {
  font-size: 0.9375rem;
  margin-bottom: var(--space-xs);
}

.why-binance__card p {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* ===================================================
   TIMELINE / HOW TO START
   =================================================== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(243, 186, 47, 0.1));
  transform: translateX(-50%);
}

.timeline__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  position: relative;
}

.timeline__step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.timeline__step-content {
  padding: var(--space-xl);
}

.timeline__step:nth-child(odd) .timeline__step-content {
  text-align: right;
  grid-column: 1;
}

.timeline__step:nth-child(even) .timeline__step-content {
  grid-column: 3;
}

.timeline__step:nth-child(odd) .timeline__step-marker {
  grid-column: 2;
  grid-row: 1;
}

.timeline__step:nth-child(even) .timeline__step-marker {
  grid-column: 2;
  grid-row: 1;
}

.timeline__step:nth-child(even) .timeline__step-spacer {
  grid-column: 1;
}

.timeline__step-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: #080808;
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.timeline__step-content h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.timeline__step-content p {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
}

/* ===================================================
   FEATURES SECTION
   =================================================== */
.features {
  background: var(--bg-secondary);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(243, 186, 47, 0.1), rgba(243, 186, 47, 0.05));
  border: 1px solid rgba(243, 186, 47, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--gold);
  transition: all var(--duration-normal) var(--ease-out);
}

.feature-card:hover .feature-card__icon {
  background: linear-gradient(135deg, rgba(243, 186, 47, 0.2), rgba(243, 186, 47, 0.1));
  box-shadow: 0 0 20px rgba(243, 186, 47, 0.12);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  line-height: 1.7;
}

.feature-card__shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(243, 186, 47, 0.03), transparent);
  transition: left 0.6s var(--ease-out);
}

.feature-card:hover .feature-card__shimmer {
  left: 150%;
}

/* ===================================================
   STATISTICS SECTION
   =================================================== */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.stat-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.stat-card__value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-sm);
}

.stat-card__label {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* ===================================================
   SOCIAL PROOF / TRUST SECTION
   =================================================== */
.trust {
  background: var(--bg-secondary);
  position: relative;
}

.trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.trust-card {
  padding: var(--space-2xl);
  text-align: center;
}

.trust-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  background: rgba(243, 186, 47, 0.06);
  border: 1px solid rgba(243, 186, 47, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.trust-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.trust-card p {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  line-height: 1.7;
}

/* ===================================================
   FAQ SECTION
   =================================================== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq__item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color var(--duration-normal) var(--ease-out);
}

.faq__item--active {
  border-color: var(--border-gold);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-xl) var(--space-xl);
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-out);
  gap: var(--space-md);
}

.faq__question:hover {
  color: var(--gold);
}

.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--text-tertiary);
  transition: transform var(--duration-normal) var(--ease-out), color var(--duration-fast) var(--ease-out);
}

.faq__item--active .faq__icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.faq__answer-inner {
  padding: 0 var(--space-xl) var(--space-xl);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===================================================
   FINAL CTA SECTION
   =================================================== */
.final-cta {
  text-align: center;
  padding: var(--space-5xl) 0;
  position: relative;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.final-cta__gradient {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.final-cta__content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-lg);
  font-weight: 800;
}

.final-cta__subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
}

.final-cta__btn-wrap {
  margin-bottom: var(--space-xl);
}

.final-cta__disclaimer {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.footer__logo-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #080808;
  font-size: 0.75rem;
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  line-height: 1.7;
}

.footer__links {
  display: flex;
  gap: var(--space-3xl);
}

.footer__link-group h5 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: var(--space-md);
}

.footer__link-group ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link-group a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__link-group a:hover {
  color: var(--gold);
}

.footer__divider {
  height: 1px;
  background: var(--border-subtle);
  margin-bottom: var(--space-xl);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.footer__disclaimer {
  max-width: 700px;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  line-height: 1.7;
}

.footer__copyright {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  white-space: nowrap;
}

/* ===================================================
   MOBILE MENU
   =================================================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: var(--space-2xl);
  flex-direction: column;
  gap: var(--space-lg);
  overflow-y: auto;
}

.mobile-menu--open {
  display: flex;
}

.mobile-menu__link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--duration-fast) var(--ease-out);
}

.mobile-menu__link:hover {
  color: var(--gold);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .hero__visual {
    display: flex;
    justify-content: center;
  }

  .dashboard {
    max-width: 450px;
  }

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

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

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

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

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

  .story__visual {
    order: 2;
  }

  .timeline__line {
    left: 28px;
  }

  .timeline__step {
    grid-template-columns: auto 1fr;
    gap: var(--space-lg);
  }

  .timeline__step:nth-child(odd) .timeline__step-content,
  .timeline__step:nth-child(even) .timeline__step-content {
    text-align: left;
    grid-column: 2;
  }

  .timeline__step:nth-child(odd) .timeline__step-marker,
  .timeline__step:nth-child(even) .timeline__step-marker {
    grid-column: 1;
  }

  .timeline__step-spacer {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --space-5xl: 5rem;
    --space-4xl: 4rem;
  }

  .nav__links {
    display: none;
  }

  .nav__cta .btn {
    display: none;
  }

  .nav__mobile-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + var(--space-3xl));
    padding-bottom: var(--space-3xl);
  }

  .hero__description {
    font-size: 1.0625rem;
  }

  .hero__trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .dashboard__float--1,
  .dashboard__float--2 {
    display: none;
  }

  .why-crypto__grid {
    grid-template-columns: 1fr;
  }

  .why-binance__grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer__top {
    flex-direction: column;
  }

  .footer__links {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

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

  .timeline__step-marker {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* ===================================================
   ACCESSIBILITY: REDUCED MOTION
   =================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===================================================
   SKIP LINK (ACCESSIBILITY)
   =================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--gold);
  color: #080808;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: top var(--duration-fast) var(--ease-out);
}

.skip-link:focus {
  top: var(--space-md);
}

/* ===================================================
   SECTION DIVIDERS
   =================================================== */
.divider-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}
