/* ============================================================
   AUREMY.COM — MAIN STYLESHEET
   Brand palette: Purple #d7c3e3 · Pink #D95583 · Amber #E9A12D
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* Core Colors */
  --bg-primary:    #0a0610;
  --bg-secondary:  #100818;
  --bg-card:       #160c20;
  --bg-card-hover: #1e1030;
  --bg-glass:      rgba(22, 12, 32, 0.75);

  /* Brand Accent Colors */
  --accent-cyan:   #d7c3e3;
  --accent-green:  #E9A12D;
  --accent-gold:   #E9A12D;
  --accent-red:    #D95583;
  --accent-purple: #d7c3e3;
  --accent-pink:   #D95583;
  --accent-amber:  #E9A12D;

  /* Text */
  --text-primary:  #f0ecf5;
  --text-secondary:#b09cc0;
  --text-muted:    #6b5880;
  --text-code:     #D95583;

  /* Borders */
  --border-subtle: rgba(137, 45, 189, 0.12);
  --border-active: rgba(137, 45, 189, 0.45);
  --border-card:   rgba(137, 45, 189, 0.18);

  /* Gradients */
  --grad-brand:   linear-gradient(135deg, #d7c3e3 0%, #D95583 50%, #E9A12D 100%);
  --grad-cyan:    linear-gradient(135deg, #d7c3e3, #D95583);
  --grad-green:   linear-gradient(135deg, #D95583, #E9A12D);
  --grad-dark:    linear-gradient(135deg, #100818, #0a0610);
  --grad-hero:    radial-gradient(ellipse at 60% 40%, rgba(137,45,189,0.14) 0%, transparent 60%),
                  radial-gradient(ellipse at 20% 80%, rgba(217,85,131,0.08) 0%, transparent 50%),
                  radial-gradient(ellipse at 80% 80%, rgba(233,161,45,0.06) 0%, transparent 50%);

  /* Shadows */
  --shadow-glow-cyan:  0 0 30px rgba(137, 45, 189, 0.25);
  --shadow-glow-green: 0 0 30px rgba(233, 161, 45, 0.2);
  --shadow-card:       0 4px 30px rgba(0, 0, 0, 0.5);
  --shadow-btn:        0 0 24px rgba(137, 45, 189, 0.45);

  /* Typography */
  --font-sans:  'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-padding: 60px 0;
  --container-max:   1280px;

  /* Transitions */
  --transition-fast:   0.15s ease;
  --transition-base:   0.3s ease;
  --transition-slow:   0.6s ease;

  /* Border Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
}

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

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ============================================================
   GLOBAL TYPOGRAPHY OVERRIDES
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
}

p, .section-sub, .sol-card-desc, .tab-info p, .liq-content p,
.about-content p, .contact-content p, .path-card p,
.why-card p, .sol-cta-inner p, .testi-text, .hero-sub {
  font-size: 1.05rem;
  font-weight: 500;
  color: #e8eaf0;
}

.sol-card-features li,
.platform-features li,
.liq-list li,
.path-checklist li,
.tech-badge,
.testi-author span,
.footer-tagline,
.footer-col ul li a,
.contact-item {
  font-weight: 500;
  color: #d4d8e8;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.green  { color: var(--accent-green); }
.red    { color: var(--accent-red); }
.cyan   { color: var(--accent-cyan); }
.mono   { font-family: var(--font-mono); }

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-pink);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  opacity: 1;
}

.section-title {
  font-size: clamp(33px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  font-weight: 500;
  color: #e8eaf0;
  max-width: 640px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn:hover::before { opacity: 1; }

/* Primary Button — Brand gradient with glow */
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(137, 45, 189, 0.35);
}

.btn-primary::before {
  background: linear-gradient(135deg, #00f0ff, #00a0ff);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-active);
}

.btn-ghost:hover {
  background: rgba(0, 212, 255, 0.08);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: var(--accent-green);
  border: 1px solid var(--accent-green);
}

.btn-outline:hover {
  background: rgba(0, 255, 136, 0.1);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.25);
  transform: translateY(-2px);
}

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

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
  height: 36px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.ticker-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  background: var(--bg-secondary);
  padding: 0 16px;
  white-space: nowrap;
  flex-shrink: 0;
  border-right: 1px solid var(--border-subtle);
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
}

.ticker-track {
  display: flex;
  gap: 0;
  min-width: max-content;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  border-right: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.ticker-symbol {
  color: var(--text-secondary);
  font-size: 11px;
}

.ticker-price {
  color: var(--text-primary);
  font-weight: 600;
}

.ticker-change.up   { color: var(--accent-green); }
.ticker-change.down { color: var(--accent-red); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0 24px;
  height: 68px;
  background: rgba(9, 13, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow var(--transition-base);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

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

.nav-logo {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 48px;
  width: auto;
}

.logo-bracket {
  color: var(--accent-cyan);
  font-weight: 300;
}

.logo-text {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #ffffff;
  font-family: var(--font-mono);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.nav-link.nav-cta {
  background: var(--grad-cyan);
  color: #000;
  font-weight: 700;
  padding: 8px 20px;
  box-shadow: 0 0 20px rgba(0,212,255,0.25);
}

.nav-link.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(0,212,255,0.4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 40px 24px 40px;
}

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

.hero-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(137, 45, 189, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 45, 189, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(137, 45, 189, 0.1);
  border: 1px solid rgba(137, 45, 189, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--grad-brand);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.hero-headline {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-highlight {
  display: block;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-height: 1.15em;
}

.hero-sub {
  font-size: 18px;
  font-weight: 500;
  color: #e8eaf0;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding-right: 32px;
  margin-right: 0;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
  margin: 0 32px 0 0;
  flex-shrink: 0;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--accent-cyan);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  font-family: var(--font-mono);
}

/* Terminal Float */
.hero-terminal {
  position: absolute;
  right: max(24px, calc(50% - 580px));
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card), var(--shadow-glow-cyan);
  z-index: 2;
  font-family: var(--font-mono);
  animation: floatTerminal 5s ease-in-out infinite;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.t-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.t-red    { background: #ff5f57; }
.t-yellow { background: #ffbd2e; }
.t-green  { background: #28c840; }

.terminal-title {
  font-size: 11px;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}

.terminal-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.t-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.t-prompt { color: var(--accent-pink); }
.t-cmd    { color: var(--text-primary); }
.t-out    { padding-left: 8px; }
.t-ok     { color: var(--accent-amber); font-size: 11px; }

.t-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--accent-cyan);
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

/* ============================================================
   SOLUTIONS SECTION
   ============================================================ */
.solutions {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

.solutions::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,212,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,212,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.sol-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sol-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.sol-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 40px rgba(0,212,255,0.08);
}

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

.sol-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(137, 45, 189, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(0,212,255,0.15);
}

.sol-card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.sol-card-title {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
  line-height: 1.3;
}

.sol-card-desc {
  font-size: 14px;
  font-weight: 500;
  color: #e8eaf0;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.sol-card-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sol-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #d4d8e8;
}

.sol-card-features li i {
  color: var(--accent-green);
  font-size: 11px;
  flex-shrink: 0;
}

.sol-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-top: auto;
  transition: gap var(--transition-fast);
}

.sol-card-link:hover { gap: 10px; }

/* CTA Card */
.sol-card-cta {
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,128,255,0.08));
  border: 1px dashed var(--border-active);
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.sol-cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sol-cta-icon {
  font-size: 36px;
  color: var(--accent-cyan);
}

.sol-cta-inner h3 {
  font-size: 22px;
  font-weight: 700;
}

.sol-cta-inner p {
  font-size: 14px;
  font-weight: 500;
  color: #e8eaf0;
  line-height: 1.6;
}

/* ============================================================
   PLATFORMS SECTION
   ============================================================ */
.platforms {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.platforms-tabs {
  margin-top: 0;
}

.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tab-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-base);
  margin-bottom: -1px;
}

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

.tab-btn.active {
  color: var(--accent-cyan);
  border-bottom-color: var(--accent-cyan);
}

.tab-content {
  display: none;
}

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

.tab-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tab-info h3 {
  font-size: 31px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.tab-info p {
  font-size: 15px;
  font-weight: 500;
  color: #e8eaf0;
  line-height: 1.8;
  margin-bottom: 28px;
}

.platform-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.platform-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #d4d8e8;
}

.platform-features li i {
  color: var(--accent-cyan);
  font-size: 14px;
  flex-shrink: 0;
}

/* Platform mockup */
.platform-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 60px rgba(0,212,255,0.06);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-subtle);
}

.mockup-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}

.mockup-chart {
  padding: 20px;
  background: var(--bg-card);
}

.chart-svg {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.chart-price {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 4px;
}

.price-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.price-val {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.price-change {
  font-family: var(--font-mono);
  font-size: 12px;
}

.price-change.up   { color: var(--accent-green); }
.price-change.down { color: var(--accent-red); }

/* Custom dash */
.custom-dash {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dash-widget {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.widget-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.widget-val {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.widget-val.green { color: var(--accent-green); }

/* Mobile phone mockup */
.mobile-phone-mockup {
  width: 220px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid var(--border-card);
  border-radius: 32px;
  padding: 12px;
  box-shadow: var(--shadow-card), 0 0 60px rgba(0,212,255,0.08);
}

.phone-screen {
  background: var(--bg-secondary);
  border-radius: 22px;
  overflow: hidden;
  padding: 14px;
}

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

.phone-time {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

.phone-header i {
  font-size: 12px;
  color: var(--text-secondary);
}

.phone-balance {
  text-align: center;
  margin-bottom: 10px;
}

.pb-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.pb-val {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.phone-chart-mini {
  margin: 8px 0;
}

.phone-chart-mini svg {
  width: 100%;
}

.phone-asset-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.pa-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  padding: 4px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.pa-item .green { color: var(--accent-green); }
.pa-item .red   { color: var(--accent-red); }

/* ============================================================
   LIQUIDITY SECTION
   ============================================================ */
.liquidity-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.liquidity-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,255,136,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.liquidity-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.liq-content .section-title {
  text-align: left;
  max-width: 480px;
}

.liq-content p {
  font-size: 15px;
  font-weight: 500;
  color: #e8eaf0;
  line-height: 1.8;
  margin-bottom: 32px;
}

.liq-stats-row {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.liq-stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 4px;
}

.liq-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

.liq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.liq-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #d4d8e8;
}

.liq-list li i { color: var(--accent-cyan); font-size: 8px; }

/* Liquidity Feed Panel */
.liq-feed-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 60px rgba(0,255,136,0.05);
}

.liq-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.2);
  padding: 2px 8px;
  border-radius: 100px;
  color: var(--accent-green);
  font-size: 10px;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s infinite;
}

.liq-feed {
  padding: 0;
}

.liq-row {
  display: grid;
  grid-template-columns: 90px 1fr 90px 80px;
  align-items: center;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-fast);
  font-family: var(--font-mono);
  font-size: 13px;
}

.liq-row:hover { background: rgba(0,212,255,0.03); }

.liq-sym {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 12px;
}

.liq-spread-bar {
  padding: 0 12px;
}

.spread-track {
  height: 2px;
  background: var(--border-subtle);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.spread-fill {
  height: 100%;
  background: var(--grad-cyan);
  border-radius: 2px;
  transition: width 1s ease;
}

.liq-bid  { color: var(--accent-green); font-weight: 600; text-align: right; }
.liq-chg  { text-align: right; font-size: 11px; }
.liq-chg.up   { color: var(--accent-green); }
.liq-chg.down { color: var(--accent-red); }

/* ============================================================
   WHY AUREMY SECTION
   ============================================================ */
.why-auremy {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.why-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(137, 45, 189, 0.1);
  border: 1px solid rgba(137,45,189,0.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent-cyan);
  margin-bottom: 18px;
}

.why-card h4 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.why-card p {
  font-size: 13px;
  font-weight: 500;
  color: #e8eaf0;
  line-height: 1.7;
}

/* ============================================================
   BROKER PATHS SECTION
   ============================================================ */
.broker-paths {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.path-card {
  border-radius: var(--radius-xl);
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.path-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.path-new {
  background: linear-gradient(135deg, rgba(0,212,255,0.07), rgba(0,128,255,0.05));
  border: 1px solid rgba(0,212,255,0.2);
}

.path-existing {
  background: linear-gradient(135deg, rgba(0,255,136,0.07), rgba(0,180,100,0.05));
  border: 1px solid rgba(0,255,136,0.2);
}

.path-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.15);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.path-existing .path-tag {
  color: var(--accent-green);
  background: rgba(0,255,136,0.1);
  border-color: rgba(0,255,136,0.15);
}

.path-card h3 {
  font-size: 27px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}

.path-card p {
  font-size: 14px;
  font-weight: 500;
  color: #e8eaf0;
  line-height: 1.8;
  margin-bottom: 24px;
}

.path-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.path-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #d4d8e8;
}

.path-checklist li i {
  color: var(--accent-cyan);
  font-size: 11px;
  flex-shrink: 0;
}

.path-existing .path-checklist li i { color: var(--accent-green); }

/* ============================================================
   STATS BANNER
   ============================================================ */
.stats-banner {
  padding: 60px 24px;
  background: linear-gradient(135deg, #0a1628, #0d1a30);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,212,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.stats-item {
  text-align: center;
  min-width: 120px;
}

.stats-num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--accent-cyan);
  line-height: 1;
  margin-bottom: 6px;
}

.stats-label {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ============================================================
   TECH STACK SECTION
   ============================================================ */
.tech-stack {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.tech-cat {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px;
}

.tech-cat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  opacity: 0.7;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #d4d8e8;
  transition: all var(--transition-fast);
  cursor: default;
}

.tech-badge i {
  color: var(--accent-cyan);
  font-size: 14px;
}

.tech-badge:hover {
  border-color: var(--border-active);
  color: var(--text-primary);
  background: rgba(0,212,255,0.06);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  max-width: 720px;
}

.about-content .section-title { text-align: left; }
.about-content .section-tag { margin-bottom: 14px; }

.about-content p {
  font-size: 15px;
  font-weight: 500;
  color: #e8eaf0;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 32px;
}

.about-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(0,212,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.about-badge i {
  font-size: 22px;
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-badge div { display: flex; flex-direction: column; gap: 2px; }

.about-badge strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.about-badge span {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Metrics card */
.about-metrics-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.metrics-header {
  padding: 14px 18px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.metrics-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-cyan);
  letter-spacing: 0.06em;
}

.metrics-list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric-row {
  display: grid;
  grid-template-columns: 140px 1fr 70px;
  align-items: center;
  gap: 12px;
}

.metric-name {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
}

.metric-bar-wrap {
  height: 6px;
  background: var(--border-subtle);
  border-radius: 3px;
  overflow: hidden;
}

.metric-bar {
  height: 100%;
  width: var(--pct);
  background: var(--grad-cyan);
  border-radius: 3px;
  transition: width 1.5s ease;
}

.metric-bar.bar-accent2 { background: var(--grad-green); }

.metric-val {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-cyan);
  text-align: right;
  font-weight: 600;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.testi-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testi-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-card);
}

.testi-stars { color: var(--accent-gold); font-size: 14px; display: flex; gap: 4px; }

.testi-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}

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

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.testi-author div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-author strong { font-size: 14px; font-weight: 600; }
.testi-author span { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-content .section-title { text-align: left; }

.contact-content p {
  font-size: 15px;
  font-weight: 500;
  color: #e8eaf0;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #d4d8e8;
}

.contact-item i {
  width: 20px;
  color: var(--accent-cyan);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-item a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.contact-item a:hover { color: var(--accent-cyan); }

.contact-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.social-btn:hover {
  background: rgba(0,212,255,0.1);
  border-color: var(--border-active);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrap {
  position: relative;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.form-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.form-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-sub {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-of-type { margin-bottom: 20px; }

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

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--border-active);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%234a5568'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
  line-height: 1.6;
}

.form-disclaimer a {
  color: var(--accent-cyan);
  text-decoration: underline;
}

/* Form Success State */
.form-success {
  background: var(--bg-card);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: var(--radius-xl);
  padding: 60px 36px;
  text-align: center;
}

.form-success i {
  font-size: 52px;
  color: var(--accent-green);
  margin-bottom: 20px;
}

.form-success h3 { font-size: 24px; margin-bottom: 10px; }
.form-success p { color: var(--text-secondary); font-size: 15px; }

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

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

.footer-brand .footer-logo {
  font-size: 22px;
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 500;
  color: #d4d8e8;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  border-color: var(--border-active);
  color: var(--accent-cyan);
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  font-weight: 500;
  color: #d4d8e8;
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover { color: var(--accent-cyan); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-bottom a {
  color: var(--accent-cyan);
  transition: opacity var(--transition-fast);
}

.footer-bottom a:hover { opacity: 0.8; }

.footer-disclaimer {
  max-width: 700px;
  margin: 0 auto;
  font-size: 11px !important;
  line-height: 1.7;
  color: var(--text-muted) !important;
  opacity: 0.6;
}

/* ============================================================
   RESPONSIVE — TABLET (< 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-terminal {
    display: none;
  }

  .tab-split {
    grid-template-columns: 1fr;
  }

  .tab-visual { order: -1; }

  .liquidity-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  /* Nav */
  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 2px;
  }

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

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  .nav-link.nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  /* Hero */
  .hero {
    padding: 32px 20px 32px;
    min-height: auto;
    align-items: flex-start;
  }

  .hero-cta-group { flex-direction: column; align-items: flex-start; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-stat-divider { display: none; }

  .hero-stat { flex: 0 0 calc(50% - 8px); }

  /* Sections */
  .solutions-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .tech-categories {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: center;
  }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand { grid-column: 1 / -1; }

  .path-card { padding: 28px 24px; }

  .liq-stats-row { flex-direction: column; gap: 16px; }

  .contact-form { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stat { flex: 0 0 100%; }
}

/* ============================================================
   NAV — BOOK A DEMO BUTTON
   ============================================================ */
.nav-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-purple);
  background: transparent;
  border: 1px solid var(--accent-purple);
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: all var(--transition-base);
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(137, 45, 189, 0.2);
}

.nav-demo-btn:hover {
  background: rgba(137, 45, 189, 0.12);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.35);
  transform: translateY(-1px);
  color: #fff;
}

.nav-demo-btn i {
  font-size: 13px;
}

/* ============================================================
   HERO CANDLESTICK CARD
   ============================================================ */
.hero-candle-card {
  position: absolute;
  right: max(24px, calc(50% - 580px));
  bottom: 60px;
  width: 230px;
  background: rgba(13, 17, 23, 0.88);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 136, 0.08);
  z-index: 3;
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.4s both;
}

.candle-card-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-green);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  opacity: 0.8;
}

.candle-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Candle slide-up entrance animation */
.candle {
  transform-origin: bottom center;
  animation: candleSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.candle-1  { animation-delay: 1.5s; }
.candle-2  { animation-delay: 1.65s; }
.candle-3  { animation-delay: 1.80s; }
.candle-4  { animation-delay: 1.95s; }
.candle-5  { animation-delay: 2.10s; }
.candle-6  { animation-delay: 2.25s; }
.candle-7  { animation-delay: 2.40s; }
.candle-8  { animation-delay: 2.55s; }
.candle-9  { animation-delay: 2.70s; }

@keyframes candleSlideUp {
  from {
    opacity: 0;
    transform: translateY(12px) scaleY(0.4);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

/* Live candle body pulses subtly */
#candleLiveBody {
  animation: liveCandlePulse 2.5s ease-in-out 3s infinite;
}

@keyframes liveCandlePulse {
  0%, 100% { filter: brightness(1); }
  50%       { filter: brightness(1.4) drop-shadow(0 0 4px rgba(0,255,136,0.7)); }
}

/* ============================================================
   LIQUIDITY FEED — SPREAD INDICATOR
   ============================================================ */
.spread-indicator {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-green);
  margin-top: 4px;
  display: block;
  letter-spacing: 0.03em;
  animation: spreadPulse 2.4s ease-in-out infinite;
  transition: color 0.3s ease;
}

.spread-indicator.widened {
  color: #ffb800;
  animation: spreadPulseWide 0.6s ease-in-out 2;
}

@keyframes spreadPulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(0.97); }
}

@keyframes spreadPulseWide {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.8; transform: scale(1.08); color: #ffd000; }
}

/* Adjust liq-row grid to accommodate spread label below bar */
.liq-spread-bar {
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ============================================================
   DEMO MODAL
   ============================================================ */
.demo-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(9, 13, 26, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.demo-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.demo-modal-box {
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 212, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.demo-modal-overlay.is-open .demo-modal-box {
  transform: translateY(0) scale(1);
}

.demo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.demo-modal-close:hover {
  background: rgba(255, 71, 87, 0.15);
  border-color: rgba(255, 71, 87, 0.4);
  color: var(--accent-red);
}

.demo-modal-header {
  margin-bottom: 28px;
}

.demo-modal-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  opacity: 0.8;
}

.demo-modal-header h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.demo-modal-header p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Demo form reuses existing form-group styles */
.demo-modal-form .demo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.demo-modal-form .demo-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.demo-modal-form .demo-form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.demo-modal-form input,
.demo-modal-form select {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.demo-modal-form input::placeholder { color: var(--text-muted); }

.demo-modal-form input:focus,
.demo-modal-form select:focus {
  border-color: var(--border-active);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
}

.demo-modal-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%234a5568'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.demo-modal-form select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.demo-submit-btn {
  margin-top: 4px;
  font-size: 15px;
}

/* Demo modal success state */
.demo-modal-success {
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.demo-modal-success i {
  font-size: 52px;
  color: var(--accent-green);
}

.demo-modal-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.demo-modal-success p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Responsive — modal */
@media (max-width: 600px) {
  .demo-modal-box { padding: 28px 20px; }
  .demo-modal-form .demo-form-row { grid-template-columns: 1fr; }
}

/* Responsive — candle card */
@media (max-width: 1024px) {
  .hero-candle-card { display: none; }
}

/* Responsive — nav demo button */
@media (max-width: 768px) {
  .nav-demo-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
}

/* ============================================================
   SERVICES AT A GLANCE BAR
   ============================================================ */
.services-glance {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0;
}

.glance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.glance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-right: 1px solid var(--border-subtle);
  transition: background var(--transition-base);
}

.glance-item:last-child {
  border-right: none;
}

.glance-item:hover {
  background: rgba(137, 45, 189, 0.06);
}

.glance-item i {
  font-size: 18px;
  color: var(--accent-purple);
  flex-shrink: 0;
}

.glance-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .glance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .glance-item:nth-child(2) { border-right: none; }
  .glance-item:nth-child(1),
  .glance-item:nth-child(2) {
    border-bottom: 1px solid var(--border-subtle);
  }
}

@media (max-width: 480px) {
  .glance-grid {
    grid-template-columns: 1fr;
  }
  .glance-item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .glance-item:last-child { border-bottom: none; }
  .glance-item:nth-child(2) { border-right: none; }
}

/* ============================================================
   HOW WE WORK / PROCESS SECTION
   ============================================================ */
.how-we-work {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.process-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), rgba(0,212,255,0.2));
  align-self: center;
  flex-shrink: 0;
  margin-top: -60px;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  opacity: 0.7;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition-base);
}

.process-step:hover .step-icon {
  background: rgba(0, 212, 255, 0.14);
  border-color: var(--border-active);
  box-shadow: var(--shadow-glow-cyan);
}

.step-icon i {
  font-size: 26px;
  color: var(--accent-cyan);
}

.process-step h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .process-connector {
    width: 2px;
    height: 48px;
    background: linear-gradient(180deg, var(--accent-cyan), rgba(0,212,255,0.2));
    margin: 0;
    align-self: center;
  }

  .process-step {
    padding: 0 16px;
  }
}

/* ============================================================
   CONTACT FORM — CHECKBOX GROUP
   ============================================================ */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  user-select: none;
}

.checkbox-label:hover {
  border-color: var(--border-active);
  color: var(--text-primary);
  background: rgba(0, 212, 255, 0.04);
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--accent-cyan);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked + span {
  color: var(--accent-cyan);
}

.checkbox-label:has(input:checked) {
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.06);
}

@media (max-width: 480px) {
  .checkbox-group {
    grid-template-columns: 1fr;
  }
}
