@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=DM+Sans:wght@300;400;500&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

/* ══════════════════════════════
   TOKENS
══════════════════════════════ */
:root,
[data-theme="dark"] {
  --gold: #f0b429;
  --gold-light: #ffd166;
  --gold-dark: #c98f00;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-dark: #4c1d95;
  --cyan: #06b6d4;
  --cyan-light: #67e8f9;
  --green: #10b981;
  --bg: #04070f;
  --bg-2: #070c18;
  --bg-3: #0a1020;
  --card-bg: rgba(255,255,255,0.03);
  --card-border: rgba(255,255,255,0.07);
  --card-border-hover: rgba(240,180,41,0.35);
  --text: #cbd5e1;
  --text-muted: #64748b;
  --text-heading: #f1f5f9;
  --nav-bg: rgba(4,7,15,0.75);
  --nav-scrolled: rgba(4,7,15,0.95);
  --footer-bg: #020509;
  --shadow: 0 8px 40px rgba(0,0,0,0.6);
  --toggle-bg: rgba(255,255,255,0.06);
  --glow-gold: 0 0 30px rgba(240,180,41,0.25);
  --glow-purple: 0 0 30px rgba(124,58,237,0.25);
  --glow-cyan: 0 0 30px rgba(6,182,212,0.2);
  --mono: 'JetBrains Mono', monospace;
}

[data-theme="light"] {
  --bg: #f0f4fc;
  --bg-2: #e8eef9;
  --bg-3: #ffffff;
  --card-bg: rgba(255,255,255,0.8);
  --card-border: rgba(0,0,0,0.07);
  --card-border-hover: rgba(240,180,41,0.45);
  --text: #1e293b;
  --text-muted: #64748b;
  --text-heading: #0f172a;
  --nav-bg: rgba(240,244,252,0.85);
  --nav-scrolled: rgba(240,244,252,0.98);
  --footer-bg: #060a14;
  --shadow: 0 8px 40px rgba(0,0,0,0.08);
  --toggle-bg: rgba(0,0,0,0.06);
  --glow-gold: 0 0 20px rgba(240,180,41,0.15);
  --glow-purple: 0 0 20px rgba(124,58,237,0.1);
  --glow-cyan: 0 0 20px rgba(6,182,212,0.1);
}

/* ══════════════════════════════
   BASE
══════════════════════════════ */
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
  position: relative;
}

/* Cyber grid overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
[data-theme="light"] body::before {
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
}

body > * { position: relative; z-index: 1; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--gold), var(--purple));
  border-radius: 3px;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 66px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--card-border);
  transition: height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
nav.scrolled {
  height: 58px;
  background: var(--nav-scrolled);
  border-bottom-color: rgba(240,180,41,0.1);
}

.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 42px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--mono);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-heading);
  background: rgba(240,180,41,0.06);
}
.nav-links a.active { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

.nav-social { display: flex; align-items: center; gap: 0.4rem; }
.nav-social a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}
.nav-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #04070f;
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}
.nav-social svg { width: 14px; height: 14px; fill: currentColor; }

/* Theme toggle */
.theme-toggle {
  position: relative;
  width: 50px; height: 26px;
  background: var(--toggle-bg);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--gold); }
.theme-toggle .toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 2px 8px rgba(240,180,41,0.5);
  user-select: none;
}
[data-theme="light"] .theme-toggle .toggle-thumb { transform: translateX(24px); }
.toggle-icon-sun,
.toggle-icon-moon { position: absolute; font-size: 8px; top: 50%; transform: translateY(-50%); }
.toggle-icon-sun  { right: 5px; opacity: 0.5; }
.toggle-icon-moon { left: 5px;  opacity: 0.5; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 4px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text); border-radius: 2px; transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed;
  top: 66px; left: 0; right: 0;
  background: var(--nav-scrolled);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--card-border);
  padding: 1rem 5%;
  z-index: 999;
  flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--card-border);
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu a:last-child { border-bottom: none; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 90px 5% 60px;
  gap: 4rem;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1920,fit=crop/Yg29nKaXyGhLNJy1/table-mk39PBJy1PhpXBNe.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.12) saturate(0.4);
  transition: filter 0.4s;
}
[data-theme="light"] .hero-bg { filter: brightness(0.08) saturate(0.3); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(76,29,149,0.6) 0%, rgba(4,7,15,0.2) 50%, rgba(6,182,212,0.15) 100%);
}

.hero-glow {
  position: absolute;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 60%);
  top: -250px; left: -200px;
  animation: glowPulse 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 60%);
  bottom: -100px; right: 5%;
  animation: glowPulse 10s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 0.3; }
}

.hero-left { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(240,180,41,0.08);
  border: 1px solid rgba(240,180,41,0.2);
  color: var(--gold-light);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 4px;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.5s ease both;
  font-family: var(--mono);
}
.hero-badge::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--gold); } 50% { opacity: 0.2; box-shadow: none; } }

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s ease 0.08s both;
}
.hero h1 .gradient-text {
  background: linear-gradient(100deg, var(--gold-light) 0%, #f97316 40%, var(--purple-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-weight: 900;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,0.45);
  max-width: 440px;
  margin-bottom: 2.25rem;
  font-weight: 300; line-height: 1.75;
  letter-spacing: 0.01em;
  font-family: 'DM Sans', sans-serif;
  animation: fadeInUp 0.6s ease 0.15s both;
}
.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  animation: fadeInUp 0.6s ease 0.22s both;
}
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.25);
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: var(--mono);
  animation: fadeIn 1s ease 0.8s both;
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  animation: fadeInRight 0.8s ease 0.2s both;
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-cartoon-wrap {
  position: relative;
  width: clamp(240px, 26vw, 400px);
  aspect-ratio: 3/4;
}
.cartoon-ring {
  position: absolute; inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(240,180,41,0.2);
  animation: spinSlow 20s linear infinite;
}
.cartoon-ring-2 {
  position: absolute; inset: -38px;
  border-radius: 50%;
  border: 1px solid rgba(6,182,212,0.1);
  animation: spinSlow 32s linear infinite reverse;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.cartoon-glow {
  position: absolute; inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, rgba(240,180,41,0.08) 50%, transparent 70%);
  filter: blur(28px);
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-cartoon-wrap img {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  border-radius: 48% 52% 42% 58% / 44% 46% 54% 56%;
  border: 1px solid rgba(240,180,41,0.15);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(124,58,237,0.1), inset 0 0 60px rgba(124,58,237,0.05);
  animation: floatBob 6s ease-in-out infinite;
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-float-tag {
  position: absolute; z-index: 3;
  background: rgba(4,7,15,0.8);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  display: flex; align-items: center; gap: 0.5rem;
  animation: floatBob 5s ease-in-out infinite;
}
.hero-float-tag:nth-child(4) { top: 8%; right: -10%; animation-delay: -1s; }
.hero-float-tag:nth-child(5) { bottom: 16%; left: -8%; animation-delay: -2.5s; }
.hero-float-tag .tag-icon {
  width: 30px; height: 30px; border-radius: 7px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}
.hero-float-tag .tag-text { font-size: 0.68rem; color: #fff; }
.hero-float-tag .tag-text strong { display: block; font-weight: 700; font-size: 0.75rem; }
.hero-float-tag .tag-text span { color: rgba(255,255,255,0.4); font-family: var(--mono); font-size: 0.62rem; }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #04070f; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-family: var(--mono);
  padding: 0.75rem 1.6rem; border-radius: 6px;
  text-decoration: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(240,180,41,0.3), 0 4px 16px rgba(0,0,0,0.3);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.4s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(240,180,41,0.55), 0 8px 24px rgba(0,0,0,0.4);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-family: var(--mono);
  padding: 0.75rem 1.6rem; border-radius: 6px;
  border: 1px solid var(--card-border);
  text-decoration: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: rgba(240,180,41,0.05);
  border-color: rgba(240,180,41,0.25);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ══════════════════════════════
   STATS
══════════════════════════════ */
.stats { padding: 3.5rem 5%; background: var(--bg-2); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; max-width: 1200px; margin: 0 auto;
}
.stat-card {
  text-align: center; padding: 1.75rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px; cursor: default;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.stat-card:hover { transform: translateY(-4px); border-color: rgba(240,180,41,0.2); box-shadow: 0 8px 40px rgba(0,0,0,0.3), var(--glow-gold); }
.stat-card:hover::before { opacity: 1; }
.stat-number {
  font-size: 2.4rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-bottom: 0.35rem; letter-spacing: -0.03em;
}
.stat-label {
  color: var(--text-muted); font-size: 0.68rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  font-family: var(--mono);
}

/* ══════════════════════════════
   SECTION SHARED
══════════════════════════════ */
section { padding: 6rem 5%; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 0.9rem;
  font-family: var(--mono);
}
.section-label::before {
  content: '';
  display: block; width: 22px; height: 1px;
  background: var(--cyan);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 800;
  line-height: 1.12; margin-bottom: 1rem;
  color: var(--text-heading);
  letter-spacing: -0.025em;
}
.section-desc { color: var(--text-muted); font-size: 0.93rem; max-width: 520px; font-weight: 300; line-height: 1.75; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ══════════════════════════════
   QUOTE BAND
══════════════════════════════ */
.quote-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, rgba(76,29,149,0.35) 0%, var(--bg-2) 100%);
  text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid rgba(124,58,237,0.1);
  border-bottom: 1px solid rgba(124,58,237,0.1);
}
.quote-section::before {
  content: '"'; position: absolute;
  font-size: 20rem; font-weight: 900;
  color: rgba(255,255,255,0.015);
  top: -5rem; left: 3%;
  line-height: 1; font-family: serif; pointer-events: none;
}
.quote-text {
  font-size: clamp(1.4rem, 3vw, 2.3rem); font-weight: 700;
  font-style: italic; color: #fff;
  max-width: 660px; margin: 0 auto; position: relative; z-index: 1;
  letter-spacing: -0.02em;
}
.quote-text .highlight { color: var(--gold-light); }

/* ══════════════════════════════
   PILLARS
══════════════════════════════ */
.pillars { background: var(--bg-3); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; max-width: 1200px; margin: 0 auto;
}
.pillar-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px; padding: 2.25rem 1.75rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  transform: scaleX(0); transition: transform 0.4s ease;
}
.pillar-card.produce::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.pillar-card.publish::before { background: linear-gradient(90deg, var(--purple), var(--purple-light)); }
.pillar-card.profit::before  { background: linear-gradient(90deg, var(--green), var(--cyan)); }

.pillar-card::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  opacity: 0.06;
  transition: opacity 0.3s;
}
.pillar-card.produce::after { background: radial-gradient(circle, var(--gold), transparent); }
.pillar-card.publish::after { background: radial-gradient(circle, var(--purple-light), transparent); }
.pillar-card.profit::after  { background: radial-gradient(circle, var(--green), transparent); }

.pillar-card:hover { transform: translateY(-8px); }
.pillar-card.produce:hover { border-color: rgba(240,180,41,0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(240,180,41,0.08); }
.pillar-card.publish:hover { border-color: rgba(124,58,237,0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(124,58,237,0.1); }
.pillar-card.profit:hover  { border-color: rgba(16,185,129,0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(16,185,129,0.08); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:hover::after { opacity: 0.12; }

.pillar-icon {
  width: 50px; height: 50px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem; font-size: 1.35rem;
}
.pillar-icon.produce { background: rgba(240,180,41,0.1); border: 1px solid rgba(240,180,41,0.15); }
.pillar-icon.publish { background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.2); }
.pillar-icon.profit  { background: rgba(16,185,129,0.1);  border: 1px solid rgba(16,185,129,0.15); }

.pillar-card h3 {
  font-size: 1.05rem; font-weight: 800; margin-bottom: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-family: var(--mono);
}
.pillar-card.produce h3 { color: var(--gold-light); }
.pillar-card.publish h3 { color: var(--purple-light); }
.pillar-card.profit  h3 { color: #34d399; }
.pillar-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.72; font-weight: 300; }

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about { background: var(--bg-2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-image-col { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--card-border);
}
.about-img-frame img {
  width: 100%; height: 480px;
  object-fit: cover; object-position: top center;
  display: block; border-radius: 16px;
  transition: transform 0.5s ease;
}
.about-img-frame:hover img { transform: scale(1.02); }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,7,15,0.7) 0%, transparent 50%);
  border-radius: 16px; pointer-events: none;
}
.about-exp-badge {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #04070f; font-weight: 800;
  padding: 0.85rem 1.25rem; border-radius: 10px;
  text-align: center; box-shadow: 0 8px 28px rgba(240,180,41,0.45);
}
.about-exp-badge strong { font-size: 2rem; display: block; line-height: 1; }
.about-exp-badge span { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--mono); }
.about-crypto-thumb {
  position: absolute; top: -20px; right: -18px;
  width: 130px; height: 95px;
  object-fit: cover; border-radius: 12px;
  border: 2px solid var(--bg-2);
  box-shadow: var(--shadow);
}
.about-content .section-desc { margin-bottom: 2rem; }
.about-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.25rem; }
.about-feature {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 10px; transition: border-color 0.25s, transform 0.25s; cursor: default;
}
.about-feature:hover { border-color: rgba(240,180,41,0.2); transform: translateX(4px); }
.feature-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold); margin-top: 8px; flex-shrink: 0; }
.about-feature strong { color: var(--text-heading); display: block; margin-bottom: 0.15rem; font-size: 0.88rem; }
.about-feature p { color: var(--text-muted); font-size: 0.82rem; }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials { background: var(--bg); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem; max-width: 1200px; margin: 0 auto;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px; padding: 1.75rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: default; position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: -0.5rem; right: 1.25rem;
  font-size: 5rem; font-weight: 900; line-height: 1;
  color: rgba(240,180,41,0.06); font-family: serif;
  pointer-events: none;
}
.testimonial-card:hover { transform: translateY(-5px); border-color: rgba(240,180,41,0.18); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 0.85rem; }
.testimonial-stars span { color: var(--gold); font-size: 0.85rem; }
.testimonial-text {
  color: var(--text-muted); font-size: 0.86rem; line-height: 1.72;
  margin-bottom: 1.4rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.7rem; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid rgba(240,180,41,0.25);
}
.testimonial-name { font-weight: 600; font-size: 0.85rem; color: var(--text-heading); }
.testimonial-title { font-size: 0.68rem; color: var(--text-muted); font-family: var(--mono); }

/* ══════════════════════════════
   CTA
══════════════════════════════ */
.cta {
  padding: 6rem 5%; background: var(--bg-2);
  text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(240,180,41,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 800; margin-bottom: 1rem; color: var(--text-heading); letter-spacing: -0.025em; }
.cta p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 2.25rem; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* ══════════════════════════════
   CONTACT BAR
══════════════════════════════ */
.contact-bar {
  background: var(--bg-3); padding: 2.5rem 5%;
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.contact-item {
  display: flex; align-items: center; gap: 0.9rem;
  color: var(--text-muted); font-size: 0.85rem;
  text-decoration: none; transition: color 0.25s; cursor: pointer;
}
.contact-item:hover { color: var(--gold); }
.contact-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(240,180,41,0.06);
  border: 1px solid rgba(240,180,41,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  transition: background 0.25s, box-shadow 0.25s;
}
.contact-item:hover .contact-icon { background: rgba(240,180,41,0.12); box-shadow: var(--glow-gold); }
.contact-label-title { color: var(--text-heading); font-weight: 600; font-size: 0.78rem; display: block; margin-bottom: 1px; font-family: var(--mono); letter-spacing: 0.05em; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--footer-bg);
  padding: 5rem 5% 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand img { height: 44px; margin-bottom: 1.25rem; width: auto; }
.footer-brand p {
  color: #475569; font-size: 0.82rem; line-height: 1.75;
  max-width: 280px; margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: #475569; text-decoration: none; transition: all 0.25s;
  flex-shrink: 0;
}
.footer-socials a:hover {
  background: var(--gold); border-color: var(--gold);
  color: #04070f; transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}
.footer-socials svg { width: 14px; height: 14px; fill: currentColor; }
.footer-col { display: flex; flex-direction: column; }
.footer-col h4 {
  font-size: 0.62rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--gold);
  margin-bottom: 1.25rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(240,180,41,0.1);
  font-family: var(--mono);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a {
  color: #475569; text-decoration: none; font-size: 0.82rem;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.4rem;
}
.footer-col ul li a::before {
  content: '›'; color: var(--gold); opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-4px);
}
.footer-col ul li a:hover { color: #cbd5e1; padding-left: 6px; }
.footer-col ul li a:hover::before { opacity: 1; transform: translateX(0); }
.footer-bottom {
  padding: 1.75rem 0 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem;
  color: #1e293b; font-size: 0.72rem;
  font-family: var(--mono);
}

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   WHATSAPP BUBBLE
══════════════════════════════ */

/* ── Sign Up Modal ── */
.signup-overlay {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(2,4,10,0.88); backdrop-filter: blur(20px);
  align-items: center; justify-content: center; padding: 1rem;
}
.signup-overlay.open { display: flex; animation: admFadeIn 0.22s ease; }
.signup-modal {
  background: #0a1020; border: 1px solid rgba(240,180,41,0.2);
  border-radius: 20px; width: 100%; max-width: 440px;
  padding: 2.2rem 2rem; position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  animation: admSlideUp 0.28s ease;
}
.signup-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; color: #475569; cursor: pointer;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  transition: all 0.18s;
}
.signup-close:hover { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.25); color: #f87171; }
.signup-header { text-align: center; margin-bottom: 1.5rem; }
.signup-logo { width: 52px; height: 52px; border-radius: 12px; overflow: hidden; margin: 0 auto 0.9rem; background: rgba(240,180,41,0.08); border: 1px solid rgba(240,180,41,0.18); display: flex; align-items: center; justify-content: center; }
.signup-logo img { width: 100%; height: 100%; object-fit: cover; }
.signup-header h2 { font-size: 1.2rem; font-weight: 800; color: #f1f5f9; margin-bottom: 0.3rem; letter-spacing: -0.02em; }
.signup-header p { font-size: 0.76rem; color: #475569; }
.signup-form { display: flex; flex-direction: column; gap: 0.85rem; }
.signup-field { display: flex; flex-direction: column; gap: 0.3rem; }
.signup-field label { font-size: 0.72rem; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: 0.08em; }
.signup-field input, .signup-field select {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 0.65rem 0.9rem; color: #f1f5f9;
  font-size: 0.85rem; font-family: var(--font); outline: none;
  transition: border-color 0.2s;
}
.signup-field input:focus, .signup-field select:focus { border-color: rgba(240,180,41,0.4); }
.signup-field select { cursor: pointer; }
.signup-field select option { background: #0a1020; color: #f1f5f9; }
.signup-submit {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #f0b429; color: #060a14; border: none; border-radius: 10px;
  padding: 0.8rem; font-family: var(--font); font-size: 0.88rem; font-weight: 700;
  cursor: pointer; margin-top: 0.3rem; transition: opacity 0.2s, transform 0.2s;
}
.signup-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.signup-terms { font-size: 0.68rem; color: #1e293b; text-align: center; margin-top: 0.2rem; }
.signup-success { text-align: center; padding: 1rem 0; }
.signup-success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.signup-success h3 { font-size: 1.3rem; font-weight: 800; color: #f1f5f9; margin-bottom: 0.4rem; }
.signup-success p { font-size: 0.8rem; color: #64748b; }
@media (max-width: 600px) { .signup-modal { padding: 1.75rem 1.25rem; } }
.live-clock {
  position: fixed; bottom: 24px; left: 20px; z-index: 500;
  background: rgba(6,10,20,0.82); backdrop-filter: blur(12px);
  border: 1px solid rgba(240,180,41,0.22); border-radius: 8px;
  padding: 0.38rem 0.85rem;
  color: #f0b429; font-size: 0.72rem; font-weight: 600;
  font-family: var(--mono); letter-spacing: 0.06em;
  white-space: nowrap; pointer-events: none;
  animation: fadeIn 1.5s ease both;
}

/* ── Chat Widget ── */
.chat-widget { position: fixed; bottom: 24px; right: 20px; z-index: 500; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }

.chat-trigger {
  display: flex; align-items: center; gap: 0.55rem;
  background: #f0b429; border: none; border-radius: 50px;
  padding: 0.7rem 1.2rem 0.7rem 0.9rem;
  color: #060a14; font-family: var(--font); font-size: 0.82rem; font-weight: 700;
  cursor: pointer; box-shadow: 0 4px 24px rgba(240,180,41,0.45);
  transition: transform 0.22s, box-shadow 0.22s;
  animation: fadeIn 1.5s ease both;
}
.chat-trigger:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(240,180,41,0.55); }
.chat-trigger-icon { display: flex; align-items: center; }
.chat-trigger-label { white-space: nowrap; }

.chat-popup {
  width: 300px; background: #0a1020;
  border: 1px solid rgba(240,180,41,0.18); border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  overflow: hidden; display: none; flex-direction: column;
  animation: chatSlideUp 0.25s ease;
}
.chat-popup.open { display: flex; }
@keyframes chatSlideUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.chat-popup-header {
  display: flex; align-items: center; gap: 0.75rem;
  background: linear-gradient(135deg, #f0b429 0%, #e09010 100%);
  padding: 0.9rem 1rem;
}
.chat-popup-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(0,0,0,0.15); overflow: hidden; flex-shrink: 0; }
.chat-popup-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-popup-info { flex: 1; }
.chat-popup-info strong { display: block; font-size: 0.82rem; font-weight: 700; color: #060a14; }
.chat-popup-info span { font-size: 0.68rem; color: rgba(6,10,20,0.7); display: flex; align-items: center; gap: 0.3rem; }
.chat-online-dot { width: 6px; height: 6px; border-radius: 50%; background: #16a34a; display: inline-block; }
.chat-close-btn { background: none; border: none; color: rgba(6,10,20,0.6); cursor: pointer; padding: 2px; display: flex; transition: color 0.2s; }
.chat-close-btn:hover { color: #060a14; }

.chat-popup-body { padding: 1rem; display: flex; flex-direction: column; gap: 0.6rem; max-height: 240px; overflow-y: auto; scrollbar-width: thin; }
.chat-bubble-msg { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px 12px 12px 3px; padding: 0.65rem 0.85rem; font-size: 0.77rem; color: #94a3b8; line-height: 1.6; }
.chat-bubble-msg strong { color: #f0b429; }
.chat-bubble-msg ul { margin: 0.4rem 0 0 1rem; display: flex; flex-direction: column; gap: 0.2rem; }
.chat-bubble-msg ul li { color: #cbd5e1; }

.chat-popup-actions { display: flex; gap: 0.5rem; padding: 0.75rem 1rem; border-top: 1px solid rgba(255,255,255,0.05); }
.chat-action-btn { flex: 1; text-align: center; padding: 0.5rem; border-radius: 8px; font-size: 0.74rem; font-weight: 600; text-decoration: none; transition: opacity 0.2s; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); color: #94a3b8; }
.chat-action-btn.primary { background: rgba(240,180,41,0.12); border-color: rgba(240,180,41,0.25); color: #f0b429; }
.chat-action-btn:hover { opacity: 0.8; }

/* ══════════════════════════════
   SUB-PAGE HERO
══════════════════════════════ */
.page-hero {
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 66px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1920,fit=crop/Yg29nKaXyGhLNJy1/table-mk39PBJy1PhpXBNe.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.1) saturate(0.4);
}
[data-theme="light"] .page-hero-bg { filter: brightness(0.08) saturate(0.3); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(76,29,149,0.7) 0%, rgba(4,7,15,0.3) 50%, rgba(6,182,212,0.2) 100%);
}
.page-hero-glow {
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,180,41,0.08) 0%, transparent 65%);
  bottom: -200px; right: 10%;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; padding: 0 5%; }
.page-hero-content h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 900; color: #fff;
  margin-bottom: 0.75rem; line-height: 1.08;
  letter-spacing: -0.03em;
}
.page-hero-content p {
  font-size: clamp(0.85rem, 2vw, 0.98rem);
  color: rgba(255,255,255,0.45); font-weight: 300;
  max-width: 520px; margin: 0 auto;
  font-family: 'DM Sans', sans-serif;
}

/* ══════════════════════════════
   PAGE SECTION WRAPPER
══════════════════════════════ */
.page-section { max-width: 1160px; margin: 0 auto; }

/* ══════════════════════════════
   CARD GRID
══════════════════════════════ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* ══════════════════════════════
   PRODUCT CARD
══════════════════════════════ */
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative; display: flex; flex-direction: column;
}
.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s; z-index: 1;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240,180,41,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), var(--glow-gold);
}
.product-card:hover::before { opacity: 1; }
.product-card-img {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, rgba(76,29,149,0.5), rgba(13,21,38,0.9));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.product-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(4,7,15,0.5));
}
.product-card-body {
  padding: 1.4rem; flex: 1; display: flex; flex-direction: column;
}
.product-card-body h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--text-heading); margin-bottom: 0.5rem;
}
.product-card-body p {
  color: var(--text-muted); font-size: 0.83rem;
  line-height: 1.65; margin-bottom: 1.25rem; flex: 1;
}
.price-badge {
  position: absolute; top: 0.85rem; right: 0.85rem; z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #04070f; font-weight: 800; font-size: 0.7rem;
  padding: 0.22rem 0.7rem; border-radius: 4px;
  letter-spacing: 0.05em; font-family: var(--mono);
}

/* ══════════════════════════════
   PARTNER CARD
══════════════════════════════ */
.partner-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px; padding: 1.85rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.partner-card:hover { transform: translateY(-5px); border-color: rgba(240,180,41,0.2); box-shadow: 0 16px 50px rgba(0,0,0,0.25), var(--glow-gold); }
.partner-logo {
  width: 62px; height: 62px; border-radius: 12px;
  background: var(--bg-2); border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.75rem; flex-shrink: 0;
  overflow: hidden; padding: 6px;
}
.partner-logo-img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.partner-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-heading); margin-bottom: 0.5rem; }
.partner-card p { color: var(--text-muted); font-size: 0.83rem; line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }

/* ══════════════════════════════
   EBOOK CARDS
══════════════════════════════ */
.ebook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.ebook-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.ebook-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240,180,41,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 30px rgba(240,180,41,0.08);
}
.ebook-cover-wrap {
  position: relative;
  background: linear-gradient(135deg, #070c18, #0f1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem 0;
  min-height: 280px;
}
.ebook-cover {
  width: auto;
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.4s ease;
}
.ebook-card:hover .ebook-cover { transform: scale(1.03) translateY(-4px); }
.ebook-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.2rem 0.65rem; border-radius: 3px;
  font-family: var(--mono);
}
.ebook-badge.updated {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #04070f;
}
.ebook-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.ebook-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ebook-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.ebook-body > p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}
.ebook-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.25rem 0 0.5rem;
}
.ebook-bullets li {
  font-size: 0.83rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.ebook-bullets li::before {
  content: '›';
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  flex-shrink: 0;
}
.ebook-price-row {
  display: flex;
  align-items: center;
  padding: 0.75rem 0 0.25rem;
  border-top: 1px solid var(--card-border);
  margin-top: 0.5rem;
}
.ebook-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  font-family: var(--mono);
}
.ebook-price-note {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 0.3rem;
  font-family: var(--font);
  letter-spacing: 0;
}
@media (max-width: 600px) {
  .ebook-grid { grid-template-columns: 1fr; }
  .ebook-cover-wrap { min-height: 220px; }
}

/* ══════════════════════════════
   BLOG CARD
══════════════════════════════ */
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(240,180,41,0.18); box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.blog-card-img {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, rgba(76,29,149,0.6), rgba(13,21,38,0.95));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.2rem;
}
.blog-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.7rem; }
.blog-tag {
  background: rgba(240,180,41,0.1); border: 1px solid rgba(240,180,41,0.2);
  color: var(--gold); font-size: 0.58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.15rem 0.6rem; border-radius: 3px; font-family: var(--mono);
}
.blog-date { color: var(--text-muted); font-size: 0.7rem; font-family: var(--mono); }
.blog-card-body h3 { font-size: 0.97rem; font-weight: 700; color: var(--text-heading); margin-bottom: 0.55rem; line-height: 1.4; }
.blog-card-body p { color: var(--text-muted); font-size: 0.83rem; line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }
.read-more {
  color: var(--gold); font-size: 0.78rem; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem;
  transition: gap 0.2s; margin-top: auto; font-family: var(--mono);
}
.read-more:hover { gap: 0.6rem; }

/* ══════════════════════════════
   CONTACT FORM
══════════════════════════════ */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 0.65rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.15em; font-family: var(--mono);
}
.form-group input,
.form-group textarea {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 8px; padding: 0.8rem 1rem;
  color: var(--text); font-family: 'Poppins', sans-serif;
  font-size: 0.88rem; width: 100%; outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(240,180,41,0.4);
  box-shadow: 0 0 0 3px rgba(240,180,41,0.07);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ══════════════════════════════
   CONTACT INFO GRID
══════════════════════════════ */
.contact-info-grid { display: flex; flex-direction: column; gap: 0.85rem; }
.info-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 1.15rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none; transition: border-color 0.25s, transform 0.25s;
}
.info-card:hover { border-color: rgba(240,180,41,0.2); transform: translateX(5px); }
.info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(240,180,41,0.08); border: 1px solid rgba(240,180,41,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.info-card-text span {
  display: block; font-size: 0.62rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); margin-bottom: 3px; font-family: var(--mono);
}
.info-card-text strong { font-size: 0.86rem; color: var(--text-heading); font-weight: 600; }

/* ══════════════════════════════
   TIMELINE
══════════════════════════════ */
.about-timeline { display: flex; flex-direction: column; gap: 0; position: relative; margin-top: 1.75rem; }
.about-timeline::before {
  content: ''; position: absolute;
  left: 22px; top: 10px; bottom: 10px; width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--purple-light), transparent);
}
.timeline-item { display: flex; gap: 1.5rem; padding-bottom: 1.75rem; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800; color: #04070f;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 4px rgba(240,180,41,0.1);
  font-family: var(--mono);
}
.timeline-content { padding-top: 0.55rem; }
.timeline-content h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-heading); margin-bottom: 0.3rem; }
.timeline-content p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; }

/* ══════════════════════════════
   SKILLS GRID
══════════════════════════════ */
.skills-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.skill-badge {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 5px; padding: 0.45rem 1.1rem;
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
  transition: all 0.25s; cursor: default;
  font-family: var(--mono); letter-spacing: 0.04em;
}
.skill-badge:hover { border-color: var(--gold); color: var(--gold); background: rgba(240,180,41,0.05); box-shadow: var(--glow-gold); }

/* ══════════════════════════════
   TWO-COL / BIO GRID
══════════════════════════════ */
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1160px; margin: 0 auto; }

/* ══════════════════════════════
   CTA BAND (sub-pages)
══════════════════════════════ */
.cta-band {
  padding: 5rem 5%; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(76,29,149,0.4) 0%, var(--bg-2) 100%);
  border-top: 1px solid rgba(124,58,237,0.12);
  border-bottom: 1px solid rgba(124,58,237,0.12);
}
.cta-band::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(240,180,41,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 0.75rem; letter-spacing: -0.025em; }
.cta-band p { color: rgba(255,255,255,0.45); font-size: 0.92rem; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band .cta-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* ══════════════════════════════
   FEATURED PARTNER
══════════════════════════════ */
.featured-partner {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 2.25rem;
  display: flex; gap: 2.5rem; align-items: center;
  margin-bottom: 3rem; transition: border-color 0.3s, box-shadow 0.3s;
}
.featured-partner:hover { border-color: rgba(240,180,41,0.2); box-shadow: var(--glow-gold); }
.featured-partner-logo {
  width: 220px; min-height: 140px; border-radius: 14px;
  background: var(--bg-2); border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem; flex-shrink: 0; overflow: hidden;
}
.partner-banner-img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 14px;
}
.featured-partner-content h3 { font-size: 1.3rem; font-weight: 800; color: var(--text-heading); margin-bottom: 0.4rem; }
.partner-tag {
  display: inline-block;
  background: rgba(240,180,41,0.1); border: 1px solid rgba(240,180,41,0.2);
  color: var(--gold); font-size: 0.58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 0.15rem 0.65rem; border-radius: 3px; margin-bottom: 0.9rem; font-family: var(--mono);
}
.featured-partner-content p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.disclaimer {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 10px; padding: 1rem 1.4rem;
  color: var(--text-muted); font-size: 0.76rem; line-height: 1.65; margin-top: 2.5rem;
}
.disclaimer strong { color: var(--gold); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 980px) {
  .nav-links, .nav-social { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; padding-top: 110px; text-align: center; gap: 2.5rem; }
  .hero-left { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { text-align: center; max-width: 100%; }
  .hero-right { order: -1; }
  .hero-cartoon-wrap { width: clamp(200px, 55vw, 290px); }
  .hero-float-tag { display: none; }
  .hero-buttons { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-frame img { height: 320px; }
  .about-crypto-thumb { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .two-col-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .featured-partner { flex-direction: column; gap: 1.5rem; }
  .featured-partner-logo { width: 100%; min-height: 160px; }
  .section-header { margin-bottom: 2.5rem; }
}
@media (max-width: 600px) {
  section { padding: 3.5rem 5%; }
  .hero { gap: 1.75rem; padding-top: 90px; min-height: auto; padding-bottom: 4rem; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .hero-sub { font-size: 0.87rem; }
  .hero-buttons { flex-direction: column; align-items: center; width: 100%; max-width: 280px; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }
  .hero-cartoon-wrap { width: min(210px, 62vw); }
  .about-img-frame img { height: 210px; }
  .stats { padding: 2.5rem 5%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 1.85rem; }
  .quote-section { padding: 2.75rem 5%; }
  .quote-text { font-size: clamp(1.15rem, 5vw, 1.5rem); }
  .pillar-card { padding: 1.5rem 1.2rem; }
  .testimonial-card { padding: 1.25rem; }
  .section-header { margin-bottom: 1.75rem; }
  footer { padding: 3rem 5% 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-bar { gap: 1rem; flex-direction: column; align-items: center; }
  .page-hero { height: 230px; }
  .page-hero-content h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .page-hero-content p { font-size: 0.82rem; }
  .card-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 3rem 5%; }
  .cta-band h2 { font-size: 1.5rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
  .featured-partner { padding: 1.25rem; }
  .blog-card-img { height: 170px; }
  .ebook-cover-wrap { min-height: 200px; }
  .partner-logo { width: 52px; height: 52px; }
  .chat-widget { bottom: 16px; right: 14px; }
  .chat-popup { width: 270px; }
  .chat-trigger-label { display: none; }
  .chat-trigger { border-radius: 50%; width: 50px; height: 50px; padding: 0; justify-content: center; }
  .info-card { padding: 0.9rem 1rem; }
  .page-section { padding: 0; }
}

/* ── Hide WhatsApp bubble ── */
.whatsapp-bubble { display: none !important; }

/* ── Developer credits bar ── */
.dev-credits {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(6,10,20,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(240,180,41,.15);
  padding: 7px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  font-family: 'Poppins', sans-serif;
  letter-spacing: .04em;
  pointer-events: none;
}
.dev-credits span { color: rgba(240,180,41,.75); font-weight: 700; }
