/*
Theme Name: eClinton Digital
Theme URI: https://eclinton.com
Author: eClinton
Author URI: https://eclinton.com
Description: eClinton Digital Marketing & Social Growth Platform — Full-featured WordPress theme for the eClinton agency, growth packages, task platform, and music promotion services.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eclinton
Tags: digital-marketing, agency, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ===================================================
   CSS CUSTOM PROPERTIES
   =================================================== */
:root {
  --ec-navy:       #0A0E2A;
  --ec-dark:       #0D1117;
  --ec-blue:       #1A73E8;
  --ec-purple:     #7C3AED;
  --ec-cyan:       #06B6D4;
  --ec-gold:       #F59E0B;
  --ec-green:      #10B981;
  --ec-red:        #EF4444;
  --ec-white:      #FFFFFF;
  --ec-offwhite:   #F8FAFC;
  --ec-gray-100:   #F1F5F9;
  --ec-gray-200:   #E2E8F0;
  --ec-gray-400:   #94A3B8;
  --ec-gray-600:   #475569;
  --ec-gray-800:   #1E293B;
  --ec-text:       #E2E8F0;
  --ec-text-muted: #94A3B8;
  --gradient-main: linear-gradient(135deg, #7C3AED 0%, #1A73E8 50%, #06B6D4 100%);
  --gradient-gold: linear-gradient(135deg, #F59E0B, #EF4444);
  --gradient-dark: linear-gradient(180deg, #0A0E2A 0%, #0D1117 100%);
  --shadow-glow:   0 0 40px rgba(124, 58, 237, 0.3);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.4);
  --radius:        12px;
  --radius-lg:     20px;
  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

#page-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

a { color: var(--ec-cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ec-blue); }

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ec-white);
}

/* ===================================================
   UTILITY CLASSES
   =================================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; }
.container--narrow { max-width: 800px; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge--primary { background: rgba(124, 58, 237, 0.2); color: #A78BFA; border: 1px solid rgba(124, 58, 237, 0.4); }
.badge--cyan    { background: rgba(6, 182, 212, 0.2);  color: #67E8F9; border: 1px solid rgba(6, 182, 212, 0.4); }
.badge--gold    { background: rgba(245, 158, 11, 0.2); color: #FCD34D; border: 1px solid rgba(245, 158, 11, 0.4); }
.badge--green   { background: rgba(16, 185, 129, 0.2); color: #6EE7B7; border: 1px solid rgba(16, 185, 129, 0.4); }

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--ec-white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--outline:hover {
  border-color: var(--ec-purple);
  color: #fff;
  background: rgba(124, 58, 237, 0.1);
}

.btn--ghost {
  background: rgba(255,255,255,0.07);
  color: var(--ec-white);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.btn--gold {
  background: var(--gradient-gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
  color: #fff;
}

.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===================================================
   CARDS
   =================================================== */
.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.card__icon--purple { background: rgba(124, 58, 237, 0.2); }
.card__icon--cyan   { background: rgba(6, 182, 212, 0.2); }
.card__icon--gold   { background: rgba(245, 158, 11, 0.2); }
.card__icon--green  { background: rgba(16, 185, 129, 0.2); }
.card__icon--red    { background: rgba(239, 68, 68, 0.2); }
.card__icon--blue   { background: rgba(26, 115, 232, 0.2); }

.card__title { font-size: 1.2rem; margin-bottom: 12px; }
.card__text  { color: var(--ec-text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ===================================================
   SECTION SHARED
   =================================================== */
.section { padding: 100px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 140px 0; }

.section__header { text-align: center; margin-bottom: 64px; }
.section__badge  { margin-bottom: 20px; }
.section__title  { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section__subtitle {
  font-size: 1.1rem;
  color: var(--ec-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================================================
   GRID LAYOUTS
   =================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ===================================================
   HEADER / NAVIGATION
   =================================================== */
/* ===================================================
   LIGHT THEME TOKENS
   =================================================== */
[data-theme="light"] {
  --ec-dark:       #F8FAFC;
  --ec-navy:       #EEF2FF;
  --ec-text:       #1E293B;
  --ec-text-muted: #64748B;
  --ec-white:      #0F172A;
  --shadow-card:   0 4px 24px rgba(0,0,0,0.10);
  --shadow-glow:   0 0 40px rgba(124,58,237,0.12);
}
[data-theme="light"] body { background: #F8FAFC; color: #1E293B; }
[data-theme="light"] .site-header.scrolled { background: rgba(248,250,252,0.95); }
[data-theme="light"] .nav__logo { color: #1E293B; }
[data-theme="light"] .nav__menu-link { color: #475569; }
[data-theme="light"] .nav__menu-link:hover,[data-theme="light"] .nav__menu-link.active { color: #1E293B; background: rgba(0,0,0,0.05); }
[data-theme="light"] .nav__dropdown { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .card { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.07); }
[data-theme="light"] .site-footer { background: #1E293B; }
[data-theme="light"] .hero__bg { background: linear-gradient(180deg, #EEF2FF 0%, #F8FAFC 100%); pointer-events: none; }
[data-theme="light"] .hero__title { color: #0F172A; }
[data-theme="light"] .hero__description { color: #475569; }
[data-theme="light"] .hero__grid { background-image: linear-gradient(rgba(0,0,0,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(0,0,0,0.04) 1px,transparent 1px); pointer-events: none; }
[data-theme="light"] .hero__card { background: rgba(255,255,255,0.9); border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .section { background: transparent; }
[data-theme="light"] .pricing-card { background: #fff; border-color: rgba(0,0,0,0.08); }

/* ===================================================
   STICKY HEADER — Premium 2026
   =================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;          /* well above hero compositing layer */
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
  /* Initial semi-transparent bg so header is always legible                */
  background: rgba(10, 14, 42, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header.scrolled {
  background: rgba(10,14,42,0.96);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
[data-theme="light"] .site-header {
  background: rgba(248,250,252,0.8);
}
[data-theme="light"] .site-header.scrolled {
  background: rgba(248,250,252,0.97);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--gradient-main);
  transition: width .1s linear;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ec-white);
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity .2s;
}
.nav__logo:hover { opacity: .85; color: var(--ec-white); }
.nav__logo-icon {
  width: 34px; height: 34px;
  background: var(--gradient-main);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

/* Nav links */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav__menu-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 13px;
  border-radius: 8px;
  color: var(--ec-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
}
.nav__menu-link:hover,
.nav__menu-link.active {
  color: var(--ec-white);
  background: rgba(255,255,255,0.07);
}
.nav__menu-link--pay {
  color: var(--ec-cyan);
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.2);
}
.nav__menu-link--pay:hover {
  background: rgba(6,182,212,0.18);
  color: var(--ec-cyan);
}
.nav__chevron {
  font-size: 0.7rem;
  transition: transform .2s;
  opacity: .6;
}
.nav__item:hover .nav__chevron { transform: rotate(180deg); }

/* Icon button (theme toggle) */
.icon-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--ec-text-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all .2s;
}
.icon-btn:hover { background: rgba(255,255,255,0.12); color: var(--ec-white); }
.icon-sun { display: none; }
.icon-moon { display: block; }
[data-theme="light"] .icon-sun { display: block; }
[data-theme="light"] .icon-moon { display: none; }

/* Rich dropdown */
.nav__item { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 260px;
  background: rgba(10,14,42,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  pointer-events: none;
}
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: rgba(10,14,42,0.97);
  border-left: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateX(-50%) rotate(45deg);
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.875rem;
  transition: background .15s;
  text-decoration: none;
}
.nav__dropdown a:hover { background: rgba(255,255,255,0.07); }
.nav__dd-icon { font-size: 1.2rem; flex-shrink: 0; width: 28px; text-align: center; }
.nav__dd-text { display: flex; flex-direction: column; }
.nav__dd-text strong { color: var(--ec-white); font-size: .875rem; font-weight: 600; }
.nav__dd-text small { color: var(--ec-text-muted); font-size: .75rem; margin-top: 1px; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ec-white);
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: all var(--transition);
  border-radius: 2px;
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  /* Force a compositing layer so filter:blur() children are clipped
     correctly in Android Chrome / Samsung Internet                    */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-dark);
  z-index: 0;
  pointer-events: none;
}

.hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero__orb--1 { width: 500px; height: 500px; background: var(--ec-purple); top: -180px; right: -80px; }
.hero__orb--2 { width: 350px; height: 350px; background: var(--ec-blue); bottom: -80px; left: -80px; }
.hero__orb--3 { width: 300px; height: 300px; background: var(--ec-cyan); top: 50%; left: 40%; }

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero__text {}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ec-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__live::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--ec-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero__description {
  font-size: 1.1rem;
  color: var(--ec-text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

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

.hero__stats {
  display: flex;
  gap: 32px;
}
.hero__stat {}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__stat-label { font-size: 0.8rem; color: var(--ec-text-muted); margin-top: 2px; }

/* Hero visual card */
.hero__visual {
  position: relative;
}
.hero__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(20px);
}
.hero__card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero__card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.hero__card-title { font-size: 0.95rem; font-weight: 600; }
.hero__card-sub   { font-size: 0.75rem; color: var(--ec-text-muted); }

.hero__progress-list { display: flex; flex-direction: column; gap: 16px; }
.hero__progress-item {}
.hero__progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.hero__progress-label span:last-child { color: var(--ec-cyan); font-weight: 600; }
.hero__progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.hero__progress-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--gradient-main);
  position: relative;
  transition: width 1.5s ease;
}
.hero__progress-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.8);
}

.hero__floating {
  position: absolute;
  background: rgba(10, 14, 42, 0.9);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 12px 18px;
  backdrop-filter: blur(20px);
  font-size: 0.85rem;
  white-space: nowrap;
}
.hero__floating--tl { top: -20px; left: -30px; }
.hero__floating--br { bottom: -20px; right: -30px; }
.hero__floating-val { font-weight: 700; font-size: 1rem; color: var(--ec-green); }
.hero__floating-lbl { color: var(--ec-text-muted); font-size: 0.75rem; }

/* ===================================================
   PLATFORMS TICKER
   =================================================== */
.platforms {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.platforms__label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ec-text-muted);
  margin-bottom: 20px;
}
.platforms__ticker {
  display: flex;
  gap: 48px;
  animation: ticker 25s linear infinite;
  width: max-content;
}
.platforms__ticker:hover { animation-play-state: paused; }
.platforms__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ec-text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
  white-space: nowrap;
}
.platforms__item:hover { color: var(--ec-white); }
.platforms__item span { font-size: 1.3rem; }

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

/* ===================================================
   SERVICES SECTION
   =================================================== */
.services__tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.services__tab {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--ec-text-muted);
  font-family: var(--font-body);
}
.services__tab:hover, .services__tab.active {
  background: var(--gradient-main);
  border-color: transparent;
  color: #fff;
}
.services__panel { display: none; }
.services__panel.active { display: block; }

/* ===================================================
   GROWTH PACKAGES / PRICING
   =================================================== */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}
.pricing-card--featured {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(26, 115, 232, 0.15));
  border-color: rgba(124, 58, 237, 0.5);
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-card__platform {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 1.1rem;
  font-weight: 700;
}
.pricing-card__platform span { font-size: 1.5rem; }
.pricing-card__price { margin-bottom: 8px; }
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
}
.pricing-card__amount sup { font-size: 1rem; vertical-align: top; margin-top: 8px; }
.pricing-card__period { font-size: 0.85rem; color: var(--ec-text-muted); margin-bottom: 24px; }
.pricing-card__features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ec-text-muted);
}
.pricing-card__features li::before {
  content: '✓';
  color: var(--ec-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===================================================
   HOW IT WORKS
   =================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--ec-purple), var(--ec-blue), var(--ec-cyan));
}
.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ec-navy);
  border: 2px solid rgba(124, 58, 237, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ec-purple);
  margin: 0 auto 24px;
}
.step__icon { font-size: 1.5rem; margin-bottom: 16px; }
.step__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step__text { font-size: 0.85rem; color: var(--ec-text-muted); line-height: 1.6; }

/* ===================================================
   TASK PLATFORM SECTION
   =================================================== */
.task-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.task-list { display: flex; flex-direction: column; gap: 12px; }
.task-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.task-item:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.4);
}
.task-item__icon { font-size: 1.4rem; width: 40px; text-align: center; flex-shrink: 0; }
.task-item__info { flex: 1; }
.task-item__name { font-weight: 600; font-size: 0.9rem; }
.task-item__platform { font-size: 0.8rem; color: var(--ec-text-muted); }
.task-item__earn {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ec-green);
  font-size: 0.9rem;
}

.task-dashboard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.task-dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.task-dashboard__title { font-size: 1rem; font-weight: 700; }
.task-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.task-stat {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
}
.task-stat__val { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; }
.task-stat__lbl { font-size: 0.7rem; color: var(--ec-text-muted); }

/* ===================================================
   WALLET SECTION
   =================================================== */
.wallet-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.wallet-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent 70%);
  pointer-events: none;
}
.wallet-balance { font-family: var(--font-display); font-size: 3rem; font-weight: 800; margin-bottom: 8px; }
.wallet-label { font-size: 0.85rem; color: var(--ec-text-muted); margin-bottom: 28px; }
.wallet-actions { display: flex; gap: 12px; }

.wallet-features { display: flex; flex-direction: column; gap: 16px; }
.wallet-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.wallet-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.wallet-feature__title { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.wallet-feature__text { font-size: 0.85rem; color: var(--ec-text-muted); }

/* ===================================================
   MUSIC PROMOTION
   =================================================== */
.music-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.music-platforms { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.music-platform {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.music-platform:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.music-platform__icon { font-size: 1.5rem; }
.music-platform__name { font-weight: 600; font-size: 0.875rem; }
.music-platform__type { font-size: 0.75rem; color: var(--ec-text-muted); }

.music-services { display: flex; flex-direction: column; gap: 16px; }
.music-service {
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.music-service:hover { border-color: rgba(245, 158, 11, 0.4); }
.music-service__title { font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.music-service__text { font-size: 0.85rem; color: var(--ec-text-muted); }

/* ===================================================
   AGENCY SERVICES
   =================================================== */
.agency-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.agency-card {
  padding: 24px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.agency-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-4px);
}
.agency-card__icon { font-size: 1.8rem; margin-bottom: 14px; }
.agency-card__title { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.agency-card__text { font-size: 0.78rem; color: var(--ec-text-muted); line-height: 1.5; }

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial__stars { color: var(--ec-gold); margin-bottom: 16px; letter-spacing: 2px; }
.testimonial__text { font-size: 0.95rem; color: var(--ec-text-muted); line-height: 1.7; margin-bottom: 20px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--gradient-main);
}
.testimonial__name { font-weight: 700; font-size: 0.9rem; }
.testimonial__role { font-size: 0.78rem; color: var(--ec-text-muted); }

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
}
.cta-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-section__title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.cta-section__text { font-size: 1.1rem; color: var(--ec-text-muted); margin-bottom: 40px; line-height: 1.7; }
.cta-section__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--ec-navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 80px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer__brand {}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ec-white);
  margin-bottom: 16px;
  text-decoration: none;
}
.footer__logo:hover { color: var(--ec-white); }
.footer__desc { font-size: 0.875rem; color: var(--ec-text-muted); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--ec-text-muted);
  transition: all var(--transition);
}
.footer__social-link:hover { background: var(--gradient-main); border-color: transparent; color: #fff; }

.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ec-white);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.875rem; color: var(--ec-text-muted); transition: color var(--transition); }
.footer__links a:hover { color: var(--ec-white); }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy { font-size: 0.825rem; color: var(--ec-text-muted); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.825rem; color: var(--ec-text-muted); transition: color var(--transition); }
.footer__legal a:hover { color: var(--ec-white); }

/* ===================================================
   FORM STYLES
   =================================================== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 8px; color: var(--ec-text-muted); }
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--ec-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--ec-purple);
  background: rgba(124, 58, 237, 0.1);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}
.form-input::placeholder { color: var(--ec-text-muted); }

select.form-input { cursor: pointer; }
select.form-input option { background: var(--ec-navy); color: var(--ec-text); }

/* ===================================================
   MODAL
   =================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.modal__box {
  position: relative;
  z-index: 1;
  background: var(--ec-navy);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.06);
  border: none;
  color: var(--ec-text-muted);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.modal__close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.modal__title { font-size: 1.5rem; margin-bottom: 8px; }
.modal__subtitle { font-size: 0.9rem; color: var(--ec-text-muted); margin-bottom: 28px; }

/* ===================================================
   ALERT / NOTICE
   =================================================== */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert--success { background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.3); color: #6EE7B7; }
.alert--error   { background: rgba(239, 68, 68, 0.15);  border: 1px solid rgba(239, 68, 68, 0.3);  color: #FCA5A5; }
.alert--info    { background: rgba(6, 182, 212, 0.15);  border: 1px solid rgba(6, 182, 212, 0.3);  color: #67E8F9; }

/* ===================================================
   PAGE-SPECIFIC: Contact, Blog, etc.
   =================================================== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--gradient-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__title { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 16px; }
.page-hero__text { font-size: 1.1rem; color: var(--ec-text-muted); }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(124,58,237,0.4); }
.blog-card__thumb { aspect-ratio: 16/9; background: var(--gradient-main); }
.blog-card__body { padding: 24px; }
.blog-card__category { font-size: 0.75rem; font-weight: 600; color: var(--ec-cyan); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.blog-card__title { font-size: 1.05rem; margin-bottom: 10px; }
.blog-card__excerpt { font-size: 0.85rem; color: var(--ec-text-muted); line-height: 1.6; }


/* ===================================================
   FAB DOCK — WhatsApp, AI, Scroll-to-top
   =================================================== */
.fab-dock {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .25s var(--spring,cubic-bezier(.34,1.56,.64,1)), box-shadow .25s;
  position: relative;
}
.fab:hover { transform: scale(1.12); }
.fab-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
}
.fab-wa:hover { box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.fab-ai {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.fab-ai:hover { box-shadow: 0 8px 30px rgba(124,58,237,0.6); }
.fab-top {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--ec-white);
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
}
.fab-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.fab-top:hover { background: rgba(255,255,255,0.14); }
.fab-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%; transform: translateY(-50%);
  background: rgba(10,14,42,0.95);
  color: var(--ec-white);
  font-size: .75rem;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.fab:hover .fab-tooltip { opacity: 1; }

/* ===================================================
   AI CHAT PANEL
   =================================================== */
.ai-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 340px;
  max-height: 480px;
  background: var(--ec-navy);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(.97);
  transition: opacity .25s, transform .25s;
}
.ai-panel.open {
  opacity: 1; pointer-events: auto; transform: none;
}
.ai-panel__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: rgba(124,58,237,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ai-panel__title { font-size: .9rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.ai-panel__close { background: none; border: none; color: var(--ec-text-muted); cursor: pointer; font-size: 1.1rem; padding: 2px 6px; border-radius: 4px; }
.ai-panel__close:hover { background: rgba(255,255,255,0.08); color: var(--ec-white); }
.ai-panel__body {
  flex: 1; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: .875rem;
}
.ai-msg { padding: 10px 14px; border-radius: 12px; line-height: 1.6; max-width: 90%; }
.ai-msg--bot { background: rgba(255,255,255,0.06); align-self: flex-start; }
.ai-msg--user { background: rgba(124,58,237,0.25); align-self: flex-end; text-align: right; }
.ai-panel__footer { padding: 10px 12px; border-top: 1px solid rgba(255,255,255,0.06); }
.ai-panel__input-row { display: flex; gap: 8px; }
.ai-panel__input {
  flex: 1; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--ec-white);
  font-size: .875rem;
  font-family: var(--font-body);
  outline: none;
}
.ai-panel__input:focus { border-color: rgba(124,58,237,0.5); }
.ai-panel__send {
  background: var(--gradient-main);
  border: none; border-radius: 8px;
  color: #fff; padding: 8px 14px;
  cursor: pointer; font-size: .9rem;
  transition: opacity .2s;
}
.ai-panel__send:hover { opacity: .85; }
.ai-suggestions { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.ai-suggest-btn {
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.25);
  color: #A78BFA;
  font-size: .75rem;
  padding: 4px 10px;
  border-radius: 100px;
  cursor: pointer;
  transition: background .2s;
}
.ai-suggest-btn:hover { background: rgba(124,58,237,0.3); }

/* ===================================================
   PAY & MARKETPLACE LANDING SECTIONS
   =================================================== */
.node-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.node-section--pay {
  background: linear-gradient(135deg, rgba(6,182,212,0.06) 0%, rgba(26,115,232,0.08) 100%);
  border-top: 1px solid rgba(6,182,212,0.12);
}
.node-section--market {
  background: linear-gradient(135deg, rgba(245,158,11,0.06) 0%, rgba(16,185,129,0.06) 100%);
  border-top: 1px solid rgba(245,158,11,0.1);
}
.node-header {
  text-align: center;
  margin-bottom: 64px;
}
.node-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.node-badge--pay { background: rgba(6,182,212,0.15); color: #67E8F9; border: 1px solid rgba(6,182,212,0.3); }
.node-badge--market { background: rgba(245,158,11,0.15); color: #FCD34D; border: 1px solid rgba(245,158,11,0.3); }
.node-title { font-size: clamp(2rem,3.5vw,2.8rem); margin-bottom: 16px; }
.node-subtitle { font-size: 1.1rem; color: var(--ec-text-muted); max-width: 580px; margin: 0 auto; line-height: 1.75; }
.node-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.node-grid--reverse { direction: rtl; }
.node-grid--reverse > * { direction: ltr; }
.node-mockup {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(10px);
}
.node-mockup__header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.node-mockup__dots { display: flex; gap: 6px; }
.node-mockup__dot { width: 10px; height: 10px; border-radius: 50%; }
.node-mockup__dot:nth-child(1) { background: #FF5F57; }
.node-mockup__dot:nth-child(2) { background: #FEBC2E; }
.node-mockup__dot:nth-child(3) { background: #28C840; }
.node-mockup__title { font-size: .8rem; color: var(--ec-text-muted); font-family: var(--font-mono); }
.node-feature-list { display: flex; flex-direction: column; gap: 16px; }
.node-feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: all .2s;
}
.node-feature:hover { background: rgba(255,255,255,0.06); border-color: rgba(124,58,237,0.3); }
.node-feature__icon { font-size: 1.4rem; flex-shrink: 0; }
.node-feature__body h4 { font-size: .95rem; margin-bottom: 3px; }
.node-feature__body p { font-size: .85rem; color: var(--ec-text-muted); margin: 0; line-height: 1.6; }
.node-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Pay mockup specific */
.pay-balance-card {
  background: var(--gradient-main);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.pay-balance-card::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.pay-balance-label { font-size: .75rem; opacity: .75; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.pay-balance-amount { font-size: 2rem; font-weight: 800; font-family: var(--font-display); color: #fff; }
.pay-balance-sub { font-size: .8rem; opacity: .65; margin-top: 4px; color: #fff; }
.pay-txn-list { display: flex; flex-direction: column; gap: 8px; }
.pay-txn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  font-size: .85rem;
}
.pay-txn__label { color: var(--ec-text); }
.pay-txn__amount { font-weight: 700; }
.pay-txn__amount--in { color: var(--ec-green); }
.pay-txn__amount--out { color: var(--ec-red); }

/* Marketplace mockup */
.market-listing {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: .85rem;
  transition: background .15s;
}
.market-listing:hover { background: rgba(255,255,255,0.07); }
.market-listing__thumb {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.market-listing__info { flex: 1; min-width: 0; }
.market-listing__name { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.market-listing__seller { font-size: .75rem; color: var(--ec-text-muted); }
.market-listing__price { font-weight: 700; color: var(--ec-gold); white-space: nowrap; }
.market-listing__badge {
  font-size: .65rem; padding: 2px 7px; border-radius: 100px;
  background: rgba(16,185,129,0.15); color: var(--ec-green);
  border: 1px solid rgba(16,185,129,0.2);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .pricing__grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .agency-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .node-grid { grid-template-columns: 1fr; gap: 40px; }
  .node-grid--reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .nav__menu { display: none; }
  .nav__actions .btn--ghost { display: none; }
  .nav__toggle { display: flex; }

  /* Clamp orbs so they cannot overflow the viewport */
  .hero__orb--1 { width: min(280px, 70vw); height: min(280px, 70vw); top: -60px; right: -40px; }
  .hero__orb--2 { width: min(200px, 55vw); height: min(200px, 55vw); bottom: -50px; left: -40px; }
  .hero__orb--3 { display: none; }
  .hero__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }

  .section { padding: 60px 0; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps::before { display: none; }
  .pricing__grid { grid-template-columns: 1fr; }
  .task-showcase { grid-template-columns: 1fr; }
  .music-grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .agency-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .music-platforms { grid-template-columns: 1fr; }
  .node-grid, .node-grid--reverse { grid-template-columns: 1fr; direction: ltr; }
  .fab-dock { right: 16px; bottom: 20px; gap: 8px; }
  .fab { width: 46px; height: 46px; font-size: 1.1rem; }
  .ai-panel { width: calc(100vw - 32px); right: 16px; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .agency-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .wallet-actions { flex-direction: column; }
}

/* Mobile nav open state */
/* ── Mobile nav open ── */
body.nav-open .nav__menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0; right: 0; bottom: 0;
  background: rgba(10,14,42,0.97);
  backdrop-filter: blur(20px);
  padding: 24px 20px;
  gap: 2px;
  overflow-y: auto;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.07);
}
[data-theme="light"] body.nav-open .nav__menu {
  background: rgba(248,250,252,0.97);
}
body.nav-open .nav__menu .nav__menu-link {
  font-size: 1rem;
  padding: 13px 16px;
  border-radius: 10px;
  color: var(--ec-text);
}
body.nav-open .nav__menu .nav__item {
  display: flex;
  flex-direction: column;
}
body.nav-open .nav__dropdown {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  background: rgba(255,255,255,0.04);
  box-shadow: none;
  border: none;
  border-radius: 10px;
  margin: 4px 0 4px 16px;
  pointer-events: auto;
}
body.nav-open .nav__dropdown::before { display: none; }

/* Hamburger → X animation */
body.nav-open .nav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav__toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.nav-open .nav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================================================
   ARTICLE / POST CONTENT
   =================================================== */
.ec-content h2, .ec-content h3, .ec-content h4 {
  margin: 2rem 0 1rem;
  color: var(--ec-white);
}
.ec-content p { margin-bottom: 1.25rem; }
.ec-content ul, .ec-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  list-style: initial;
}
.ec-content ol { list-style: decimal; }
.ec-content li { margin-bottom: .4rem; }
.ec-content a { color: var(--ec-cyan); border-bottom: 1px solid rgba(6,182,212,.3); }
.ec-content a:hover { border-bottom-color: var(--ec-cyan); }
.ec-content blockquote {
  border-left: 3px solid var(--ec-purple);
  padding: 16px 20px;
  background: rgba(124,58,237,.08);
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--ec-text-muted);
}
.ec-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.ec-content pre, .ec-content code {
  font-family: var(--font-mono);
  font-size: .88em;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
}
.ec-content pre { padding: 16px 20px; overflow-x: auto; margin-bottom: 1.25rem; }
.ec-content code { padding: 2px 6px; }
.ec-content hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 2.5rem 0;
}
[data-theme="light"] .ec-content { color: #334155; }
[data-theme="light"] .ec-content h2,
[data-theme="light"] .ec-content h3,
[data-theme="light"] .ec-content h4 { color: #0F172A; }
[data-theme="light"] .ec-content blockquote { background: rgba(124,58,237,.05); }
[data-theme="light"] .ec-content pre, [data-theme="light"] .ec-content code { background: rgba(0,0,0,.05); }

/* ===================================================
   POST NAV LINKS
   =================================================== */
.post-nav-link { color: var(--ec-cyan); font-size: .9rem; text-decoration: none; transition: color .2s; }
.post-nav-link:hover { color: var(--ec-blue); }

/* ===================================================
   LIGHT THEME — additional overrides
   =================================================== */
[data-theme="light"] .page-hero { background: linear-gradient(180deg, #EEF2FF 0%, #F8FAFC 100%); }
[data-theme="light"] .page-hero::after { background-image: linear-gradient(rgba(0,0,0,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(0,0,0,.03) 1px,transparent 1px); }
[data-theme="light"] .page-hero__title { color: #0F172A; }
[data-theme="light"] .section { background: transparent; }
[data-theme="light"] .badge--primary { background: rgba(124,58,237,.1); color: #5B21B6; }
[data-theme="light"] .badge--cyan { background: rgba(6,182,212,.1); color: #0E7490; }
[data-theme="light"] .badge--gold { background: rgba(245,158,11,.1); color: #92400E; }
[data-theme="light"] .badge--green { background: rgba(16,185,129,.1); color: #065F46; }
[data-theme="light"] .hero__stat-num { background: linear-gradient(135deg,#7C3AED,#1A73E8); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
[data-theme="light"] .hero__orb--1 { opacity: .12; }
[data-theme="light"] .hero__orb--2 { opacity: .1; }
[data-theme="light"] .text-gradient { background: var(--gradient-main); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
[data-theme="light"] .site-footer { background: #1E293B; color: #CBD5E1; }
[data-theme="light"] .site-footer .footer__col-title { color: #F1F5F9; }
[data-theme="light"] .site-footer .footer__links a { color: #94A3B8; }
[data-theme="light"] .nav__logo span { color: #0F172A; }
[data-theme="light"] .btn--outline { border-color: rgba(0,0,0,.2); color: #1E293B; }
[data-theme="light"] .btn--outline:hover { background: rgba(0,0,0,.06); }
[data-theme="light"] .btn--ghost { color: #475569; }
[data-theme="light"] .node-section--pay { background: linear-gradient(135deg,rgba(6,182,212,.05) 0%,rgba(26,115,232,.07) 100%); }
[data-theme="light"] .node-section--market { background: linear-gradient(135deg,rgba(245,158,11,.05) 0%,rgba(16,185,129,.05) 100%); }
[data-theme="light"] .node-mockup { background: rgba(255,255,255,.9); border-color: rgba(0,0,0,.08); }
[data-theme="light"] .node-feature { background: rgba(0,0,0,.03); border-color: rgba(0,0,0,.06); }
[data-theme="light"] .node-feature:hover { background: rgba(0,0,0,.05); }
[data-theme="light"] .pay-txn { background: rgba(0,0,0,.04); }
[data-theme="light"] .pay-txn__label { color: #334155; }
[data-theme="light"] .market-listing { background: rgba(0,0,0,.03); }
[data-theme="light"] .market-listing__name { color: #0F172A; }
[data-theme="light"] .icon-btn { border-color: rgba(0,0,0,.12); background: rgba(0,0,0,.04); color: #475569; }
[data-theme="light"] .icon-btn:hover { background: rgba(0,0,0,.08); color: #1E293B; }
[data-theme="light"] .fab-top { background: rgba(0,0,0,.08); border-color: rgba(0,0,0,.15); color: #1E293B; }
[data-theme="light"] .ai-panel { background: #fff; border-color: rgba(124,58,237,.25); }
[data-theme="light"] .ai-panel__head { background: rgba(124,58,237,.06); }
[data-theme="light"] .ai-msg--bot { background: rgba(0,0,0,.05); color: #334155; }
[data-theme="light"] .ai-panel__input { background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.12); color: #1E293B; }
[data-theme="light"] .ai-suggest-btn { background: rgba(124,58,237,.08); color: #5B21B6; border-color: rgba(124,58,237,.2); }

