@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --primary-color: #0dcaf0;
  /* Cyan */
  --secondary-color: #30a883;
  /* Green */
  --accent-color: #a9e682;
  /* Lime */

  /* Woox background scheme (deep dark colors restructured to glassmorphism) */
  --bg-dark: transparent;
  --bg-dark-light: rgba(14, 15, 18, 0.65);
  --bg-dark-lighter: rgba(22, 24, 29, 0.7);
  --bg-widget: rgba(28, 31, 36, 0.75);
  --bg-widget-light: rgba(34, 37, 44, 0.8);

  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(13, 202, 240, 0.4);

  --text-white: #ffffff;
  --text-normal: #e3e8f0;
  /* Brighter text to stand out against background gradient */
  --text-muted: #94a3b8;
  /* Brighter muted text */

  --font-heading: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --transition: all 0.3s ease;
  --shadow-glow: 0 0 20px rgba(13, 202, 240, 0.15);
  --shadow-glow-green: 0 0 20px rgba(48, 168, 131, 0.15);
}

/* Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background: #000201;
  /* Fallback */
  background: -moz-linear-gradient(45deg, #000201 0%, #09aecf 100%) fixed;
  background: -webkit-linear-gradient(45deg, #000201 0%, #09aecf 100%) fixed;
  background: linear-gradient(45deg, #000201 0%, #09aecf 100%) fixed;
  color: var(--text-normal);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-widget-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
  text-align: center;
}

.loader-logo-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  animation: logoPulse 2s infinite ease-in-out;
}

@keyframes logoPulse {

  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
    filter: drop-shadow(0 0 15px var(--primary-color));
  }
}

.loader-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(13, 202, 240, 0.1);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* Buttons (Woox Pill-shaped) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid transparent;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #09b5d5 100%);
  color: #000201;
  box-shadow: 0 4px 20px rgba(13, 202, 240, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(13, 202, 240, 0.4);
  background: linear-gradient(135deg, #0be3ff 0%, var(--primary-color) 100%);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-white);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background-color: #39be95;
  box-shadow: var(--shadow-glow-green);
}

.btn-outline {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
}

.btn-outline:hover {
  background-color: var(--text-white);
  color: var(--bg-dark);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

/* Market App Buttons (Apple / Google Play) */
.btn-market {
  background-color: var(--bg-dark-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.btn-market:hover {
  border-color: var(--primary-color);
  background-color: var(--bg-widget);
  transform: translateY(-2px);
}

.btn-market i {
  font-size: 1.8rem;
}

.btn-market-text {
  display: flex;
  flex-direction: column;
}

.btn-market-text span:first-child {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.btn-market-text span:last-child {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

/* Header & Sticky Nav (Woox Style) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  padding: 16px 0;
  background-color: rgba(14, 15, 18, 0.95);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 38px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--text-white);
  cursor: pointer;
}

/* ===================================================
   GSAP VISIBILITY FIX - Ensure nothing stays hidden
   =================================================== */
.hero-content h1,
.hero-content p,
.hero-buttons,
.hero-support-card,
.hero-users-capsule,
.hero-visual-right .calculator-box,
.torus-wrap,
.section-header,
.about-feature-item,
.services-tabs-nav .tab-btn,
.program-card,
.download-content,
.download-visual,
.timeline-item,
.faq-item,
.contact-info-card,
.contact-form,
footer .footer-col,
footer .footer-about {
  opacity: 1;
  /* Default visible; GSAP will animate FROM 0 */
}

/* ===================================================
   HERO SECTION - Full Immersive 3D Crypto Experience
   =================================================== */
.hero {
  min-height: 100vh;
  padding: 160px 0 100px;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Three.js canvas fills the full hero */
#three-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Particle overlay canvas */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
}

/* Floating coin badges */
.hero-floating-coins {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.coin-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 2, 1, 0.55);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: coinFloat 6s ease-in-out infinite;
}

.coin-badge small {
  color: var(--secondary-color);
  font-size: 0.65rem;
}

.coin-icon {
  font-size: 1.1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 202, 240, 0.15);
  color: var(--primary-color);
}

.coin-btc {
  top: 18%;
  right: 5%;
  animation-delay: 0s;
}

.coin-eth {
  top: 55%;
  right: 2%;
  animation-delay: 1.5s;
}

.coin-ton {
  top: 30%;
  right: 38%;
  animation-delay: 0.8s;
}

.coin-usdt {
  top: 70%;
  right: 40%;
  animation-delay: 2.2s;
}

@keyframes coinFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-12px) rotate(1deg);
  }

  75% {
    transform: translateY(8px) rotate(-1deg);
  }
}

/* Main hero grid */
.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 3;
  width: 100%;
}

/* Hero pill badge */
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border-radius: 50px;
  background: linear-gradient(90deg, rgba(13, 202, 240, 0.06), rgba(48, 168, 131, 0.06));
  border: 1px solid rgba(13, 202, 240, 0.3);
  font-size: 0.75rem;
  color: var(--primary-color);
  margin-bottom: 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.hero-pill-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(13, 202, 240, 0.15), transparent);
  animation: badgeShine 3s infinite ease-in-out;
}

@keyframes badgeShine {
  0% {
    left: -100%;
  }

  60%,
  100% {
    left: 150%;
  }
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 202, 240, 0.2);
  animation: pillPulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pillPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(13, 202, 240, 0.2);
  }

  50% {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(13, 202, 240, 0.08), 0 0 12px rgba(13, 202, 240, 0.5);
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO HEADING â€” Premium Syne Display
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.0;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -2px;
}

@keyframes heroTitleIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.h1-line1 {
  display: block;
  font-size: 0.62em;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--primary-color);
  margin-bottom: 6px;
  text-shadow: 0 0 20px rgba(13, 202, 240, 0.35);
  animation: heroTitleIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.h1-line2 {
  display: block;
  background: linear-gradient(135deg, #0dcaf0 0%, #30a883 50%, #a9e682 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroTitleIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both, gradientShift 4s ease-in-out infinite;
  position: relative;
  filter: drop-shadow(0 4px 15px rgba(13, 202, 240, 0.25));
}

.h1-line2::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #0dcaf0 0%, #30a883 50%, #a9e682 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(20px);
  opacity: 0.4;
  animation: gradientShift 4s ease-in-out infinite;
  pointer-events: none;
}

.h1-line3 {
  display: block;
  color: var(--text-white);
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5), 0 0 40px rgba(13, 202, 240, 0.15);
  animation: heroTitleIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* text-gradient helper (used elsewhere) */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.05rem;
  font-family: 'Space Grotesk', sans-serif;
  color: rgba(227, 232, 240, 0.85);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.8;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  animation: heroTitleIn 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  animation: heroTitleIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Live Stats Strip
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-live-stats {
  display: flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  max-width: 460px;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: left;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(14, 15, 18, 0.5);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  margin-right: 8px;
}

.stat-item:last-child {
  margin-right: 0;
}

.stat-item:hover {
  border-color: rgba(13, 202, 240, 0.3);
  background: rgba(13, 202, 240, 0.05);
  transform: translateY(-2px);
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
  background: linear-gradient(135deg, #0dcaf0, #30a883);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Space Grotesk', sans-serif;
}

.stat-divider {
  display: none;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO RIGHT COLUMN
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-visual-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 3;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 20px 0;
}

/* Users Capsule */
.hero-users-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(14, 15, 18, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  transition: all 0.3s ease;
  align-self: center;
  /* Center-align */
}

.hero-users-capsule:hover {
  border-color: rgba(13, 202, 240, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 202, 240, 0.12);
}

.user-avatars {
  display: flex;
}

.avatar-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(13, 202, 240, 0.3);
  background-size: cover;
  background-position: center;
  margin-right: -6px;
}

.avatar-circle:last-child {
  margin-right: 0;
}

.capsule-text div:first-child {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-white);
  letter-spacing: 0.3px;
}

.capsule-text div:last-child {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-family: 'Space Grotesk', sans-serif;
}

/* ══════════════════════════════════════════
   HERO 3D COIN ANIMATION
   ══════════════════════════════════════════ */
.hero-coin-scene {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
  perspective-origin: center center;
  flex-shrink: 0;
}

/* ── Orbital rings ── */
.coin-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  pointer-events: none;
}

.orbit-1 {
  width: 230px;
  height: 230px;
  border-color: rgba(13, 202, 240, 0.25);
  box-shadow: 0 0 14px rgba(13, 202, 240, 0.12), inset 0 0 14px rgba(13, 202, 240, 0.08);
  animation: orbitSpin1 8s linear infinite;
}

.orbit-2 {
  width: 200px;
  height: 200px;
  border-color: rgba(48, 168, 131, 0.22);
  box-shadow: 0 0 12px rgba(48, 168, 131, 0.1), inset 0 0 12px rgba(48, 168, 131, 0.06);
  animation: orbitSpin2 12s linear infinite reverse;
}

.orbit-3 {
  width: 170px;
  height: 170px;
  border-color: rgba(13, 202, 240, 0.15);
  border-style: dashed;
  animation: orbitSpin3 18s linear infinite;
}

@keyframes orbitSpin1 {
  from {
    transform: rotateX(72deg) rotateZ(0deg);
  }

  to {
    transform: rotateX(72deg) rotateZ(360deg);
  }
}

@keyframes orbitSpin2 {
  from {
    transform: rotateX(72deg) rotateZ(0deg);
  }

  to {
    transform: rotateX(72deg) rotateZ(360deg);
  }
}

@keyframes orbitSpin3 {
  from {
    transform: rotateX(72deg) rotateZ(0deg);
  }

  to {
    transform: rotateX(72deg) rotateZ(360deg);
  }
}

/* ── 3D Coin ── */
.hero-3d-coin {
  width: 148px;
  height: 148px;
  position: relative;
  transform-style: preserve-3d;
  animation: coinSpin3D 7s ease-in-out infinite;
  cursor: pointer;
  z-index: 5;
}

.hero-3d-coin:hover {
  animation-play-state: paused;
}

@keyframes coinSpin3D {
  0% {
    transform: rotateX(18deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(18deg) rotateY(360deg);
  }
}

.coin-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  overflow: hidden;
}

.coin-front {
  background: radial-gradient(circle at 32% 28%, #22eeff 0%, #0dcaf0 35%, #0a90ad 60%, #044055);
  border: 2.5px solid rgba(13, 202, 240, 0.85);
  box-shadow:
    0 0 35px rgba(13, 202, 240, 0.8),
    0 0 70px rgba(13, 202, 240, 0.45),
    0 0 120px rgba(13, 202, 240, 0.2),
    inset 0 3px 6px rgba(255, 255, 255, 0.35),
    inset 0 -3px 6px rgba(0, 0, 0, 0.25);
  transform: translateZ(10px);
}

.coin-back {
  background: radial-gradient(circle at 32% 28%, #5affc8 0%, #30a883 35%, #1a7057 60%, #0a3828);
  border: 2.5px solid rgba(48, 168, 131, 0.85);
  box-shadow:
    0 0 35px rgba(48, 168, 131, 0.8),
    0 0 70px rgba(48, 168, 131, 0.45),
    0 0 120px rgba(48, 168, 131, 0.2),
    inset 0 3px 6px rgba(255, 255, 255, 0.35),
    inset 0 -3px 6px rgba(0, 0, 0, 0.25);
  transform: rotateY(180deg) translateZ(10px);
}

.coin-inner-ring {
  position: absolute;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.coin-glyph {
  font-size: 3.8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.98);
  font-family: 'Syne', sans-serif;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.7), 0 3px 6px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1;
  letter-spacing: -2px;
  line-height: 1;
}

.coin-shine-layer {
  position: absolute;
  top: -25%;
  left: -20%;
  width: 75%;
  height: 65%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, transparent 55%);
  border-radius: 50%;
  pointer-events: none;
  animation: coinShimmer 7s ease-in-out infinite;
}

@keyframes coinShimmer {

  0%,
  100% {
    opacity: 0.8;
  }

  50% {
    opacity: 0.15;
  }
}

/* ── Floating particles ── */
.coin-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: cpFloat 3s ease-in-out infinite;
}

.cp1 {
  width: 9px;
  height: 9px;
  background: rgba(13, 202, 240, 0.9);
  top: 12%;
  right: 6%;
  animation-duration: 3.2s;
  animation-delay: 0s;
}

.cp2 {
  width: 7px;
  height: 7px;
  background: rgba(48, 168, 131, 0.9);
  bottom: 18%;
  left: 7%;
  animation-duration: 4s;
  animation-delay: 0.4s;
}

.cp3 {
  width: 6px;
  height: 6px;
  background: rgba(183, 248, 128, 0.8);
  top: 48%;
  right: 1%;
  animation-duration: 2.8s;
  animation-delay: 0.9s;
}

.cp4 {
  width: 5px;
  height: 5px;
  background: rgba(13, 202, 240, 0.7);
  bottom: 8%;
  right: 18%;
  animation-duration: 3.6s;
  animation-delay: 1.3s;
}

.cp5 {
  width: 4px;
  height: 4px;
  background: rgba(48, 168, 131, 0.8);
  top: 22%;
  left: 3%;
  animation-duration: 4.5s;
  animation-delay: 2s;
}

@keyframes cpFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-16px) scale(1.4);
    opacity: 1;
    box-shadow: 0 0 10px currentColor;
  }
}

/* ── Price badge ── */
.coin-price-badge {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5, 7, 10, 0.88);
  border: 1px solid rgba(13, 202, 240, 0.35);
  border-radius: 24px;
  padding: 5px 16px 5px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(16px);
  white-space: nowrap;
  z-index: 6;
  box-shadow: 0 4px 20px rgba(13, 202, 240, 0.2);
  animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-7px);
  }
}

.cpb-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.cpb-sep {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
}

.cpb-value {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.76rem;
  color: var(--text-white);
}

.cpb-change {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: #30e88a;
  font-weight: 700;
}

/* ── Base glow shadow ── */
.coin-base-glow {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 22px;
  background: radial-gradient(ellipse, rgba(13, 202, 240, 0.45) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  animation: glowPulse3d 3.5s ease-in-out infinite;
}

@keyframes glowPulse3d {

  0%,
  100% {
    opacity: 0.5;
    width: 130px;
  }

  50% {
    opacity: 0.9;
    width: 170px;
  }
}

/* ══════════════════════════════════════════
   HERO SWAP CARD — Neon Terminal Design
   ══════════════════════════════════════════ */
.hero-swap-card {
  position: relative;
  background: rgba(6, 8, 10, 0.85) !important;
  backdrop-filter: blur(28px) !important;
  -webkit-backdrop-filter: blur(28px) !important;
  border: 1px solid rgba(13, 202, 240, 0.18) !important;
  border-radius: 20px !important;
  box-shadow:
    0 0 0 1px rgba(13, 202, 240, 0.04),
    0 32px 64px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(13, 202, 240, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  overflow: hidden !important;
}

/* Scan-line shimmer across top of card */
.hero-swap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(13, 202, 240, 0.8), rgba(48, 168, 131, 0.6), transparent);
  animation: scanLine 4s infinite ease-in-out;
  z-index: 1;
}

@keyframes scanLine {
  0% {
    left: -100%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 200%;
    opacity: 0;
  }
}

/* Glow orb behind card */
.hero-swap-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(13, 202, 240, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.swap-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.swap-card-header h4 {
  font-family: 'Syne', sans-serif;
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
}

.swap-card-header h4 i {
  color: var(--primary-color);
  font-size: 1rem;
  filter: drop-shadow(0 0 6px rgba(13, 202, 240, 0.6));
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(48, 168, 131, 0.08);
  border: 1px solid rgba(48, 168, 131, 0.25);
  border-radius: 50px;
  font-size: 0.68rem;
  color: var(--secondary-color);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--secondary-color);
  box-shadow: 0 0 6px var(--secondary-color);
  animation: livePulse 1.2s infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

/* â”€â”€ Swap Input Token Rows â”€â”€ */
.calc-row {
  position: relative;
  z-index: 2;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.calc-input-wrapper {
  display: flex;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.calc-input-wrapper:focus-within {
  border-color: rgba(13, 202, 240, 0.5);
  box-shadow: 0 0 0 3px rgba(13, 202, 240, 0.08), 0 0 20px rgba(13, 202, 240, 0.1);
}

.calc-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 16px;
  color: var(--text-white);
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  min-width: 0;
}

.calc-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.calc-select {
  background: rgba(13, 202, 240, 0.08);
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  outline: none;
  padding: 0 16px;
  color: var(--primary-color);
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%230dcaf0'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  letter-spacing: 0.5px;
}

.calc-select option {
  background: #0a0c0e;
  color: #fff;
}

/* Crypto Ticker Slider (Woox Outlined Boxes Layout) */
.ticker-container {
  width: 100%;
  background-color: var(--bg-dark-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.ticker-wrapper {
  display: flex;
  width: max-content;
  animation: ticker 30s infinite linear;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 24px;
  margin: 0 15px;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-heading);
}

.ticker-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-white);
}

.ticker-price {
  font-weight: 600;
  font-size: 0.8rem;
}

.ticker-change {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.ticker-up {
  color: var(--secondary-color);
  background: rgba(48, 168, 131, 0.1);
}

.ticker-down {
  color: #fe3235;
  background: rgba(254, 50, 53, 0.1);
}

/* Sections General */
section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Cards (Woox Flat Dark Box Style) */
.card {
  background-color: var(--bg-dark-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

/* About / Feature Section (Woox Split grid) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about-feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 8px;
  background-color: var(--bg-dark-light);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.about-feature-item:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(48, 168, 131, 0.1);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.about-feature-text h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.about-feature-text p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Services Tabs (Woox style) */
.services-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 20px;
  /* Rounded pill tabs */
  background-color: var(--bg-dark-light);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  opacity: 1 !important;
  visibility: visible !important;
}

.tab-btn:hover {
  color: var(--text-white);
  border-color: var(--primary-color);
}

.tab-btn.active {
  background-color: var(--primary-color) !important;
  color: #000201 !important;
  border-color: var(--primary-color) !important;
  box-shadow: var(--shadow-glow) !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-weight: 800 !important;
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.tab-content.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* Calculators (Woox Dark Flat Input Widgets) */
.calculator-box {
  background-color: var(--bg-dark-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.calc-row {
  margin-bottom: 20px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-input-wrapper {
  display: flex;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  /* Squared inputs */
  padding: 10px 14px;
  align-items: center;
  transition: var(--transition);
}

.calc-input-wrapper:focus-within {
  border-color: var(--primary-color);
}

.calc-input {
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 700;
  width: 100%;
  outline: none;
}

.calc-select {
  background-color: var(--bg-dark-light);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  border-radius: 4px;
  padding: 6px 12px;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  outline: none;
}

.calc-divider {
  display: flex;
  justify-content: center;
  margin: -10px 0 10px;
}

.calc-divider-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.calc-divider-btn:hover {
  background-color: var(--primary-color);
  color: var(--bg-dark);
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-color);
  font-size: 0.85rem;
}

.calc-result-row:last-child {
  border-bottom: none;
}

.calc-value-green {
  color: var(--secondary-color);
  font-weight: 700;
}

.calc-range {
  width: 100%;
  height: 5px;
  background-color: var(--border-color);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  margin-top: 10px;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  cursor: pointer;
}

/* Staking APY badge styling */
#reward-rate {
  font-family: var(--font-heading);
}

/* TradeON Program */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program-card {
  text-align: center;
  border: 1px solid var(--border-color);
}

.program-card.featured {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.program-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.program-title {
  font-size: 1.15rem;
  margin-bottom: 15px;
}

.program-benefit {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 25px;
}

.program-rate {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 25px;
  font-family: var(--font-heading);
}

/* Download Android App (Woox Mockup Grid Layout) */
.download-section {
  background-color: var(--bg-dark-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.download-visual {
  display: flex;
  justify-content: center;
}

.mockup-container {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  /* Soft squared borders */
  border: 8px solid var(--bg-widget-light);
  overflow: hidden;
  background-color: var(--bg-dark);
}

.download-features-list {
  list-style: none;
  margin-bottom: 30px;
}

.download-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-normal);
}

.download-features-list li i {
  color: var(--secondary-color);
  font-size: 1rem;
}

.btn-download-custom {
  background-color: var(--primary-color);
  color: var(--bg-dark);
  padding: 16px 36px;
  font-weight: 700;
  border-radius: 30px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border: none;
  overflow: hidden;
  position: relative;
}

.btn-download-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.download-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: var(--text-white);
  width: 0%;
  transition: width 0.1s linear;
}

/* How It Works (Woox Roadmap Style Timeline) */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 0%;
  background-color: var(--primary-color);
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(13, 202, 240, 0.4);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-dark);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-item:nth-child(even) .timeline-badge {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.timeline-panel {
  width: 44%;
  background-color: var(--bg-dark-light);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 24px;
  position: relative;
  transition: var(--transition);
}

.timeline-panel:hover {
  border-color: var(--border-hover);
}

.timeline-item:nth-child(odd) .timeline-panel {
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-panel {
  margin-left: auto;
}

.timeline-panel h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.timeline-item:nth-child(even) .timeline-panel h3 {
  color: var(--secondary-color);
}

.timeline-panel p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* FAQ Accordion (Flat Borders) */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: var(--bg-dark-light);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.faq-item.active {
  border-color: var(--primary-color);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
  transition: max-height 0.3s ease-in-out;
}

.faq-icon {
  font-size: 0.85rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Contact Us (Woox split layout: Info left, Form columns right) */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  display: flex;
  gap: 15px;
  align-items: center;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-dark-light);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info-text h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-text p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-control-custom {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  /* Squared form inputs */
  padding: 14px 18px;
  color: var(--text-white);
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control-custom:focus {
  border-color: var(--primary-color);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 130px;
}

/* Footer (Woox Grid footer) */
footer {
  background-color: var(--bg-dark-light);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 0.8fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-about img {
  height: 38px;
  margin-bottom: 20px;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 25px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--primary-color);
  color: var(--bg-dark);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-legal-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.footer-legal-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-legal-links a:hover {
  color: var(--primary-color);
}

/* Standalone Blog Page Styling (Woox news grid) */
.blog-hero {
  padding: 140px 0 60px;
  background-color: var(--bg-dark);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-image {
  height: 180px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--secondary-color);
  color: var(--text-white);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-title {
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--text-white);
}

.blog-card:hover .blog-title {
  color: var(--primary-color);
}

.blog-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-link {
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card:hover .blog-link i {
  transform: translateX(4px);
}

.blog-search-bar {
  max-width: 500px;
  margin: 0 auto 30px;
}

/* Responsiveness */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem !important;
  }

  .hero-grid,
  .about-grid,
  .services-card-layout,
  .download-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .program-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-badge {
    left: 20px;
  }

  .timeline-panel {
    width: calc(100% - 50px);
    margin-left: 50px !important;
    text-align: left !important;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .program-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL NEW UTILITIES
   ═══════════════════════════════════════════════════════════ */
.section-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(13, 202, 240, 0.07);
  border: 1px solid rgba(13, 202, 240, 0.22);
  border-radius: 50px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--primary-color);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-white);
  margin-bottom: 18px;
  letter-spacing: -1.5px;
}

.section-heading em {
  font-style: normal;
}

/* Text gradient inline */
.tgi {
  background: linear-gradient(135deg, #0dcaf0 0%, #30a883 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header-premium {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  font-family: var(--font-body);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION — Bento Grid
   ═══════════════════════════════════════════════════════════ */
.about-section {
  padding: 110px 0 80px;
  position: relative;
}

.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-caps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 10px;
}

.cap-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-normal);
  font-size: 0.93rem;
}

.cap-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(13, 202, 240, 0.1);
  border: 1px solid rgba(13, 202, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Bento Grid */
.about-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bento-card {
  background: rgba(14, 16, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(20px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  border-color: rgba(13, 202, 240, 0.28);
  box-shadow: 0 12px 40px rgba(13, 202, 240, 0.1);
  transform: translateY(-3px);
}

.bc-main {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(13, 202, 240, 0.06) 0%, rgba(14, 16, 20, 0.9) 60%);
  border-color: rgba(13, 202, 240, 0.15);
}

.bc-wide {
  grid-column: 1 / -1;
}

.bc-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(13, 202, 240, 0.15), rgba(48, 168, 131, 0.1));
  border: 1px solid rgba(13, 202, 240, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.bc-icon-sm {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(13, 202, 240, 0.08);
  border: 1px solid rgba(13, 202, 240, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 14px;
}

.bento-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-white);
}

.bento-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-white);
}

.bento-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.bc-glow-pulse {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(13, 202, 240, 0.15) 0%, transparent 70%);
  animation: glowPulse3d 4s ease-in-out infinite;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════════════════ */
.stats-strip {
  background: linear-gradient(90deg, rgba(5, 10, 14, 0.95) 0%, rgba(10, 22, 28, 0.95) 50%, rgba(5, 10, 14, 0.95) 100%);
  border-top: 1px solid rgba(13, 202, 240, 0.12);
  border-bottom: 1px solid rgba(13, 202, 240, 0.12);
  padding: 44px 20px;
  width: 100%;
  overflow: hidden;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-val {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -2px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-pre {
  font-size: 0.6em;
  color: var(--primary-color);
}

.count-num {
  background: linear-gradient(135deg, #0dcaf0, #30a883);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stat-sep {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(13, 202, 240, 0.3), transparent);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION — Upgrade
   ═══════════════════════════════════════════════════════════ */
.services-section {
  padding: 110px 0;
  background: rgba(2, 10, 14, 0.35);
  border-top: 1px solid rgba(13, 202, 240, 0.06);
  border-bottom: 1px solid rgba(13, 202, 240, 0.06);
}

.service-info h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.service-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}

.service-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-normal);
  font-size: 0.93rem;
}

.service-feature-list li i {
  color: var(--secondary-color);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   TRADEON PROGRAM — Dual Cards
   ═══════════════════════════════════════════════════════════ */
.program-section {
  padding: 110px 0;
  position: relative;
}

.program-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.pcard {
  background: rgba(12, 14, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  min-height: 520px;
}

.roi-pcard {
  border-color: rgba(13, 202, 240, 0.15);
  background: linear-gradient(145deg, rgba(13, 202, 240, 0.04) 0%, rgba(10, 14, 18, 0.95) 60%);
}

.roi-pcard:hover {
  border-color: rgba(13, 202, 240, 0.35);
  box-shadow: 0 20px 60px rgba(13, 202, 240, 0.12);
}

.ref-pcard {
  border-color: rgba(48, 168, 131, 0.15);
  background: linear-gradient(145deg, rgba(48, 168, 131, 0.04) 0%, rgba(10, 14, 18, 0.95) 60%);
}

.ref-pcard:hover {
  border-color: rgba(48, 168, 131, 0.35);
  box-shadow: 0 20px 60px rgba(48, 168, 131, 0.12);
}

.pcard-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  padding: 5px 14px;
  background: rgba(13, 202, 240, 0.08);
  border: 1px solid rgba(13, 202, 240, 0.2);
  border-radius: 50px;
  display: inline-block;
  width: fit-content;
}

.ref-pcard .pcard-label {
  color: var(--secondary-color);
  background: rgba(48, 168, 131, 0.08);
  border-color: rgba(48, 168, 131, 0.2);
}

.pcard-title {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text-white);
}

.pcard-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.pcard-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pcard-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-normal);
}

.pcard-feats li i {
  color: var(--secondary-color);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ROI animated bar chart */
.roi-chart-visual {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rc-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, rgba(13, 202, 240, 0.3), rgba(13, 202, 240, 0.6));
  border-radius: 4px 4px 0 0;
  position: relative;
  animation: rcBarGrow 1.2s ease-out both;
  transition: height 0.4s ease;
}

.rc-bar-peak {
  background: linear-gradient(to top, rgba(13, 202, 240, 0.6), #0dcaf0);
  box-shadow: 0 0 16px rgba(13, 202, 240, 0.6);
}

@keyframes rcBarGrow {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
  }

  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

/* Referral SVG network */
.ref-network-visual {
  padding: 10px 0;
}

.rn-svg {
  width: 100%;
  max-height: 90px;
}

/* Guarantee strip */
.prog-guarantee-strip {
  background: rgba(13, 202, 240, 0.04);
  border: 1px solid rgba(13, 202, 240, 0.15);
  border-radius: 20px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pgs-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  white-space: nowrap;
  flex-shrink: 0;
}

.pgs-item i {
  font-size: 1.3rem;
}

.pgs-sep {
  width: 1px;
  height: 36px;
  background: rgba(13, 202, 240, 0.2);
  flex-shrink: 0;
}

.prog-guarantee-strip>p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════
   HOW TRADEON WORKS — Step Grid
   ═══════════════════════════════════════════════════════════ */
.hiw-section {
  padding: 110px 0;
  background: rgba(3, 12, 16, 0.4);
  border-top: 1px solid rgba(13, 202, 240, 0.06);
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.hiw-step-wide {
  grid-column: 1 / -1;
}

.hiw-step {
  background: rgba(12, 15, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(16px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.hiw-step:hover {
  border-color: rgba(13, 202, 240, 0.22);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13, 202, 240, 0.08);
}

.hiw-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(135deg, rgba(13, 202, 240, 0.4), rgba(48, 168, 131, 0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hiw-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.hiw-body p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.hiw-step-wide .hiw-body {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.hiw-step-wide .hiw-body p {
  flex: 1;
}

/* Why Choose TradeON */
.why-tradeon {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.why-tradeon h3 {
  margin-bottom: 40px;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(13, 202, 240, 0.06);
  border: 1px solid rgba(13, 202, 240, 0.18);
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--text-normal);
  transition: border-color 0.3s, background 0.3s;
}

.why-item:hover {
  border-color: rgba(13, 202, 240, 0.4);
  background: rgba(13, 202, 240, 0.1);
}

.why-item i {
  color: var(--primary-color);
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION — Premium
   ═══════════════════════════════════════════════════════════ */
.faq-section {
  padding: 110px 0;
}

/* Override generic faq-item styles */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════ */
.contact-section {
  padding: 110px 0;
  background: rgba(2, 10, 14, 0.35);
  border-top: 1px solid rgba(13, 202, 240, 0.06);
}

/* ═══════════════════════════════════════════════════════════
   LEGAL MODALS
   ═══════════════════════════════════════════════════════════ */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.legal-modal.is-open {
  display: flex;
  opacity: 1;
}

.legal-modal-inner {
  position: relative;
  width: 90%;
  max-width: 780px;
  max-height: 88vh;
  background: rgba(10, 14, 18, 0.98);
  border: 1px solid rgba(13, 202, 240, 0.2);
  border-radius: 24px;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 60px rgba(13, 202, 240, 0.08);
  animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modalSlideUp {
  from {
    transform: translateY(40px) scale(0.96);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.legal-modal-close {
  position: sticky;
  top: 20px;
  left: 100%;
  float: right;
  margin: 20px 20px 0 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  z-index: 1;
}

.legal-modal-close:hover {
  background: rgba(13, 202, 240, 0.15);
  color: var(--primary-color);
}

.legal-modal-content {
  padding: 20px 48px 48px;
}

.legal-modal-content h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-family: var(--font-mono);
  margin-bottom: 30px;
}

.legal-modal-content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 28px 0 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-modal-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-modal-content strong {
  color: var(--text-normal);
}

.legal-modal-content em {
  color: var(--text-muted);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM DARK FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, rgba(2, 5, 8, 0.0) 0%, rgba(2, 5, 8, 1) 100%);
  border-top: 1px solid rgba(13, 202, 240, 0.1);
  padding: 80px 0 0;
}

/* Responsive adjustments for new sections */
@media (max-width: 900px) {
  .about-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-bento {
    grid-template-columns: 1fr 1fr;
  }

  .bc-main,
  .bc-wide {
    grid-column: 1 / -1;
  }

  .program-dual-grid {
    grid-template-columns: 1fr;
  }

  .hiw-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hiw-step-wide {
    grid-column: 1 / -1;
  }

  .hiw-step-wide .hiw-body {
    flex-direction: column;
    gap: 10px;
  }

  .stats-inner {
    flex-wrap: wrap;
    gap: 30px;
  }

  .stat-sep {
    display: none;
  }

  .prog-guarantee-strip {
    flex-direction: column;
    gap: 16px;
  }

  .pgs-sep {
    display: none;
  }

  .legal-modal-content {
    padding: 16px 28px 36px;
  }
}

@media (max-width: 600px) {
  .about-bento {
    grid-template-columns: 1fr;
  }

  .bc-sm {
    grid-column: auto;
  }

  .hiw-grid {
    grid-template-columns: 1fr;
  }

  .pcard {
    min-height: auto;
  }

  .why-grid {
    gap: 10px;
  }

  .why-item {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}

/* ═══════════════════════════════════════════════════════════
   TRENDY ANIMATIONS — Keyframes
   ═══════════════════════════════════════════════════════════ */

/* Fade Up + Blur (for text & headings) */
@keyframes fadeUpBlur {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
  }

  60% {
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Clip-path reveal (cinematic wipe for headings) */
@keyframes clipRevealUp {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    clip-path: inset(0% 0 0 0);
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scale pop in (for cards) */
@keyframes scalePopIn {
  0% {
    opacity: 0;
    transform: scale(0.82) translateY(30px);
  }

  70% {
    transform: scale(1.03) translateY(-4px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Slide in from left */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px) skewX(4deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) skewX(0deg);
  }
}

/* Slide in from right */
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(60px) skewX(-4deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) skewX(0deg);
  }
}

/* Number counter pop */
@keyframes counterPop {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }

  70% {
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Glow shimmer for section pills */
@keyframes pillShimmer {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 202, 240, 0);
  }

  50% {
    box-shadow: 0 0 18px 4px rgba(13, 202, 240, 0.35);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(13, 202, 240, 0);
  }
}

/* Floating subtle card hover */
@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Line draw for decorative underlines */
@keyframes lineGrow {
  0% {
    width: 0;
    opacity: 0;
  }

  100% {
    width: 100%;
    opacity: 1;
  }
}

/* Stagger fade (for list items) */
@keyframes staggerFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card flip-in (for bento / hiw cards) */
@keyframes flipInY {
  0% {
    opacity: 0;
    transform: rotateX(30deg) translateY(30px);
  }

  100% {
    opacity: 1;
    transform: rotateX(0deg) translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL — Base & Direction Classes
   ═══════════════════════════════════════════════════════════ */
.sr-hidden {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s ease;
  will-change: opacity, transform;
}

.sr-hidden.sr-up {
  transform: translateY(50px);
  filter: blur(4px);
}

.sr-hidden.sr-left {
  transform: translateX(-60px);
  filter: blur(3px);
}

.sr-hidden.sr-right {
  transform: translateX(60px);
  filter: blur(3px);
}

.sr-hidden.sr-scale {
  transform: scale(0.84) translateY(24px);
  filter: blur(4px);
}

.sr-hidden.sr-flip {
  transform: rotateX(28deg) translateY(30px);
  filter: blur(3px);
}

.sr-hidden.sr-pop {
  transform: scale(0.75) translateY(20px);
  filter: blur(5px);
}

.sr-hidden.sr-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ═══════════════════════════════════════════════════════════
   TEXT ANIMATION — Section Headings & Tags
   ═══════════════════════════════════════════════════════════ */

/* Section tag pills — animate in with glow burst */
.anim-pill {
  opacity: 0;
  animation: fadeUpBlur 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-pill.anim-done {
  animation-play-state: running;
}

.anim-pill.anim-visible {
  animation-name: fadeUpBlur;
}

/* Section headings — clip path cinematic reveal */
.anim-heading {
  opacity: 0;
  animation: clipRevealUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
}

.anim-heading.anim-visible {
  animation-play-state: running;
}

/* Section sub-text — fade+blur */
.anim-text {
  opacity: 0;
  animation: fadeUpBlur 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
}

.anim-text.anim-visible {
  animation-play-state: running;
}

/* Card animation — scale pop */
.anim-card {
  opacity: 0;
  animation: scalePopIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
}

.anim-card.anim-visible {
  animation-play-state: running;
}

/* Left slide elements */
.anim-left {
  opacity: 0;
  animation: slideInLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
}

.anim-left.anim-visible {
  animation-play-state: running;
}

/* Right slide elements */
.anim-right {
  opacity: 0;
  animation: slideInRight 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
}

.anim-right.anim-visible {
  animation-play-state: running;
}

/* Flip-in (bento cards) */
.anim-flip {
  opacity: 0;
  animation: flipInY 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
  transform-origin: top center;
}

.anim-flip.anim-visible {
  animation-play-state: running;
}

/* Stagger delay utility classes */
.anim-d1 {
  animation-delay: 0.05s;
}

.anim-d2 {
  animation-delay: 0.12s;
}

.anim-d3 {
  animation-delay: 0.20s;
}

.anim-d4 {
  animation-delay: 0.30s;
}

.anim-d5 {
  animation-delay: 0.40s;
}

.anim-d6 {
  animation-delay: 0.50s;
}

.anim-d7 {
  animation-delay: 0.60s;
}

.anim-d8 {
  animation-delay: 0.72s;
}

.anim-d9 {
  animation-delay: 0.84s;
}

/* ═══════════════════════════════════════════════════════════
   CARD HOVER — Premium 3D lift + glow
   ═══════════════════════════════════════════════════════════ */
.bento-card,
.hiw-step,
.pcard,
.contact-info-card,
.why-item,
.faq-item,
.calculator-box,
.card {
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.38s ease !important;
}

.bento-card:hover {
  transform: translateY(-10px) scale(1.025) !important;
  box-shadow: 0 22px 50px rgba(13, 202, 240, 0.18), 0 4px 24px rgba(0, 0, 0, 0.3) !important;
}

.hiw-step:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 18px 42px rgba(13, 202, 240, 0.15), 0 4px 16px rgba(0, 0, 0, 0.25) !important;
}

.pcard:hover {
  transform: translateY(-12px) scale(1.015) !important;
  box-shadow: 0 28px 60px rgba(13, 202, 240, 0.2), 0 6px 28px rgba(0, 0, 0, 0.35) !important;
}

.contact-info-card:hover {
  transform: translateY(-6px) scale(1.02) !important;
  box-shadow: 0 14px 36px rgba(48, 168, 131, 0.2) !important;
}

.why-item:hover {
  transform: translateY(-5px) scale(1.06) !important;
  box-shadow: 0 12px 28px rgba(13, 202, 240, 0.2) !important;
  border-color: rgba(13, 202, 240, 0.5) !important;
  color: var(--primary-color) !important;
}

.faq-item:hover {
  transform: translateX(6px) !important;
}

/* ═══════════════════════════════════════════════════════════
   SECTION PILL — glow animation after reveal
   ═══════════════════════════════════════════════════════════ */
.section-tag-pill.anim-visible {
  animation: pillShimmer 2.5s ease 0.4s infinite;
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADING — Gradient text shimmer on .tgi
   ═══════════════════════════════════════════════════════════ */
@keyframes shimmerGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.tgi {
  background: linear-gradient(120deg, #0dcaf0, #30a883, #a9e682, #0dcaf0);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGradient 4s ease infinite;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT CAP-ROW — staggered list reveal
   ═══════════════════════════════════════════════════════════ */
.cap-row {
  transition: transform 0.3s ease, color 0.3s ease;
}

.cap-row:hover {
  transform: translateX(10px);
  color: var(--primary-color);
}

/* ═══════════════════════════════════════════════════════════
   SERVICE FEATURE LIST — hover reveal
   ═══════════════════════════════════════════════════════════ */
.service-feature-list li {
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-feature-list li:hover {
  transform: translateX(8px);
  color: var(--primary-color);
}

/* ═══════════════════════════════════════════════════════════
   DOWNLOAD FEATURES — hover reveal
   ═══════════════════════════════════════════════════════════ */
.download-features-list li {
  transition: transform 0.3s ease;
}

.download-features-list li:hover {
  transform: translateX(8px);
  color: var(--secondary-color);
}

/* ═══════════════════════════════════════════════════════════
   ACTIVE SECTION HEADING UNDERLINE — animated
   ═══════════════════════════════════════════════════════════ */
.section-heading::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  margin-top: 10px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
  opacity: 0;
}

.anim-heading.anim-visible+*,
.anim-heading.anim-visible~.section-sub {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}

.section-heading.underline-active::after {
  width: 72px;
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   SECURE SEND TERMINAL — Form Animations
   ═══════════════════════════════════════════════════════════ */

/* Terminal box entrance — glitch-flash border reveal */
@keyframes terminalBorderIn {
  0% {
    border-color: transparent;
    box-shadow: none;
  }

  30% {
    border-color: rgba(13, 202, 240, 0.8);
    box-shadow: 0 0 24px rgba(13, 202, 240, 0.4), inset 0 0 18px rgba(13, 202, 240, 0.06);
  }

  60% {
    border-color: rgba(13, 202, 240, 0.2);
    box-shadow: 0 0 8px rgba(13, 202, 240, 0.15);
  }

  100% {
    border-color: var(--border-color);
    box-shadow: 0 0 0 rgba(13, 202, 240, 0);
  }
}

/* Heading typewriter cursor blink */
@keyframes cursorBlink {

  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

/* Row slide-in from right with blur */
@keyframes termRowIn {
  0% {
    opacity: 0;
    transform: translateX(40px);
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

/* Input wrapper glow pulse on focus */
@keyframes inputGlowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 202, 240, 0);
  }

  50% {
    box-shadow: 0 0 14px 3px rgba(13, 202, 240, 0.28);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(13, 202, 240, 0);
  }
}

/* Submit button ready state shimmer */
@keyframes btnShimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Spinner rotation */
@keyframes spinIcon {
  100% {
    transform: rotate(360deg);
  }
}

/* Success checkmark pop */
@keyframes successPop {
  0% {
    transform: scale(0) rotate(-30deg);
    opacity: 0;
  }

  70% {
    transform: scale(1.15) rotate(5deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* ── Terminal Box ── */
.terminal-form-box {
  position: relative;
  overflow: hidden;
}

/* Scan-line overlay (subtle CRT effect) */
.terminal-form-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      rgba(13, 202, 240, 0.015) 0px,
      rgba(13, 202, 240, 0.015) 1px,
      transparent 1px,
      transparent 3px);
  pointer-events: none;
  z-index: 0;
  border-radius: 8px;
}

/* Content above scanline */
.terminal-form-box>* {
  position: relative;
  z-index: 1;
}

/* Entrance animation on the box */
.terminal-form-box.terminal-active {
  animation: terminalBorderIn 1s ease forwards;
}

/* ── Terminal Heading — typewriter cursor ── */
.terminal-heading {
  font-family: var(--font-mono) !important;
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
}

.terminal-heading::before {
  content: '> ';
  color: var(--secondary-color);
  font-size: 0.9em;
}

.terminal-heading::after {
  content: '_';
  color: var(--primary-color);
  animation: cursorBlink 0.9s step-end infinite;
  margin-left: 2px;
}

/* ── Form Rows — entrance stagger ── */
.terminal-row {
  opacity: 0;
  transform: translateX(40px);
  filter: blur(6px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.4s ease;
}

.terminal-row.row-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/* ── Input Wrapper — enhanced focus ── */
.terminal-input-wrapper {
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease !important;
}

.terminal-input-wrapper:focus-within {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(13, 202, 240, 0.15),
    0 0 18px rgba(13, 202, 240, 0.12) !important;
  transform: translateY(-2px);
  animation: inputGlowPulse 2s ease infinite;
}

/* Left accent bar on focus */
.terminal-input-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 60%;
  background: var(--primary-color);
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.terminal-input-wrapper:focus-within::before {
  transform: translateY(-50%) scaleY(1);
}

/* ── Input placeholder animation ── */
.terminal-input::placeholder {
  color: rgba(148, 163, 184, 0.4);
  transition: color 0.3s ease, transform 0.3s ease;
}

.terminal-input:focus::placeholder {
  color: rgba(148, 163, 184, 0.2);
  transform: translateX(4px);
}

/* ── Select dropdown ── */
.terminal-select {
  transition: color 0.3s ease !important;
}

.terminal-select:focus {
  color: var(--primary-color) !important;
  outline: none;
}

/* ── Submit button — shimmer + hover ── */
.terminal-submit-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg,
      var(--primary-color) 0%,
      #09b5d5 35%,
      #a9e682 50%,
      #09b5d5 65%,
      var(--primary-color) 100%) !important;
  background-size: 250% auto !important;
  transition: background-position 0.6s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}

.terminal-submit-btn:hover {
  background-position: right center !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 10px 30px rgba(13, 202, 240, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.terminal-submit-btn:active {
  transform: translateY(0) scale(0.98) !important;
  box-shadow: 0 4px 12px rgba(13, 202, 240, 0.25) !important;
}

/* Ripple effect on click */
.terminal-submit-btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleOut 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleOut {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ── Spinner icon ── */
.spin-icon {
  display: inline-block;
  animation: spinIcon 0.8s linear infinite;
}

/* ── Send icon — animate on hover ── */
.terminal-submit-btn .btn-icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.terminal-submit-btn:hover .btn-icon {
  transform: translateX(5px) translateY(-3px) scale(1.2);
}

/* ── Success state ── */
.terminal-form-box.send-success {
  border-color: rgba(48, 168, 131, 0.5);
  box-shadow: 0 0 30px rgba(48, 168, 131, 0.2);
}

.send-success-msg {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(48, 168, 131, 0.12);
  border: 1px solid rgba(48, 168, 131, 0.35);
  border-radius: 8px;
  color: var(--secondary-color);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  margin-top: 14px;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.send-success-msg.show {
  display: flex;
}

/* ── Calc label number badge ── */
.terminal-row .calc-label::before {
  counter-increment: terminal-step;
  content: counter(terminal-step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--primary-color);
  margin-right: 8px;
  opacity: 0.6;
}

#secure-send-form {
  counter-reset: terminal-step;
}

/* ═══════════════════════════════════════════════════════════
   HOW TRADEON WORKS — Connected Step Roadmap
   ═══════════════════════════════════════════════════════════ */
.hiw-roadmap {
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0;
  padding: 20px 0;
}

.roadmap-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(13, 202, 240, 0.4);
}

.roadmap-step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 45px;
  width: 100%;
}

.roadmap-step.step-left {
  justify-content: flex-start;
  padding-right: 50%;
}

.roadmap-step.step-right {
  justify-content: flex-end;
  padding-left: 50%;
}

.roadmap-step.step-center {
  justify-content: center;
  padding: 0;
}

.roadmap-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #061519;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 20px rgba(13, 202, 240, 0.5);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.roadmap-step:hover .roadmap-node {
  transform: translateX(-50%) scale(1.15);
  background: var(--primary-color);
  color: #000201;
}

.roadmap-card {
  background: var(--bg-dark-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  width: 92%;
  max-width: 430px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.roadmap-step.step-center .roadmap-card {
  max-width: 620px;
  margin-top: 20px;
}

.roadmap-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(13, 202, 240, 0.2);
}

.roadmap-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(13, 202, 240, 0.1);
  color: var(--primary-color);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.roadmap-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.roadmap-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .roadmap-line {
    left: 24px;
  }

  .roadmap-node {
    left: 24px;
  }

  .roadmap-step.step-left,
  .roadmap-step.step-right,
  .roadmap-step.step-center {
    padding-left: 65px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .roadmap-card {
    width: 100%;
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   DOWNLOAD APP — Floating Mockup & Store Group
   ═══════════════════════════════════════════════════════════ */
@keyframes floatPhone {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(1.5deg);
  }
}

.floating-mockup img {
  animation: floatPhone 4.5s ease-in-out infinite;
  filter: drop-shadow(0 20px 35px rgba(13, 202, 240, 0.25));
  transition: transform 0.3s ease;
}

.floating-mockup img:hover {
  transform: scale(1.04) rotate(0deg);
}

.download-buttons-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════
   PAGE DISSOLVE TRANSITION OVERLAY
   ═══════════════════════════════════════════════════════════ */
.page-dissolve-overlay {
  position: fixed;
  inset: 0;
  background: #000201;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-dissolve-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.contact-form-card {
  position: relative;
  overflow: hidden;
}

.contact-form-card .form-control-custom {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease !important;
}

.contact-form-card .form-control-custom:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(13, 202, 240, 0.15), 0 0 16px rgba(13, 202, 240, 0.12) !important;
  transform: translateY(-2px);
  outline: none;
}

.contact-submit-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.contact-submit-btn:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 10px 28px rgba(13, 202, 240, 0.35) !important;
}

/* ═══════════════════════════════════════════════════════════
   COMPLETE MOBILE & TABLET RESPONSIVE DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet & Laptop (< 1024px) ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-pill-badge {
    margin: 0 auto 24px;
  }

  .hero-floating-coins {
    display: none;
  }

  .service-card-layout {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
}

/* ── Mobile Devices (< 768px) ── */
@media (max-width: 768px) {

  /* Navigation Drawer */
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(6, 10, 14, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 24px 28px;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-link {
    font-size: 1rem;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* Hero Section Typography */
  .hero {
    padding: 120px 0 60px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 7.5vw, 3rem);
    letter-spacing: -1px;
  }

  .h1-line1 {
    font-size: 0.55em;
    letter-spacing: 3px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Services Tab Bar Horizontal Scroll */
  .services-tabs-nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .services-tabs-nav .tab-btn {
    flex-shrink: 0;
  }

  /* Bento Grid */
  .about-bento {
    grid-template-columns: 1fr;
  }

  /* Stats Strip */
  .stats-inner {
    flex-direction: column;
    gap: 24px;
  }

  .stat-item {
    max-width: 100%;
    width: 100%;
  }

  /* How TradeON Works Roadmap */
  .hiw-roadmap {
    padding: 10px 0;
  }

  .roadmap-line {
    left: 20px !important;
  }

  .roadmap-node {
    left: 20px !important;
  }

  .roadmap-step.step-left,
  .roadmap-step.step-right,
  .roadmap-step.step-center {
    padding-left: 60px !important;
    padding-right: 0 !important;
    justify-content: flex-start !important;
  }

  .roadmap-card {
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column;
    gap: 12px;
  }

  /* Download App Buttons Group */
  .download-buttons-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .download-buttons-group .btn,
  .download-buttons-group .btn-market {
    width: 100%;
    justify-content: center;
  }

  /* Footer Links */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
}

/* ── Extra Small Mobile (< 480px) ── */
@media (max-width: 480px) {
  .section-container {
    padding: 0 16px;
  }

  .calculator-box {
    padding: 20px 16px;
  }

  .hero-content h1 {
    font-size: 1.85rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM CUSTOM CTA BUTTONS (Navbar Top Right & Hero)
   ═══════════════════════════════════════════════════════════ */

/* ── Navbar Top-Right Premium Button ── */
.btn-nav-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(13, 202, 240, 0.14), rgba(48, 168, 131, 0.14));
  border: 1px solid rgba(13, 202, 240, 0.45);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(13, 202, 240, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-nav-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(13, 202, 240, 0.4), transparent);
  transition: left 0.6s ease;
}

.btn-nav-premium:hover::before {
  left: 150%;
}

.btn-nav-premium:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #000201 !important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13, 202, 240, 0.45);
}

.btn-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary-color);
  box-shadow: 0 0 8px var(--secondary-color);
  animation: liveDotPulse 1.8s infinite;
  transition: background 0.3s ease;
}

.btn-nav-premium:hover .btn-live-dot {
  background: #000201;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.btn-nav-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-nav-premium:hover .btn-nav-arrow {
  transform: translateX(4px);
}

@keyframes liveDotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}

/* ── Hero Section Primary CTA Button ── */
.btn-hero-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, #0dcaf0 0%, #09aecf 40%, #30a883 100%);
  background-size: 200% auto;
  color: #000201 !important;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(13, 202, 240, 0.38), 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  z-index: 1;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: linear-gradient(90deg, #0dcaf0, #a9e682, #0dcaf0);
  background-size: 200% auto;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-hero-primary:hover {
  background-position: right center;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 45px rgba(13, 202, 240, 0.55), 0 4px 14px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary:hover::before {
  opacity: 1;
  animation: badgeShine 2s linear infinite;
}

.btn-hero-icon {
  font-size: 1.15rem;
  transition: transform 0.35s ease;
}

.btn-hero-arrow {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.btn-hero-primary:hover .btn-hero-icon {
  transform: translateY(-2px);
}

.btn-hero-primary:hover .btn-hero-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   BLOG ARTICLE READER MODAL STYLES
   ═══════════════════════════════════════════════════════════ */
.blog-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 5, 8, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.blog-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.blog-modal-card {
  background: #090e14;
  border: 1px solid rgba(13, 202, 240, 0.3);
  border-radius: 20px;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(13, 202, 240, 0.15);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-modal-overlay.active .blog-modal-card {
  transform: translateY(0) scale(1);
}

.blog-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid var(--border-color);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.blog-modal-close:hover {
  background: var(--primary-color);
  color: #000;
  border-color: transparent;
  transform: rotate(90deg);
}

.blog-modal-header-img {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.blog-modal-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-modal-body {
  padding: 32px 36px 40px;
}

.blog-modal-heading {
  font-size: 1.85rem;
  font-family: var(--font-heading);
  color: var(--text-white);
  margin: 12px 0 10px;
  line-height: 1.35;
}

.blog-modal-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.blog-article-content p {
  color: var(--text-normal);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.blog-article-content h3 {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 28px 0 14px;
}

.blog-article-content ul,
.blog-article-content ol {
  margin: 0 0 24px 24px;
  color: var(--text-normal);
}

.blog-article-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.blog-article-quote {
  background: rgba(13, 202, 240, 0.06);
  border-left: 4px solid var(--primary-color);
  padding: 18px 24px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-white);
  font-size: 1.05rem;
}

.blog-modal-footer {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}