:root {
  --bg-dark: #07090e;
  --bg-surface: #0c101a;
  --bg-card: rgba(14, 19, 32, 0.75);
  --bg-card-hover: rgba(22, 30, 50, 0.9);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(56, 189, 248, 0.25);
  
  --primary: #2563eb;
  --primary-light: #38bdf8;
  --primary-glow: rgba(37, 99, 235, 0.4);
  
  --blue-brand: #0284c7;
  --cyan: #00d2ff;
  --cyan-glow: rgba(0, 210, 255, 0.35);
  --green: #10b981;
  --green-glow: rgba(16, 185, 129, 0.3);
  --red: #ef4444;
  --yellow: #f59e0b;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Background Atmospheric Glows */
.bg-gradient-orb {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.16;
}

.orb-1 {
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, #0284c7 0%, rgba(2, 132, 199, 0) 70%);
}

.orb-2 {
  top: 40%;
  left: -200px;
  background: radial-gradient(circle, #2563eb 0%, rgba(37, 99, 235, 0) 70%);
}

.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 9, 14, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  transition: all 0.3s ease;
}

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

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

.brand-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 210, 255, 0.2));
}

.brand-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--primary-light);
  border-radius: 20px;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-download {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(2, 132, 199, 0.65);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

/* Ticker Bar */
.ticker-bar {
  background: #090d16;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
  z-index: 10;
}

.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: tickerSlide 30s linear infinite;
}

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.ticker-symbol {
  font-weight: 700;
  color: var(--text-secondary);
}

.ticker-price {
  font-weight: 600;
  color: #fff;
}

.ticker-change.up {
  color: var(--green);
  font-weight: 600;
}

.ticker-badge {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--primary-light);
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
}

/* Hero Section */
.hero-section {
  padding: 80px 0 60px;
  position: relative;
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--primary-light);
  font-weight: 500;
  margin-bottom: 24px;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 40%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
}

.download-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.dl-subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.dl-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.apk-info-bar {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.check-icon {
  color: var(--cyan);
  font-weight: 800;
}

/* =======================================================
   HERO PHONE MOCKUP (BLUE APK THEME - MATCHING IMAGE 4)
   ======================================================= */
.phone-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-glass {
  width: 100%;
  max-width: 370px;
  background: #0b0f19;
  border: 2px solid rgba(56, 189, 248, 0.2);
  border-radius: 42px;
  padding: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75), 0 0 45px rgba(2, 132, 199, 0.25);
  backdrop-filter: blur(20px);
}

.app-screen {
  background: #0d121f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* App Status Bar */
.phone-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0 4px;
}

.phone-indicators {
  display: flex;
  gap: 6px;
  align-items: center;
}

.sig-5g {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-secondary);
}

/* App Header */
.screen-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-header-left {
  display: flex;
  gap: 8px;
}

.sound-chip, .bell-chip {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: 1px solid var(--border-color);
}

.app-brand-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.mini-app-logo {
  height: 18px;
  width: auto;
}

.mini-app-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
}

.app-header-right {
  display: flex;
  gap: 6px;
}

.lang-chip, .avatar-chip {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
}

.avatar-chip {
  background: linear-gradient(135deg, #0284c7, #2563eb);
  color: #fff;
}

/* Portfolio Card */
.portfolio-hero-card {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.12) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-md);
  padding: 16px;
}

.portfolio-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.portfolio-balance {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-top: 2px;
}

.portfolio-chart-spark {
  width: 70px;
  height: 28px;
}

.sparkline-svg {
  width: 100%;
  height: 100%;
}

.portfolio-ai-pill {
  margin-top: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--primary-light);
}

/* RADIAL BENEFIT WIDGET (MATCHING IMAGE 4 IN APP BLUE) */
.radial-stat-card {
  background: rgba(14, 19, 32, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.radial-container {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radial-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.radial-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 12;
}

.radial-progress {
  fill: none;
  stroke: #0284c7;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 402;
  stroke-dashoffset: 100;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.65));
  transition: stroke-dashoffset 0.8s ease;
}

.radial-center-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.radial-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.radial-percent {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
  color: #38bdf8;
  letter-spacing: -0.01em;
  margin: 2px 0;
}

.radial-amount {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
}

/* Dual Mini Stats */
.radial-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  margin-top: 16px;
}

.stat-mini-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.icon-usd {
  background: rgba(56, 189, 248, 0.15);
  color: var(--primary-light);
}

.icon-streak {
  background: rgba(245, 158, 11, 0.15);
  color: var(--yellow);
}

.stat-mini-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.stat-mini-val {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.claim-action-wrap {
  width: 100%;
  margin-top: 14px;
}

.app-claim-btn {
  width: 100%;
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
  transition: transform 0.15s ease;
}

.app-claim-btn:active {
  transform: scale(0.97);
}

/* Mini Signal Banner */
.mini-signal-banner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
}

.signal-tag.buy {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.65rem;
}

.signal-text {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Key Metrics Section */
.metrics-section {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(12, 16, 26, 0.6);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* =======================================================
   CALCULATOR SECTION (MIN $1K & 3% - 5% DAILY)
   ======================================================= */
.calculator-section {
  padding: 90px 0;
}

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

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

.badge-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
}

.calc-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.input-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.input-header label {
  font-weight: 600;
  font-size: 1.05rem;
}

.calc-val-display {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-light);
}

.styled-range {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  accent-color: #0284c7;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Preset Buttons */
.preset-amounts {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.preset-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.preset-btn:hover, .preset-btn.active {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.4);
  color: #fff;
}

/* Rate Buttons (3%, 4%, 5%) */
.rate-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rate-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 14px 10px;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.rate-btn .r-pct {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.rate-btn .r-name {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.rate-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.rate-btn.active {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.25), rgba(37, 99, 235, 0.25));
  border-color: #38bdf8;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.35);
}

.rate-btn.active .r-pct {
  color: #38bdf8;
}

/* Period Buttons */
.period-buttons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.period-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 10px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.period-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.period-btn.active {
  background: #0284c7;
  border-color: #0284c7;
  color: #fff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

/* Calculator Results */
.calc-results {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.calc-result-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc-result-card.highlight {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.16) 0%, rgba(37, 99, 235, 0.1) 100%);
  border: 1px solid rgba(56, 189, 248, 0.45);
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.2);
}

.res-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.res-value {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
}

.res-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.text-blue { color: #38bdf8; }
.text-cyan { color: var(--cyan); }
.text-glow {
  color: #fff;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.btn-calc-action {
  width: 100%;
  padding: 14px;
}

/* =======================================================
   MARKETS TABLE WITH REAL CRYPTO ICONS (MATCHING IMAGE 2)
   ======================================================= */
.markets-section {
  padding: 90px 0;
  background: #090c15;
}

.market-table-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.market-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.market-table th {
  background: rgba(255, 255, 255, 0.02);
  padding: 18px 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border-color);
}

.market-table td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.95rem;
}

.asset-cell {
  display: flex;
  align-items: center;
  gap: 16px;
}

.crypto-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.crypto-svg {
  width: 40px;
  height: 40px;
  display: block;
}

.asset-name {
  font-weight: 700;
  display: block;
  font-size: 1rem;
}

.asset-symbol {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.price-val {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.change-val.up {
  color: var(--green);
  font-weight: 700;
}

.vol-val {
  color: var(--text-secondary);
  font-weight: 500;
}

.trade-link {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  background: rgba(2, 132, 199, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-block;
}

.trade-link:hover {
  background: #0284c7;
  color: #fff;
  transform: translateY(-1px);
}

/* Features Section */
.features-section {
  padding: 90px 0;
  background: #07090e;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.icon-cyan { background: rgba(56, 189, 248, 0.15); color: #38bdf8; }
.icon-purple { background: rgba(99, 102, 241, 0.15); color: #818cf8; }
.icon-green { background: rgba(16, 185, 129, 0.15); color: var(--green); }
.icon-yellow { background: rgba(245, 158, 11, 0.15); color: var(--yellow); }
.icon-blue { background: rgba(2, 132, 199, 0.15); color: #38bdf8; }
.icon-pink { background: rgba(236, 72, 153, 0.15); color: #f472b6; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Steps Section */
.steps-section {
  padding: 90px 0;
  background: #0a0d16;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(56, 189, 248, 0.2);
  margin-bottom: 12px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FAQ */
.faq-section {
  padding: 90px 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-question {
  padding: 22px 26px;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-toggle {
  font-size: 1.4rem;
  color: var(--primary-light);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 26px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 26px 22px 26px;
}

/* CTA Banner */
.cta-banner {
  padding: 60px 0 90px;
}

.cta-box {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.25) 0%, rgba(37, 99, 235, 0.18) 100%);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
}

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

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 60px 0 40px;
  background: #05070c;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-left {
  max-width: 360px;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 14px 0 24px;
}

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

.footer-right {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 18px;
  color: #fff;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--primary-light);
}

/* Responsive */
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-group, .apk-info-bar {
    justify-content: center;
  }
  
  .calc-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  
  .features-grid, .steps-grid, .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.3rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .features-grid, .steps-grid, .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .period-buttons {
    grid-template-columns: repeat(3, 1fr);
  }

  .preset-amounts {
    flex-wrap: wrap;
  }

  .market-table th:nth-child(4), .market-table td:nth-child(4) {
    display: none;
  }
}
