/* ========================================
   TitanVista - Premium Decentralized Crowdfunding
   Custom Styles
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #D4AF37;
  --primary-light: #F4C542;
  --primary-lighter: #FFD700;
  --gold-dark: #9B6B18;
  --silver: #C0C0C0;
  --silver-light: #ECECEC;
  --brand-gradient: linear-gradient(135deg, #9B6B18, #D4AF37, #F4C542);
  --brand-gradient-reverse: linear-gradient(135deg, #F4C542, #D4AF37, #9B6B18);
  --dark: #050505;
  --dark-2: #0D0D0D;
  --dark-3: #131313;
  --dark-card: rgba(19, 19, 19, 0.9);
  --glass-bg: rgba(212, 175, 55, 0.05);
  --glass-border: rgba(212, 175, 55, 0.20);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --text-primary: #FFFFFF;
  --text-secondary: #C9C9C9;
  --text-muted: rgba(255, 255, 255, 0.40);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --max-width: 1200px;
  --glow-gold: rgba(212, 175, 55, 0.30);
  --glow-gold-soft: rgba(212, 175, 55, 0.12);

  --font-primary: 'Inter', sans-serif;
  --font-display: 'Poppins', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
  --shadow-glow-gold-strong: 0 0 20px rgba(255, 214, 65, 0.3);

  --radius-md: 10px;
  --radius-full: 9999px;

  --header-height: 72px;
  --sidebar-width: 260px;

  --bg-primary: #050505;
  --bg-secondary: #0D0D0D;
  --bg-tertiary: #131313;
  --bg-card: rgba(19, 19, 19, 0.9);
  --bg-card-hover: rgba(30, 30, 30, 0.95);
  --bg-surface: #1a1a1a;
  --border-color: rgba(212, 175, 55, 0.20);
  --border-color-light: rgba(212, 175, 55, 0.30);
  --text-tertiary: rgba(255, 255, 255, 0.40);
  --text-disabled: rgba(255, 255, 255, 0.2);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }

img { max-width: 100%; }

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  color: inherit;
}

input:focus, textarea:focus, select:focus {
  outline: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loader-circle {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(212, 175, 55, 0.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loader-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: var(--dark);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--glow-gold);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--glow-gold);
}

/* ===== GLASS UTILITY ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--brand-gradient);
  background-size: 200% 200%;
  animation: shimmer 3s ease-in-out infinite;
  color: var(--dark);
  box-shadow: 0 4px 24px var(--glow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px var(--glow-gold);
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--glass-border);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--glass-bg);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.logo-icon {
  display: flex;
  align-items: center;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text {
  letter-spacing: 5px;
}

.logo-caption {
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--text-secondary, #aaa);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.logo-icon img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-gradient);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.20);
  border-radius: 50px;
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.gradient-text {
  background: var(--brand-gradient);
  background-size: 200% 200%;
  animation: shimmer 4s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.00rem;
  line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-gradient::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
  animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, -30px) scale(1.1); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.20);
  border-radius: 50px;
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-primary);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(212, 175, 55, 0.20);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
}

.hero-illustration {
  position: relative;
}

.dashboard-mockup {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow);
}

.dm-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--glass-border);
}

.dm-dots {
  display: flex;
  gap: 6px;
}

.dm-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
}

.dm-dots span:nth-child(2) { background: #eab308; }
.dm-dots span:nth-child(3) { background: #22c55e; }

.dm-url {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  padding: 4px 12px;
  border-radius: 6px;
}

.dm-body {
  padding: 20px;
}

.dm-chart {
  margin-bottom: 16px;
}

.dm-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.dm-coin-btc {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--brand-gradient);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.dm-price-up {
  color: var(--primary);
}

.dm-change {
  color: var(--text-muted);
  font-weight: 400;
}

.chart-svg {
  width: 100%;
  margin-bottom: 8px;
}

.chart-line {
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.30));
}

.dm-chart-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.dm-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dm-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-sm);
}

.dm-card i {
  font-size: 1.5rem;
  color: var(--primary);
}

.dm-card small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.dm-card strong {
  font-size: 1rem;
}

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

/* ===== FLOATING ELEMENTS ===== */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.2rem;
}

.floating-card small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.floating-card strong {
  font-size: 0.9rem;
}

.trend-up { color: var(--primary); font-size: 0.75rem; }
.trend-down { color: #ef4444; font-size: 0.75rem; }

.fc-1 {
  top: -10%;
  right: -15%;
  animation-delay: 0s;
}

.fc-1 i { color: var(--primary); }

.fc-2 {
  bottom: 20%;
  left: -20%;
  animation-delay: 1s;
}

.fc-2 i { color: var(--silver); }

.fc-3 {
  bottom: -10%;
  right: -10%;
  animation-delay: 2s;
}

.fc-3 i { color: var(--primary-light); }

.fc-4 {
  top: 30%;
  right: -25%;
  animation-delay: 3s;
  padding: 10px 14px;
}

.fc-4 i { color: var(--primary-lighter); }

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

.analytics-card {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ===== STATISTICS ===== */
.stats {
  padding: 60px 0;
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
}

.about-img-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.10), transparent 70%);
  transform: translate(-50%, -50%);
  animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.about-actual-img {
  position: relative;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.about-img-content {
  position: relative;
  z-index: 1;
}

.about-img-content i {
  font-size: 4rem;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.about-img-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.about-img-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-features-mini {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about-features-mini span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.about-features-mini i {
  font-size: 1rem;
  -webkit-text-fill-color: var(--primary);
  color: var(--primary);
}

.about-desc {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-list-item i {
  color: var(--primary);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-list-item strong {
  display: block;
  margin-bottom: 4px;
}

.about-list-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.how-it-works-image {
  text-align: center;
  margin: 40px 0;
}

.how-it-works-img {
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(234, 179, 8, 0.3);
  animation: float 3s ease-in-out infinite;
}

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

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, var(--glass-border) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: var(--transition);
}

.feature-card:hover::before {
  background: var(--brand-gradient);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.10);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border-radius: 14px;
  font-size: 1.5rem;
  background: rgba(212, 175, 55, 0.08);
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--brand-gradient);
  color: var(--dark);
}

.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== COMPANY MARQUEE ===== */
.marquee-section {
  padding: 0 0 80px;
  overflow: hidden;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: fit-content;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track img {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: var(--transition);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.step {
  flex: 1;
  max-width: 240px;
  position: relative;
  text-align: center;
}

.step-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  margin-bottom: -10px;
  position: relative;
  z-index: 0;
}

.step-content {
  padding: 32px 20px;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.step-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 215, 0, 0.06));
  color: var(--primary-light);
  font-size: 1.3rem;
}

.step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

.step-connector {
  color: var(--text-muted);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ===== PLATFORM PREVIEW ===== */
.preview-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.browser-window {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--glass-border);
}

.browser-dots {
  display: flex;
  gap: 8px;
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.browser-url {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  padding: 6px 16px;
  border-radius: 8px;
}

.browser-menu {
  color: var(--text-muted);
  cursor: pointer;
}

.browser-content {
  padding: 24px;
}

.preview-chart {
  margin-bottom: 20px;
}

.preview-chart-svg {
  width: 100%;
}

.preview-widgets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pw-card {
  padding: 20px;
  border-radius: var(--radius-sm);
}

.pw-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.pw-header i {
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
}

.pw-tabs {
  display: flex;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 16px;
}

.pw-tabs span {
  flex: 1;
  text-align: center;
  padding: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}

.pw-tabs span.active {
  background: var(--brand-gradient);
  color: var(--dark);
}

.pw-input-group {
  margin-bottom: 12px;
}

.pw-input-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.pw-input {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
}

.pw-input span:last-child {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.pw-balance-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pw-balance-change {
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.pw-coins {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pw-coins > div {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--glass-border);
}

.pw-coins > div:last-child {
  border-bottom: none;
}

.pw-coins span:first-child {
  color: var(--text-muted);
}

/* ===== REWARDS ===== */
.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reward-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.reward-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.reward-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, var(--glass-border) 40%, var(--glass-border) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: var(--transition);
}

.reward-card:hover::before {
  background: var(--brand-gradient);
}

.reward-featured {
  transform: scale(1.05);
}

.reward-featured::before {
  background: var(--brand-gradient);
}

.reward-featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.reward-badge {
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--brand-gradient);
  color: white;
  padding: 4px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
}

.reward-tier {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.reward-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reward-cashback {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.reward-cashback strong {
  font-size: 2rem;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
}

.reward-target-reward {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.reward-target {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.reward-percent {
  font-size: 0.85rem;
  color: #d4af37;
  font-weight: 700;
}

.reward-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.reward-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
}

.reward-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.reward-perks li i {
  color: var(--primary);
  font-size: 0.9rem;
}

.reward-btn {
  width: 100%;
  justify-content: center;
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefits-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  animation: float 3s ease-in-out infinite;
}

.benefits-illustration {
  position: relative;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite alternate;
}

.benefits-center-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-gradient);
  border-radius: 30px;
  font-size: 3rem;
  color: var(--dark);
  box-shadow: 0 20px 60px var(--glow-gold);
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.benefits-items {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.benefits-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
}

.benefits-item i {
  color: var(--primary);
}

.benefits-item:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.benefits-item:nth-child(2) {
  top: 10%;
  right: 5%;
  animation-delay: 1s;
}

.benefits-item:nth-child(3) {
  bottom: 15%;
  left: 5%;
  animation-delay: 2s;
}

.benefits-item:nth-child(4) {
  bottom: 15%;
  right: 5%;
  animation-delay: 3s;
}

.benefits-desc {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.benefits-list li i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-swiper {
  padding: 20px 4px 60px;
}

.testimonial-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  height: auto;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #eab308;
  font-size: 0.95rem;
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-info strong {
  font-size: 0.95rem;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.swiper-pagination-bullet {
  background: var(--text-muted);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--primary-light);
  opacity: 1;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  user-select: none;
}

.faq-question i {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* ===== CTA BANNER ===== */
.cta-wrapper {
  position: relative;
  padding: 80px 60px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(155, 107, 24, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.20);
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent 70%);
  transform: translate(-50%, -50%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.cta-founder-logo {
  width: 500px;
  height: 500px;
  object-fit: contain;
  float: left;
  margin-right: 30px;
}

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.0rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-coins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cta-coins i {
  position: absolute;
  font-size: 2rem;
  opacity: 0.08;
  animation: float 8s ease-in-out infinite;
}

.cta-coins .fa-bitcoin {
  top: 20%;
  left: 8%;
  color: var(--primary);
  font-size: 3rem;
}

.cta-coins .fa-ethereum {
  top: 15%;
  right: 12%;
  color: var(--silver);
  font-size: 2.5rem;
  animation-delay: 2s;
}

.cta-coins .fa-solana {
  bottom: 20%;
  right: 8%;
  color: var(--primary-light);
  font-size: 2rem;
  animation-delay: 4s;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 0;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
}

.footer-logo .logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
  letter-spacing: 4px;
}

.footer-logo .logo-caption {
  white-space: nowrap;
  font-size: 0.5rem;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 350px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--brand-gradient);
  color: white;
  transform: translateY(-3px);
  border-color: transparent;
}

.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-newsletter-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.newsletter-input-group {
  display: flex;
  gap: 8px;
}

.newsletter-input-group input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-input-group input::placeholder {
  color: var(--text-muted);
}

.newsletter-input-group input:focus {
  border-color: var(--primary);
}

.newsletter-input-group button {
  padding: 12px 18px;
  border-radius: var(--radius-sm);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--text-primary);
}

/* ===== PARTICLES ===== */
.particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary-lighter);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.8; }
  80% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-300px) scale(1); }
}

/* ===== TABS ===== */
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--glass-border);
}

.tab-btn:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: var(--brand-gradient);
  color: var(--dark);
  border-color: transparent;
  box-shadow: 0 4px 24px var(--glow-gold);
}

.tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
}

/* ===== RANK GRID ===== */
.rank-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================================
   DASHBOARD & UTILITY STYLES (Gold Theme)
   ============================================================ */

.section-padding {
  padding: 80px 0;
}

.gradient-text-purple {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-green {
  background: linear-gradient(135deg, #75C06B 0%, #00FF55 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: rgba(19, 19, 19, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.glass-card-hover:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow-gold);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.btn-secondary {
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-glow-gold);
}

.btn-gold {
  background: linear-gradient(135deg, var(--primary), var(--gold-dark));
  color: #050505;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-green {
  background: linear-gradient(135deg, #75C06B, #00FF55);
  color: #050505;
  box-shadow: 0 4px 15px rgba(0, 255, 85, 0.3);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 255, 85, 0.5);
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.input-field {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.input-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.input-field::placeholder {
  color: var(--text-tertiary);
}

.input-field.error {
  border-color: #FF494A;
}

.select-field {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23ffffff'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.select-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
}

.badge-purple {
  background: rgba(212, 175, 55, 0.2);
  color: var(--primary);
}

.badge-gold {
  background: rgba(212, 175, 55, 0.2);
  color: var(--primary);
}

.badge-green {
  background: rgba(77, 210, 100, 0.15);
  color: #4DD264;
}

.badge-red {
  background: rgba(255, 73, 74, 0.2);
  color: #FF494A;
}

.badge-blue {
  background: rgba(79, 148, 255, 0.2);
  color: #4F94FF;
}

.matrix-btn {
  padding: 4px 12px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #8d3bc7, #6a1bb5);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-primary);
}

.matrix-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(141, 59, 199, 0.5);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.5);
}

/* Selection */
::selection {
  background: var(--primary);
  color: #050505;
}

/* Glow orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.glow-orb-purple {
  width: 300px;
  height: 300px;
  background: rgba(212, 175, 55, 0.15);
}

.glow-orb-pink {
  width: 250px;
  height: 250px;
  background: rgba(244, 197, 66, 0.12);
}

.glow-orb-blue {
  width: 280px;
  height: 280px;
  background: rgba(212, 175, 55, 0.1);
}

.glow-orb-gold {
  width: 200px;
  height: 200px;
  background: rgba(212, 175, 55, 0.1);
}

/* Legacy Header/Navbar (for dashboard pages) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  position: relative;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--text-primary);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-gradient);
  transition: width 0.3s ease;
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

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

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 20px;
}

/* Text utilities */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: all 0.3s ease;
  position: relative;
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 18px;
  transition: all 0.3s ease;
}

.modal-close:hover {
  border-color: #FF494A;
  color: #FF494A;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Toast */
.toast-container {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  min-width: 300px;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.35s ease;
}

.toast.success {
  border-color: #4DD264;
}

.toast.error {
  border-color: #FF494A;
}

.toast.warning {
  border-color: var(--primary);
}

.toast.info {
  border-color: #4F94FF;
}

.toast-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.toast.success .toast-icon { color: #4DD264; }
.toast.error .toast-icon { color: #FF494A; }
.toast.warning .toast-icon { color: var(--primary); }
.toast.info .toast-icon { color: #4F94FF; }

.toast-content {
  flex: 1;
}

.toast-title {
  font-size: 14px;
  font-weight: 600;
}

.toast-message {
  font-size: 12px;
  color: var(--text-secondary);
}

.toast-close {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--text-tertiary);
  font-size: 14px;
  flex-shrink: 0;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

/* Loader (spinner for dashboard) */
.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-color);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loader-spinner-sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.loader-spinner-lg {
  width: 60px;
  height: 60px;
  border-width: 4px;
}

.loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* Skeleton */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: shimmer-skel 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer-skel {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton-text {
  height: 14px;
  margin-bottom: 8px;
  width: 100%;
}

.skeleton-text-sm {
  height: 10px;
  width: 60%;
}

.skeleton-card {
  height: 160px;
  border-radius: var(--radius-lg);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}

.pagination button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pagination button.active {
  background: var(--brand-gradient);
  border-color: transparent;
  color: #050505;
}

.pagination button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Accordion (dashboard) */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--border-color-light);
}

.accordion-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.accordion-header .accordion-icon {
  transition: transform 0.3s ease;
  font-size: 12px;
  color: var(--text-secondary);
}

.accordion-item.active .accordion-header .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
  padding: 0 20px 16px;
}

.accordion-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Table styles */
.table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: rgba(255, 255, 255, 0.03);
}

th {
  padding: 14px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-bottom: 1px solid var(--border-color);
}

td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}

tr:last-child td {
  border-bottom: none;
}

tbody tr {
  transition: all 0.3s ease;
}

tbody tr:hover {
  background: rgba(212, 175, 55, 0.05);
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.3;
}

.empty-state h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Auth pages */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 40px;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header .logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.auth-header .logo img {
  height: 40px;
}

.auth-header h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.auth-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--text-tertiary);
  font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

.auth-footer a {
  color: var(--primary);
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Contract footer (login + app pages) */
.app-contract-footer {
  margin-top: 40px;
  padding: 16px 0 8px;
  border-top: 1px solid var(--border-color);
}

.app-contract-footer--auth {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.app-contract-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  font-size: 12px;
  color: var(--text-tertiary);
}

.app-contract-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 10px;
}

.app-contract-link {
  color: var(--primary, #D4AF37);
  text-decoration: none;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.app-contract-link:hover {
  text-decoration: underline;
  opacity: 0.9;
}

.app-contract-link i {
  font-size: 10px;
  opacity: 0.75;
}

.app-contract-copy {
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border-radius: 8px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.app-contract-copy:hover {
  color: var(--primary, #D4AF37);
  border-color: rgba(212, 175, 55, 0.45);
}

/* Page header */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.page-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
}

.page-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* Dashboard Stat cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card.gold::before { background: var(--brand-gradient); }
.stat-card.green::before { background: linear-gradient(90deg, #75C06B, #00FF55); }
.stat-card.blue::before { background: linear-gradient(90deg, #4F94FF, #5FD0F3); }
.stat-card.pink::before { background: linear-gradient(90deg, #F4C542, #D4AF37); }

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-color-light);
}

.stat-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.stat-card.gold .stat-card-icon { background: rgba(212, 175, 55, 0.15); color: var(--primary); }
.stat-card.green .stat-card-icon { background: rgba(77, 210, 100, 0.12); color: #4DD264; }
.stat-card.blue .stat-card-icon { background: rgba(79, 148, 255, 0.15); color: #4F94FF; }
.stat-card.pink .stat-card-icon { background: rgba(244, 197, 66, 0.15); color: #F4C542; }

.stat-card-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-card-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.stat-card-change {
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

.stat-card-change.up { color: #4DD264; }
.stat-card-change.down { color: #FF494A; }

/* Content card */
.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.content-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.content-card-header h3 {
  font-size: 18px;
  font-weight: 600;
}

.content-card-body {
  padding: 24px;
}

/* Wallet connect button */
.wallet-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--brand-gradient);
  border-radius: var(--radius-md);
  color: #050505;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.wallet-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.wallet-btn.connected {
  background: linear-gradient(135deg, #00C853, #00E676);
  box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.wallet-btn.connected:hover {
  box-shadow: 0 6px 25px rgba(0, 200, 83, 0.5);
}

.wallet-btn-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

/* Copy button */
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Address display */
.address-display {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: monospace;
  font-size: 13px;
  color: var(--text-secondary);
}

/* Tooltip */
.tooltip {
  position: relative;
  display: inline-flex;
}

.tooltip-text {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-primary);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.tooltip:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}

/* Count up animation */
.count-up {
  display: inline-block;
}

/* Progress bar */
.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 1s ease;
}

.progress-bar-fill.gold { background: var(--brand-gradient); }
.progress-bar-fill.green { background: linear-gradient(90deg, #75C06B, #00FF55); }
.progress-bar-fill.blue { background: linear-gradient(90deg, #4F94FF, #5FD0F3); }

/* Level indicators */
.level-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
}

.level-badge.l1 { background: rgba(212, 175, 55, 0.2); color: var(--primary); }
.level-badge.l2 { background: rgba(244, 197, 66, 0.2); color: var(--primary-light); }
.level-badge.l3 { background: rgba(212, 175, 55, 0.2); color: var(--primary); }
.level-badge.l4 { background: rgba(255, 215, 0, 0.15); color: var(--primary-lighter); }

/* Animation keyframes */
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== RESPONSIVE (merged from target) ===== */
@media (max-width: 1366px) {
  .container { max-width: 1100px; }
  .hero-title { font-size: 2.2rem; }
  .hero-container { gap: 40px; }
  .hero {padding-top: 140px;}
}

@media (max-width: 1024px) {
  .container { max-width: 960px; }
  .hero-title { font-size: 2.0rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .rewards-grid { grid-template-columns: repeat(2, 1fr); }
  .rank-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { max-width: 100%; padding: 0 16px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  .section-header { margin-bottom: 32px; }

  .navbar {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  .nav-container { flex-wrap: wrap; }
  .nav-links, .nav-buttons { display: none; width: 100%; }
  .nav-links.active { display: flex; flex-direction: column; padding: 12px 0 4px; gap: 2px; }
  .nav-link { font-size: 1rem; padding: 12px 0; }
  .nav-buttons.active { display: flex; flex-direction: column; gap: 10px; padding: 12px 0 16px; border-top: 1px solid rgba(212, 175, 55, 0.15); margin-top: 4px; }
  .nav-buttons.active .nav-btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 0.95rem; }
  .menu-toggle { display: flex; }
  .logo-icon img { width: 50px; height: 50px; }

  .hero { min-height: auto; padding: 100px 0 60px; width: 100%; overflow-x: hidden; }
  .hero-container { grid-template-columns: 1fr; gap: 32px; min-width: 0; overflow: hidden; }
  .hero-container { text-align: left; }
  .hero-gradient { width: 100%; max-width: 400px; height: 400px; right: -10%; top: -20%; }
  .hero-gradient::before { width: 300px; height: 300px; bottom: -10%; left: -10%; }
  .hero-visual { display: block; max-width: 100%; width: 100%; margin: 0 auto; min-width: 0; }
  .hero-content { display: contents; }
  .hero-content > * { max-width: 100%; }
  .hero-badge { order: 1; }
  .hero-title { order: 2; }
  .hero-visual { order: 3; }
  .hero-desc { order: 4; }
  .hero-buttons { order: 5; }
  .hero-stats { order: 6; }
  .hero-badge, .hero-title, .hero-desc, .hero-buttons, .hero-stats { margin-bottom: 0; }
  .hero-title { font-size: 1.6rem; line-height: 1.3; }
  .gradient-text { white-space: normal; }
  .hero-desc { font-size: 0.9rem; max-width: 100%; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-btn { width: 100%; justify-content: center; }
  .hero-stats { display: none; }

  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image { width: 100%; max-width: 100%; overflow: hidden; }
  .about-img-wrapper { width: 100%; max-width: 100%; }
  .about-actual-img { width: 100%; max-width: 100%; height: auto; object-fit: contain; order: -1; }
  .about-text { order: 1; }
  .benefits-grid { grid-template-columns: 1fr; gap: 32px; }
  .benefits-img { height: 250px; order: -1; }
  .benefits-text { order: 1; }

  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 24px 20px; }
  .steps { flex-direction: column; gap: 0; }
  .step { max-width: 100%; }
  .step-connector { transform: rotate(90deg); padding: 8px 0; }

  .rewards-grid { grid-template-columns: 1fr; gap: 20px; }
  .rank-grid { grid-template-columns: 1fr; gap: 20px; }
  .reward-card { padding: 28px 24px; }
  .benefits-list li { font-size: 0.9rem; }

  .faq-item { padding: 16px 20px; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo img { width: 60px; height: 60px; }

  .glass { backdrop-filter: none; background: rgba(20, 20, 20, 0.9); }
  .about-img-glow, .benefits-glow, .hero-gradient { animation: none; }
  .floating-card { animation: none; }
  .preview-widgets { grid-template-columns: 1fr; }
  .reward-featured { transform: none; }
  .reward-featured:hover { transform: translateY(-8px); }
  .cta-wrapper { padding: 40px 24px; }
  .cta-title { font-size: 1.8rem; }
  .cta-content { text-align: center; }
  .cta-founder-logo { float: none; display: block; margin: 0 auto 20px; width: 200px; height: 200px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .floating-card { display: none; }
  .marquee-section { padding: 0 0 60px; }
  .marquee-track { gap: 32px; animation-duration: 16s; }
  .marquee-track img { height: 40px; }
}

@media (max-width: 480px) {
  .container { max-width: 100%; padding: 0 16px; }
  .hero-title { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; }
  .hero-btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.6rem; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .logo-icon img { width: 42px; height: 42px; }
  .dm-cards { grid-template-columns: 1fr; }
}

@media (max-width: 375px) {
  .container { padding: 0 12px; }
  .hero-title { font-size: 1.5rem; }
  .section-title { font-size: 1.4rem; }
  .cta-title { font-size: 1.5rem; }
  .nav-logo { gap: 6px; font-size: 1.2rem; }
  .logo-caption { font-size: 0.5rem; }
  .logo-icon img { width: 36px; height: 36px; }
  .hero-container { gap: 24px; }
}
