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

/* ============================================================
   DESIGN SYSTEM — PLUGS
   Wealth (glass/shine) + Ops (grid/terminal) + Creative (orbs/aurora)
============================================================ */
:root {
  --bg:           #030308;
  --bg-subtle:    #060610;
  --bg-card:      #0a0a18;
  --bg-elevated:  #0e0e20;
  --bg-overlay:   #14142a;

  --border:         rgba(255,255,255,0.06);
  --border-strong:  rgba(255,255,255,0.10);
  --border-hover:   rgba(140,255,46,0.35);
  --border-glow:    rgba(140,255,46,0.20);
  --border-violet:  rgba(139,92,246,0.25);

  --text:           #f0f0ff;
  --text-secondary: rgba(240,240,255,0.50);
  --text-muted:     rgba(255,255,255,0.28);

  --accent:         #8cff2e;
  --accent-dark:    #0a1400;
  --accent-light:   rgba(140,255,46,0.10);
  --accent-glow:    rgba(140,255,46,0.20);

  --green:          #10b981;
  --green-light:    rgba(16,185,129,0.10);
  --orange:         #f59e0b;
  --orange-light:   rgba(245,158,11,0.08);

  --violet:         #8b5cf6;
  --violet-light:   rgba(139,92,246,0.10);
  --violet-glow:    rgba(139,92,246,0.20);
  --fuchsia:        #d946ef;
  --fuchsia-glow:   rgba(217,70,239,0.15);
  --cyan:           #06b6d4;
  --cyan-light:     rgba(6,182,212,0.08);

  --radius:    16px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── GRAIN OVERLAY (Creative) ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--noise);
  pointer-events: none;
  z-index: 9999;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 6px; }

/* ============================================================
   BACKGROUND — Orbs (Creative) + Grid (Ops) + Mesh
============================================================ */
.bg-motion {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(140,255,46,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140,255,46,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

.bg-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(140,255,46,0.18), transparent 70%);
  top: -15%; left: -10%;
  animation: orb1 22s ease-in-out infinite;
}
.bg-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.14), transparent 70%);
  top: 30%; right: -12%;
  animation: orb2 26s ease-in-out infinite;
}
.bg-orb-3 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(217,70,239,0.10), transparent 70%);
  bottom: -10%; left: 20%;
  animation: orb3 24s ease-in-out infinite;
}
.bg-orb-4 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(6,182,212,0.10), transparent 70%);
  top: 60%; left: 60%;
  animation: orb4 28s ease-in-out infinite;
}

@keyframes orb1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(80px,60px) scale(1.15); }
  66% { transform: translate(-30px,100px) scale(0.9); }
}
@keyframes orb2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-70px,-50px) scale(1.1); }
  66% { transform: translate(40px,-80px) scale(0.95); }
}
@keyframes orb3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(60px,-70px) scale(1.12); }
}
@keyframes orb4 {
  0%, 100% { transform: translate(0,0); opacity: 0.6; }
  50% { transform: translate(-100px,60px); opacity: 1; }
}

/* ============================================================
   NAVBAR — Glass (Wealth)
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0.75rem 0.75rem 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease-expo);
}
.navbar.hidden { transform: translateY(-120%); }

.navbar-inner {
  width: calc(100% - 1.5rem);
  max-width: 800px;
  padding: 0 1.25rem;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,15,28,0.6);
  backdrop-filter: blur(40px) saturate(1.6);
  -webkit-backdrop-filter: blur(40px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  pointer-events: auto;
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  position: relative;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.375rem 0.625rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  height: 1px;
  width: 0;
  background: rgba(140,255,46,0.6);
  transition: all 0.3s;
}
.nav-link:hover::after {
  width: 75%;
  left: 12.5%;
}

.nav-link-icon {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.5);
  padding: 0.375rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-link-icon:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
}

.nav-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.1);
  margin: 0 0.5rem;
}

.nav-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), #6de600);
  color: #0a0f1c;
  padding: 0.375rem 0.875rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta-primary:hover {
  box-shadow: 0 0 20px rgba(140,255,46,0.3);
  transform: scale(1.05);
}

.nav-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 500;
  background: rgba(139,92,246,0.08);
  color: rgba(199,180,255,0.8);
  border: 1px solid rgba(139,92,246,0.15);
  padding: 0.375rem 0.875rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta-secondary:hover {
  color: #c4b5fd;
  border-color: rgba(139,92,246,0.45);
  background: rgba(139,92,246,0.15);
  box-shadow: 0 0 20px rgba(139,92,246,0.2);
}

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem;
  margin-right: -0.25rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}
.nav-mobile-btn:hover { background: rgba(255,255,255,0.05); }

/* ============================================================
   HERO — Cosmic glow (Creative)
============================================================ */
.hero {
  padding: 160px 2rem 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 1000px;
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(140,255,46,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 40% 40%, rgba(139,92,246,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 35% 25% at 60% 55%, rgba(217,70,239,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(140,255,46,0.06);
  border: 1px solid rgba(140,255,46,0.18);
  color: #b8ff6e;
  padding: 0.4rem 1.25rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(140,255,46,0.06), inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 30px rgba(140,255,46,0.3);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 10px var(--accent), 0 0 30px rgba(140,255,46,0.3); }
  50% { box-shadow: 0 0 4px var(--accent), 0 0 12px rgba(140,255,46,0.15); opacity: 0.5; }
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: 850px;
  margin: 0 auto 1.75rem;
}

/* Aurora gradient text (Creative) */
.hero h1 .accent {
  background: linear-gradient(135deg, #8cff2e 0%, #10b981 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

/* ─── Hero Buttons ─── */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--accent-dark);
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.25s var(--ease-expo);
  box-shadow:
    0 0 20px rgba(140,255,46,0.25),
    0 0 60px rgba(140,255,46,0.10),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* Shine sweep (Creative) */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease-expo);
  pointer-events: none;
}
.btn-primary:hover::after { left: 160%; }
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 8px 32px rgba(140,255,46,0.35),
    0 0 80px rgba(140,255,46,0.15),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  color: var(--text-secondary);
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  transition: all 0.25s var(--ease-expo);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.btn-ghost:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* CTA Call 1-1 Button */
.btn-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  background: linear-gradient(135deg, #ff6b35, #ff2e63, #ff6b35);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite, pulseGlow 2s ease-in-out infinite;
  color: #fff;
  padding: 0.95rem 2.4rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
  box-shadow:
    0 4px 20px rgba(255,46,99,0.4),
    0 0 60px rgba(255,46,99,0.15);
}
.btn-cta-call:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 8px 40px rgba(255,46,99,0.55),
    0 0 100px rgba(255,107,53,0.25);
}
.btn-cta-call:active {
  transform: translateY(-1px) scale(1.01);
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,46,99,0.4), 0 0 60px rgba(255,46,99,0.15); }
  50% { box-shadow: 0 4px 30px rgba(255,46,99,0.6), 0 0 80px rgba(255,46,99,0.25); }
}

/* CTA Toolscale Button */
.btn-tool-wrap {
  position: relative;
  display: inline-flex;
}
.btn-tool {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  color: #fff;
  padding: 0.95rem 2.4rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
  box-shadow:
    0 4px 20px rgba(99,102,241,0.4),
    0 0 60px rgba(139,92,246,0.15);
}
.btn-tool:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 8px 40px rgba(99,102,241,0.55),
    0 0 100px rgba(139,92,246,0.25);
}
.btn-tool:active {
  transform: translateY(-1px) scale(1.01);
}
.btn-tool-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  padding: 0.75rem 1.2rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 32px rgba(99,102,241,0.4);
  z-index: 10;
  text-align: center;
}
@media (max-width: 640px) {
  .btn-tool-tooltip {
    white-space: normal;
    width: max-content;
    max-width: 220px;
    font-size: 0.72rem;
    padding: 0.6rem 1rem;
  }
}
.btn-tool-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #8b5cf6;
}
.btn-tool-wrap:hover .btn-tool-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── Hero Sphere (Creative orb visual) ─── */
.hero-sphere {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  pointer-events: none;
  z-index: 0;
}

.hero-sphere-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(140,255,46,0.15), rgba(139,92,246,0.08) 60%, transparent 80%);
  box-shadow: 0 0 80px rgba(140,255,46,0.08), 0 0 160px rgba(139,92,246,0.06);
  animation: spherePulse 6s ease-in-out infinite;
}

.hero-sphere-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotateX(70deg);
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(140,255,46,0.08);
  animation: sphereRotate 20s linear infinite;
}

.hero-sphere-ring-2 {
  width: 400px; height: 400px;
  border-color: rgba(139,92,246,0.06);
  animation: sphereRotate 30s linear infinite reverse;
  transform: translate(-50%, -50%) rotateX(70deg) rotateZ(30deg);
}

@keyframes spherePulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
}

@keyframes sphereRotate {
  from { transform: translate(-50%,-50%) rotateX(70deg) rotateZ(0deg); }
  to { transform: translate(-50%,-50%) rotateX(70deg) rotateZ(360deg); }
}

.hero > *:not(.hero-sphere) { position: relative; z-index: 1; }

/* ─── Stats ─── */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid linear-gradient(90deg, transparent, var(--border), transparent);
  border-image: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent) 1;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   TICKER / MARQUEE (Wealth)
============================================================ */
.ticker-wrap {
  overflow: hidden;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}

.ticker-inner {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  width: max-content;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

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

.ticker-dot.green { background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }
.ticker-dot.violet { background: var(--violet); box-shadow: 0 0 8px var(--violet-glow); }
.ticker-dot.cyan { background: var(--cyan); box-shadow: 0 0 8px rgba(6,182,212,0.3); }
.ticker-dot.orange { background: var(--orange); box-shadow: 0 0 8px rgba(245,158,11,0.3); }

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

/* ============================================================
   FEATURES (Ops-inspired metric cards)
============================================================ */
.features-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

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

.feature-card {
  background: linear-gradient(135deg, rgba(14,14,32,0.8), rgba(10,10,24,0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-expo);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02), 0 4px 20px rgba(0,0,0,0.4);
}

/* Gradient top line */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140,255,46,0.3), rgba(139,92,246,0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

/* Subtle shine */
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.feature-card:hover {
  border-color: rgba(255,255,255,0.10);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 40px rgba(140,255,46,0.04);
}

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

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.feature-icon.green {
  background: rgba(140,255,46,0.08);
  border: 1px solid rgba(140,255,46,0.15);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(140,255,46,0.06);
}

.feature-icon.violet {
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.18);
  color: var(--violet);
  box-shadow: 0 0 20px var(--violet-glow);
}

.feature-icon.cyan {
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.18);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(6,182,212,0.08);
}

.feature-icon.orange {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.18);
  color: var(--orange);
  box-shadow: 0 0 20px rgba(245,158,11,0.06);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SECTION DIVIDER (Creative gradient line)
============================================================ */
.section-divider {
  height: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(140,255,46,0.15), rgba(139,92,246,0.12), rgba(217,70,239,0.08), transparent);
}

/* ============================================================
   FILTER — with heading (Wealth)
============================================================ */
.filter-section {
  padding: 3rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

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

.filter-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.filter-label::before {
  content: '//';
  opacity: 0.4;
}

.filter-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.filter-tabs {
  display: flex;
  gap: 0.3rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem;
  flex-wrap: wrap;
  justify-content: center;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 4px 24px rgba(0,0,0,0.4);
}

.filter-tab {
  padding: 0.45rem 1.15rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s var(--ease-expo);
  border: none;
  background: none;
  white-space: nowrap;
}
.filter-tab:hover { color: var(--text-secondary); background: rgba(255,255,255,0.04); }
.filter-tab.active {
  background: var(--accent);
  color: var(--accent-dark);
  box-shadow: 0 0 20px rgba(140,255,46,0.25), 0 0 50px rgba(140,255,46,0.08);
}

/* ============================================================
   MAIN
============================================================ */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

/* ============================================================
   CATEGORY SECTIONS
============================================================ */
.category-section { margin-bottom: 4rem; }

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, var(--border), rgba(140,255,46,0.08), var(--border)) 1;
}

.category-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-light), var(--violet-light));
  border: 1px solid rgba(140,255,46,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(140,255,46,0.06);
}

.category-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.category-count {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
}

/* ============================================================
   CARDS GRID
============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CARD — Glass + Shine (Wealth) + Gradient border (Ops) + Glow (Creative)
============================================================ */
.card {
  background: linear-gradient(135deg, rgba(14,14,32,0.9), rgba(10,10,24,0.95));
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.4s var(--ease-expo);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 4px 24px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Diagonal shine overlay (Creative) */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Gradient top line (Ops) */
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140,255,46,0.4), rgba(139,92,246,0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}

.card:hover {
  border-color: rgba(140,255,46,0.20);
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 0 0 1px rgba(140,255,46,0.08),
    0 16px 48px rgba(0,0,0,0.5),
    0 0 40px rgba(140,255,46,0.06),
    0 0 80px rgba(139,92,246,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.card:hover::after { opacity: 1; }

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  position: relative;
  z-index: 3;
}

.card-title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  flex: 1;
  letter-spacing: -0.01em;
}

/* ─── Badges ─── */
.price-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 3;
}
.price-badge.free {
  background: var(--green-light);
  color: #34d399;
  border: 1px solid rgba(16,185,129,0.25);
  box-shadow: 0 0 12px rgba(16,185,129,0.08);
}
.price-badge.fixed {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(140,255,46,0.20);
  box-shadow: 0 0 12px rgba(140,255,46,0.06);
}
.price-badge.quote {
  background: var(--orange-light);
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,0.25);
  box-shadow: 0 0 12px rgba(245,158,11,0.06);
}

.card-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  position: relative;
  z-index: 3;
}

.card-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 3;
}

/* ============================================================
   CARD BUTTONS
============================================================ */
.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: var(--accent-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--ease-expo);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(140,255,46,0.15);
}
.btn-buy::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s var(--ease-expo);
  pointer-events: none;
}
.btn-buy:hover::after { left: 160%; }
.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(140,255,46,0.35), 0 0 60px rgba(140,255,46,0.10);
}

.btn-buy.free {
  background: linear-gradient(135deg, #10b981, #06b6d4);
  color: #fff;
  box-shadow: 0 0 16px rgba(16,185,129,0.20);
}
.btn-buy.free:hover {
  box-shadow: 0 4px 24px rgba(16,185,129,0.35), 0 0 60px rgba(6,182,212,0.10);
}

.btn-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.65rem 1rem;
  background: rgba(245,158,11,0.06);
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,0.20);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--ease-expo);
}
.btn-quote:hover {
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(245,158,11,0.12);
}

.btn-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  transition: all 0.25s var(--ease-expo);
  cursor: pointer;
}
.btn-preview:hover {
  color: #fff;
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.06);
}

/* ============================================================
   FAQ — Accordion
============================================================ */
.faq-section {
  padding: 4rem 1.5rem 5rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-label {
  color: var(--accent);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
}

.faq-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.faq-subtitle {
  color: rgba(255,255,255,0.4);
  font-size: 0.95rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(140,255,46,0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color 0.2s;
  gap: 1rem;
}

.faq-question:hover { color: var(--accent); }

.faq-question svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.35);
  transition: transform 0.3s var(--ease-expo), color 0.2s;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-expo), padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
}

.faq-footer {
  text-align: center;
  margin-top: 2.5rem;
}

.faq-footer p {
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.faq-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.faq-footer a:hover { color: #a8ff6e; }

/* ============================================================
   CONTACT — Glass + Mesh (Creative)
============================================================ */
.contact-section {
  background: linear-gradient(135deg, rgba(14,14,32,0.8), rgba(10,10,24,0.9));
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 5rem 2rem;
  text-align: center;
  margin: 2rem auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 8px 48px rgba(0,0,0,0.5);
}

/* Mesh background (Creative) */
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 20% 30%, rgba(140,255,46,0.08) 0px, transparent 50%),
    radial-gradient(at 80% 70%, rgba(139,92,246,0.08) 0px, transparent 50%),
    radial-gradient(at 50% 10%, rgba(6,182,212,0.05) 0px, transparent 40%);
  pointer-events: none;
}

/* Aurora top line */
.contact-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140,255,46,0.4), rgba(139,92,246,0.3), rgba(217,70,239,0.2), transparent);
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-light);
  border: 1px solid rgba(140,255,46,0.15);
  border-radius: 100px;
  position: relative;
}

.contact-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  position: relative;
}
.contact-section p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  line-height: 1.7;
}
.contact-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.footer-logo span { color: var(--accent); }

.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

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

/* ============================================================
   MOBILE SIDEBAR
============================================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 150;
  width: 280px;
  max-width: 85vw;
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-expo);
  overflow-y: auto;
  box-shadow: -12px 0 60px rgba(0,0,0,0.6);
}
.mobile-sidebar.open { transform: translateX(0); }

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.mobile-sidebar-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
}
.mobile-sidebar-logo span { color: var(--accent); }

.mobile-sidebar-close {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s;
  font-size: 1rem;
  line-height: 1;
}
.mobile-sidebar-close:hover {
  background: rgba(255,255,255,0.10);
  color: var(--text);
}

.mobile-sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  flex: 1;
}
.mobile-sidebar-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mobile-sidebar-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.mobile-sidebar-nav a svg {
  opacity: 0.5;
  flex-shrink: 0;
}

.mobile-sidebar-footer {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
}
.mobile-sidebar-footer a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s;
  display: block;
}
.mobile-sidebar-footer .mob-cta-primary {
  background: var(--accent);
  color: var(--accent-dark);
  box-shadow: 0 0 20px rgba(140,255,46,0.15);
}
.mobile-sidebar-footer .mob-cta-primary:hover {
  box-shadow: 0 0 32px rgba(140,255,46,0.30);
}
.mobile-sidebar-footer .mob-cta-secondary {
  background: var(--violet-light);
  color: rgba(199,180,255,0.8);
  border: 1px solid var(--border-violet);
}
.mobile-sidebar-footer .mob-cta-secondary:hover {
  color: #c4b5fd;
  background: rgba(139,92,246,0.15);
  box-shadow: 0 0 20px var(--violet-glow);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-divider { display: none !important; }
  .nav-mobile-btn { display: flex; }
  .navbar-inner { padding: 0 0.75rem; }
  .hero { padding: 120px 1.25rem 60px; }
  .hero-stats { gap: 2rem; }
  .main { padding: 1.5rem 1.25rem 4rem; }
  .filter-section { padding: 0 1.25rem 1.5rem; overflow-x: auto; }
  .filter-tabs { border-radius: 14px; }
  .contact-section { margin: 1.25rem; padding: 3rem 1.5rem; border-radius: var(--radius); }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .hero-sphere { width: 350px; height: 350px; }
  .hero-sphere-ring { width: 220px; height: 220px; }
  .hero-sphere-ring-2 { width: 300px !important; height: 300px !important; }
  .hero-sphere-core { width: 80px; height: 80px; }
  .ticker-wrap { display: none; }
  .features-section { padding: 3rem 1.25rem; }
}

/* ============================================================
   ANIMATIONS
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MODAL — Glass + Aurora (Creative + Wealth)
============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(3,3,8,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: linear-gradient(135deg, rgba(14,14,32,0.95), rgba(10,10,24,0.98));
  border: 1px solid rgba(140,255,46,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  overflow: hidden;
  transform: translateY(32px) scale(0.96);
  opacity: 0;
  transition: transform 0.5s var(--ease-spring), opacity 0.35s;
  box-shadow:
    0 24px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(140,255,46,0.05),
    0 0 120px rgba(139,92,246,0.04);
}
/* Glass shine */
.modal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  font-size: 1.1rem;
  line-height: 1;
  z-index: 1;
}
.modal-close:hover { background: rgba(255,255,255,0.10); color: var(--text); }

.modal-plug-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-light);
  border: 1px solid rgba(140,255,46,0.18);
  color: var(--accent);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  letter-spacing: 0.03em;
}
.modal-plug-tag svg { flex-shrink: 0; }

.modal h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}

.modal-subtitle {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

/* ─── Form ─── */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}
.form-group input {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s var(--ease-expo);
  width: 100%;
}
.form-group input::placeholder { color: rgba(255,255,255,0.18); }
.form-group input:focus {
  border-color: rgba(140,255,46,0.35);
  box-shadow: 0 0 0 3px rgba(140,255,46,0.06), 0 0 24px rgba(140,255,46,0.06);
  background: rgba(140,255,46,0.02);
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  background: var(--accent);
  color: var(--accent-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.25s var(--ease-expo);
  box-shadow: 0 0 24px rgba(140,255,46,0.20);
}
.btn-submit::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s var(--ease-expo);
  pointer-events: none;
}
.btn-submit:hover::after { left: 160%; }
.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(140,255,46,0.35);
}
.btn-submit:active { transform: translateY(0); }

/* ─── Success ─── */
.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}
.modal-success.show { display: flex; }
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 2px solid rgba(140,255,46,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.5s var(--ease-spring);
  box-shadow: 0 0 40px rgba(140,255,46,0.12);
}
@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.success-icon svg {
  color: var(--accent);
  animation: drawCheck 0.4s ease 0.2s both;
}
@keyframes drawCheck {
  0% { opacity: 0; transform: scale(0.5) rotate(-10deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
.modal-success h3 { font-size: 1.25rem; font-weight: 800; }
.modal-success p { color: var(--text-secondary); font-size: 0.875rem; max-width: 280px; line-height: 1.6; }

@media (max-width: 540px) {
  .modal { padding: 1.75rem 1.5rem; }
  .modal h2 { font-size: 1.3rem; }
}

/* ============================================================
   PULSE keyframe for em breve modal
============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Variables */
:root {
  --brand--purple: #86a4ff;
  --brand--blue: #4672fe;
  --brand--dark-blue: #2050e7;
  --background-colors--secondary: #0c0f19;
  --font-colors--primary: #fff;
  --font-colors--secondary: #c9d0e8;
  --border-colors--primary: #4a4e72;
  --border-colors--secondary: #c9d0e833;
  --border-colors--shadow-colors--primary: #36346b99;
  --_ui-styles---radius--medium: 1.5rem;
  --_ui-styles---font-size--regular: 0.875rem;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background-color: #04080f;
  font-family: Inter, Verdana, sans-serif;
  color: var(--font-colors--secondary);
  font-size: var(--_ui-styles---font-size--regular);
  font-weight: 300;
  line-height: 1.5;
}

h2 {
  font-family: Inter, Verdana, sans-serif;
  color: var(--font-colors--primary);
  letter-spacing: -0.02em;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

h3 {
  font-family: Inter, Verdana, sans-serif;
  color: var(--font-colors--primary);
  letter-spacing: -0.02em;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

p { color: var(--font-colors--secondary); margin: 0; font-weight: 300; }

a { color: var(--font-colors--primary); font-weight: 300; text-decoration: none; }

/* Layout */
.padding-global { padding-left: 2.5rem; padding-right: 2.5rem; }
.container-large { width: 100%; max-width: 80rem; margin-left: auto; margin-right: auto; }
.padding-section-large { padding-top: 7rem; padding-bottom: 7rem; }

/* Section heading */
.section-heading.is-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

/* Spacers */
.spacer-large { width: 100%; padding-top: 3rem; }
.spacer-xsmall { width: 100%; padding-top: 1rem; }

/* Grid — 2 colunas lado a lado */
.home-audience_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  margin-bottom: 2rem;
}

/* Card */
.card {
  border: 1px solid var(--border-colors--primary);
  border-radius: var(--_ui-styles---radius--medium);
  background-color: var(--background-colors--secondary);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 15px var(--border-colors--shadow-colors--primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card.padding-medium { padding: 2rem; }

/* Hover animation */
.card.highlight-on-hover:hover {
  border-color: var(--brand--purple);
  box-shadow: inset 0 0 30px #36346bcc, 0 0 20px #86a4ff22;
}

.card.highlight-on-hover:hover .card_bg-highlight {
  opacity: 0.15;
  transition: opacity 0.3s ease;
}

/* Card content */
.card_content { z-index: 1; position: relative; }
.card_content.align-space-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Card bottom */
.home-audience_card-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  align-items: end;
}

/* Button */
.button {
  border: 1px solid var(--border-colors--secondary);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: transparent;
  background-image: linear-gradient(90deg, #a3b7ff14, #1c1c1c33);
  color: var(--font-colors--primary);
  text-align: center;
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  align-self: flex-end;
}

.button:hover {
  transform: scale(0.97);
  border-color: var(--brand--purple);
}

/* Card BG highlight decorativo */
.card_bg-highlight {
  opacity: 0;
  background-image: url(https://cdn.prod.website-files.com/69500df1812baa5c0532b523/69593ff765c280f6c0da1260_38a90272801bd7ddc9d7235d88d88d77_bg-gradient.svg);
  background-size: cover;
  position: absolute;
  inset: 0;
  transform: rotate(180deg);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Mobile */
@media (max-width: 768px) {
  .home-audience_grid {
    grid-template-columns: 1fr;
  }
  .padding-global { padding-left: 1.25rem; padding-right: 1.25rem; }
  h2 { font-size: 2rem; }
}



