/* ═══════════════════════════════════════════════════
   AIEA AGENTS — WordPress Theme CSS
   ═══════════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────────── */
:root {
  --primary:      #FF49DB;
  --primary-dim:  #FF7AE3;
  --secondary:    #00F5FF;
  --on-surface:   #2D1B69;
  --on-surface-v: #6D5A9E;
  --bg:           #F8F7FF;
  --white:        #FFFFFF;
  --dark:         #0A0D14;
  --radius-full:  9999px;
  --shadow-p:     0 10px 40px -5px rgba(255,73,219,0.25);
  --shadow-s:     0 10px 40px -5px rgba(0,245,255,0.2);
}

/* ─── Reset & Base ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--on-surface);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography ────────────────────────────────── */
.font-headline, h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; }

/* ─── Gradient Text ─────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Glass Panel ───────────────────────────────── */
.glass {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-image: linear-gradient(135deg, rgba(255,73,219,0.05) 0%, rgba(0,245,255,0.05) 100%);
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: 0 10px 30px -5px rgba(167,139,250,0.15);
}

/* ─── Buttons ───────────────────────────────────── */
.btn-primary {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: var(--radius-full);
  transition: all 0.3s;
  display: inline-block;
  font-size: 1rem;
  box-shadow: var(--shadow-p);
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 20px 40px -5px rgba(255,73,219,0.4); color: #fff; }

.btn-outline {
  background: var(--white);
  color: var(--on-surface);
  font-weight: 700;
  padding: 14px 40px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(0,245,255,0.3);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  box-shadow: 0 5px 20px rgba(0,245,255,0.1);
}
.btn-outline:hover { border-color: var(--secondary); transform: scale(1.05); }

/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.aiea-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,73,219,0.1);
  animation: slideDown 0.6s ease;
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo { display: flex; align-items: center; }
.logo-img { height: 52px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--on-surface-v);
  transition: color 0.2s;
  font-family: 'Space Grotesk', sans-serif;
}
.nav-link:hover { color: var(--primary); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-trigger { display: flex; align-items: center; gap: 4px; }
.chevron { transition: transform 0.2s; }
.nav-dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 280px;
  background: var(--white);
  border: 1px solid rgba(255,73,219,0.15);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
  pointer-events: none;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.dropdown-item {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--on-surface);
  transition: all 0.2s;
}
.dropdown-item:hover { background: rgba(0,245,255,0.08); color: var(--primary); }

/* Nav Right */
.nav-right { display: flex; align-items: center; gap: 12px; }
.btn-register {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  transition: all 0.3s;
  box-shadow: var(--shadow-p);
}
.btn-register:hover { transform: scale(1.05); color: #fff; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--on-surface-v);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:first-child { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:last-child  { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 16px 16px;
  background: var(--white);
  border-top: 1px solid rgba(255,73,219,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--on-surface);
  transition: all 0.2s;
}
.mobile-link:hover { background: rgba(255,73,219,0.05); color: var(--primary); }
.mobile-services-btn {
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--on-surface);
  text-align: left;
  display: flex;
  justify-content: space-between;
}
.mobile-services-list { display: none; padding-left: 16px; }
.mobile-services-list.open { display: flex; flex-direction: column; }
.mobile-sub-link {
  padding: 8px 16px;
  font-size: 0.875rem;
  color: var(--on-surface-v);
  font-weight: 500;
}
.mobile-sub-link:hover { color: var(--primary); }

/* ═══════════════════════════════════════════════════
   PAGE WRAPPER
   ═══════════════════════════════════════════════════ */
.aiea-page { padding-top: 72px; }

/* ─── Background blobs ──────────────────────────── */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: blobFloat 10s ease-in-out infinite;
}
.blob-1 { width: 60%; height: 60%; top: -10%; left: -10%; background: rgba(255,73,219,0.12); }
.blob-2 { width: 60%; height: 60%; bottom: -10%; right: -10%; background: rgba(0,245,255,0.12); animation-delay: 2s; animation-duration: 12s; }
@keyframes blobFloat {
  0%,100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.08) rotate(5deg); }
}

/* ═══════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════ */
.hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero { grid-template-columns: 1fr 1fr; padding: 6rem 2rem 3rem; } }

/* Hero Text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid rgba(255,73,219,0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 8px var(--secondary);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }
.badge-text { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary); font-family: 'Manrope', sans-serif; }

.hero-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--on-surface-v);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }

/* Hero Visual (Canvas orb) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-orb {
  position: relative;
  width: min(380px, 85vw);
  height: min(380px, 85vw);
  border-radius: 50%;
  background: var(--dark);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 80px rgba(0,0,0,0.5), inset 0 0 40px rgba(255,73,219,0.1);
  animation: orbFloat 6s ease-in-out infinite;
}
@keyframes orbFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
#neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  mix-blend-mode: screen;
}
.orb-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,13,20,0.7) 0%, transparent 50%, rgba(255,73,219,0.2) 100%); }
.orb-blob-1 { position: absolute; width: 8rem; height: 8rem; border-radius: 50%; background: rgba(255,73,219,0.3); filter: blur(32px); top: 25%; left: 25%; animation: blobFloat 6s ease-in-out infinite; }
.orb-blob-2 { position: absolute; width: 10rem; height: 10rem; border-radius: 50%; background: rgba(0,245,255,0.3); filter: blur(40px); bottom: 30%; right: 25%; animation: blobFloat 8s ease-in-out infinite reverse; }
.orb-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.orb-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(255,255,255,0.8);
  line-height: 1;
}
.orb-label {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════ */
.stats-bar {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.5rem 2rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.stat-card {
  padding: 2rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.stat-card:hover { background: var(--white) !important; }
.stat-icon { position: absolute; top: 1.5rem; right: 1.5rem; opacity: 0.2; transition: opacity 0.3s; }
.stat-card:hover .stat-icon { opacity: 0.8; }
.stat-icon svg { width: 3.5rem; height: 3.5rem; }
.stat-label { font-size: 0.7rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 4px; }
.stat-value { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--on-surface); }
.stat-desc { font-size: 0.8rem; color: var(--on-surface-v); margin-top: 8px; }

/* ═══════════════════════════════════════════════════
   AGENT REGISTRY SECTION
   ═══════════════════════════════════════════════════ */
.registry-section { background: rgba(255,73,219,0.04); padding: 4rem 0 3rem; }
.registry-inner { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
.registry-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) { .registry-header { flex-direction: row; justify-content: space-between; align-items: flex-end; } }

.registry-title { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--on-surface); }
.registry-subtitle { color: var(--on-surface-v); margin-top: 4px; font-size: 1.05rem; }

/* Search */
.search-wrap { position: relative; width: 100%; max-width: 400px; }
.search-input {
  width: 100%;
  padding: 12px 48px 12px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,73,219,0.2);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--on-surface);
  outline: none;
  font-family: 'Manrope', sans-serif;
  transition: box-shadow 0.2s;
}
.search-input:focus { box-shadow: 0 0 0 3px rgba(255,73,219,0.15); }
.search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-btn svg { width: 16px; height: 16px; }

/* Domain Filters */
.domain-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1rem; }
.domain-btn {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--white);
  color: var(--on-surface-v);
  border: 1px solid rgba(255,73,219,0.1);
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.domain-btn:hover { border-color: var(--primary); color: var(--primary); }
.domain-btn.active { background: var(--primary); color: #fff; box-shadow: var(--shadow-p); transform: translateY(-1px); }

/* View all link */
.view-all { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 700; transition: all 0.2s; font-size: 0.9rem; }
.view-all:hover { color: var(--primary-dim); }
.view-all svg { transition: transform 0.2s; }
.view-all:hover svg { transform: translateX(4px); }

/* Agent Cards Grid */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem 0 2rem;
}
.agent-card {
  padding: 2rem;
  border-radius: 24px;
  border-top: 4px solid var(--primary);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: 0 10px 30px rgba(255,73,219,0.08);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.agent-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(255,73,219,0.15); }
.agent-card[data-theme="0"] { border-top-color: var(--primary); }
.agent-card[data-theme="1"] { border-top-color: var(--secondary); box-shadow: 0 10px 30px rgba(0,245,255,0.08); }
.agent-card[data-theme="2"] { border-top-color: var(--primary-dim); }

.card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2rem; }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.card-icon svg { width: 28px; height: 28px; }
.agent-card[data-theme="0"] .card-icon { color: var(--primary); }
.agent-card[data-theme="1"] .card-icon { color: var(--secondary); }
.agent-card[data-theme="2"] .card-icon { color: var(--primary-dim); }

.card-badge {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.agent-card[data-theme="0"] .card-badge { background: rgba(255,73,219,0.1); color: var(--primary); }
.agent-card[data-theme="1"] .card-badge { background: rgba(0,245,255,0.1); color: var(--secondary); }
.agent-card[data-theme="2"] .card-badge { background: rgba(255,122,227,0.1); color: var(--primary-dim); }

.card-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--on-surface); margin-bottom: 8px; }
.card-desc { font-size: 0.85rem; color: var(--on-surface-v); line-height: 1.6; min-height: 56px; margin-bottom: 1.5rem; }
.card-footer { display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; font-weight: 700; color: var(--on-surface-v); border-top: 1px solid rgba(0,0,0,0.05); padding-top: 1rem; }
.card-status { color: var(--secondary); display: flex; align-items: center; gap: 6px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); animation: pulse 2s ease-in-out infinite; }
.card-domain { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 180px; }

/* No results */
.no-results {
  grid-column: 1 / -1;
  padding: 4rem;
  text-align: center;
  color: var(--on-surface-v);
  font-size: 1.1rem;
  font-weight: 500;
  border: 2px dashed rgba(255,73,219,0.1);
  border-radius: 20px;
}

/* ═══════════════════════════════════════════════════
   FOUNDER SECTION
   ═══════════════════════════════════════════════════ */
.founder-section { background: var(--white); padding: 5rem 0; }
.founder-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 768px) { .founder-inner { flex-direction: row; align-items: center; } }

.founder-img-wrap {
  width: min(320px, 85vw);
  height: min(320px, 85vw);
  border-radius: 50%;
  border: 4px solid rgba(255,73,219,0.1);
  padding: 8px;
  flex-shrink: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.founder-img-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: rgba(0,245,255,0.05);
}
.founder-img-inner img { width: 100%; height: 100%; object-fit: cover; }
.founder-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 40%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  text-align: center;
}
.founder-name { font-size: 1.3rem; font-weight: 700; color: #fff; font-family: 'Space Grotesk', sans-serif; }
.founder-role { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--secondary); font-weight: 700; margin-top: 4px; }

.founder-content { flex: 1; }
.founder-tag { display: inline-block; padding: 4px 14px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(255,73,219,0.1); color: var(--primary); margin-bottom: 1rem; }
.founder-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 800; color: var(--on-surface); margin-bottom: 1rem; line-height: 1.2; }
.founder-quote { font-size: 1.05rem; color: var(--on-surface-v); line-height: 1.8; font-style: italic; }

/* ═══════════════════════════════════════════════════
   REVIEWS SECTION
   ═══════════════════════════════════════════════════ */
.reviews-section { background: var(--dark); color: #fff; padding: 5rem 0; }
.reviews-inner { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
.section-title-wrap { text-align: center; margin-bottom: 3rem; }
.reviews-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; background: linear-gradient(to right, #60a5fa, #818cf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.reviews-subtitle { color: rgba(255,255,255,0.5); margin-top: 12px; font-size: 1rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: background 0.3s;
  cursor: pointer;
}
.review-card:hover { background: rgba(255,255,255,0.1); }
.stars { display: flex; gap: 4px; color: #FCD34D; margin-bottom: 1.5rem; }
.stars svg { width: 20px; height: 20px; fill: currentColor; }
.review-text { font-size: 0.875rem; line-height: 1.7; opacity: 0.9; margin-bottom: 2rem; color: rgba(255,255,255,0.9); }
.review-author { display: flex; align-items: center; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 0.875rem; }
.author-role { font-size: 0.75rem; opacity: 0.5; margin-top: 2px; }

/* ═══════════════════════════════════════════════════
   CONTACT CTA SECTION
   ═══════════════════════════════════════════════════ */
.cta-section {
  background: rgba(255,73,219,0.04);
  border-top: 1px solid rgba(255,73,219,0.1);
  padding: 5rem 0;
  text-align: center;
}
.cta-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.cta-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--white); box-shadow: 0 10px 40px rgba(255,73,219,0.15); margin: 0 auto 2rem; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.cta-icon svg { width: 40px; height: 40px; }
.cta-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: var(--on-surface); margin-bottom: 1rem; }
.cta-desc { color: var(--on-surface-v); font-size: 1.05rem; max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════════════ */
.pricing-section { background: var(--white); border-top: 1px solid rgba(0,0,0,0.05); padding: 6rem 0; }
.pricing-inner { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-eyebrow { color: var(--secondary); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 8px; }
.pricing-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--on-surface); margin-bottom: 12px; }
.pricing-subtitle { color: var(--on-surface-v); font-size: 1.05rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; align-items: start; }

.pricing-card {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
  background: var(--white);
}
.pricing-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.pricing-card.featured {
  border-color: rgba(255,73,219,0.3);
  background: linear-gradient(to bottom, rgba(255,73,219,0.04), transparent);
  box-shadow: 0 0 50px rgba(255,73,219,0.12);
  position: relative;
  transform: translateY(-16px);
}
.featured-badge {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-p);
}

.plan-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; }
.plan-desc { color: var(--on-surface-v); font-size: 0.875rem; margin-bottom: 2rem; }
.plan-price { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 900; margin-bottom: 2rem; }
.plan-price .period { font-size: 1.2rem; opacity: 0.5; font-weight: 400; }
.pricing-card.featured .plan-price { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.plan-features { width: 100%; list-style: none; margin-bottom: 2.5rem; text-align: left; display: flex; flex-direction: column; gap: 16px; font-size: 0.875rem; font-weight: 500; flex: 1; }
.plan-feature { display: flex; align-items: center; gap: 10px; }
.plan-feature svg { flex-shrink: 0; }
.pricing-card:not(.featured) .plan-feature svg { color: var(--secondary); }
.pricing-card.featured .plan-feature svg { color: var(--primary); }

.plan-btn { width: 100%; padding: 14px; border-radius: var(--radius-full); font-weight: 700; font-size: 1rem; transition: all 0.3s; }
.plan-btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.plan-btn-outline:hover { background: var(--primary); color: #fff; }
.plan-btn-filled { background: var(--primary); color: #fff; box-shadow: var(--shadow-p); }
.plan-btn-filled:hover { transform: scale(1.02); box-shadow: 0 20px 40px rgba(255,73,219,0.4); }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.aiea-footer {
  background: var(--white);
  border-top: 1px solid rgba(255,73,219,0.1);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.footer-logo-link { transition: transform 0.3s; }
.footer-logo-link:hover { transform: scale(1.05); }
.footer-logo { height: min(100px, 25vw); width: auto; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1)); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2.5rem; }
.footer-link { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--on-surface-v); transition: color 0.2s; }
.footer-link:hover { color: var(--primary); }
.footer-copy { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(109,90,158,0.5); text-align: center; }

/* ═══════════════════════════════════════════════════
   CATALOG PAGE
   ═══════════════════════════════════════════════════ */
.catalog-page { min-height: 100vh; background: #F6F8F9; padding: 8rem 0 4rem; }
.catalog-header { max-width: 1440px; margin: 0 auto; padding: 0 2rem 3rem; text-align: center; }
.catalog-tag { display: inline-block; padding: 4px 14px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(255,73,219,0.1); color: var(--primary); margin-bottom: 1.5rem; }
.catalog-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 900; color: var(--on-surface); margin-bottom: 1rem; }
.catalog-desc { color: var(--on-surface-v); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; line-height: 1.7; }
.catalog-search-wrap { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.catalog-search { position: relative; width: 100%; max-width: 600px; }
.catalog-search-input { width: 100%; padding: 16px 56px 16px 24px; border-radius: var(--radius-full); border: 1px solid rgba(255,73,219,0.2); background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.08); font-size: 1rem; font-weight: 500; color: var(--on-surface); outline: none; font-family: 'Manrope', sans-serif; }
.catalog-search-input:focus { box-shadow: 0 0 0 3px rgba(255,73,219,0.15); }
.catalog-search-btn { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.catalog-search-btn svg { width: 20px; height: 20px; }
.catalog-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.catalog-grid-wrap { max-width: 1440px; margin: 0 auto; padding: 0 2rem 4rem; }
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }

/* ═══════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════ */
.about-page { min-height: 100vh; background: var(--white); }
.about-hero { background: #F6F8F9; padding: 8rem 2rem 4rem; text-align: center; position: relative; overflow: hidden; }
.about-hero-inner { max-width: 1200px; margin: 0 auto; }
.about-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 900; color: var(--on-surface); margin-bottom: 1rem; }
.about-desc { color: var(--on-surface-v); font-size: 1.1rem; max-width: 700px; margin: 0 auto; line-height: 1.7; }
.about-content { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 700; color: var(--on-surface); margin-bottom: 1rem; }
.about-text p { color: var(--on-surface-v); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; }
.about-features { display: flex; flex-direction: column; gap: 14px; }
.about-feature { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--on-surface); }
.about-feature svg { color: var(--primary); flex-shrink: 0; width: 24px; height: 24px; }
.about-logo-box { border-radius: 24px; overflow: hidden; background: rgba(255,73,219,0.04); border: 4px solid var(--white); box-shadow: 0 20px 60px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; min-height: 400px; }
.about-logo-box img { max-width: 80%; height: auto; }

/* ═══════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════ */
.contact-page { min-height: 100vh; background: var(--white); padding: 8rem 0 4rem; }
.contact-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.contact-header { text-align: center; margin-bottom: 3rem; }
.contact-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: var(--on-surface); margin-bottom: 1rem; }
.contact-subtitle { color: var(--on-surface-v); font-size: 1.05rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.contact-info { padding: 2rem; border-radius: 24px; background: #F6F8F9; border: 1px solid rgba(255,73,219,0.1); box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
.contact-info h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 2rem; }
.contact-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon.primary { background: rgba(255,73,219,0.1); color: var(--primary); }
.contact-icon.secondary { background: rgba(0,245,255,0.1); color: var(--secondary); }
.contact-icon.dim { background: rgba(255,122,227,0.1); color: var(--primary-dim); }
.contact-icon svg { width: 24px; height: 24px; }
.contact-item-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--on-surface-v); margin-bottom: 4px; }
.contact-item-value { font-weight: 500; color: var(--on-surface); line-height: 1.6; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 0.875rem; font-weight: 600; color: var(--on-surface); }
.form-input, .form-textarea {
  padding: 12px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: var(--white);
  font-size: 0.95rem;
  color: var(--on-surface);
  font-family: 'Manrope', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,73,219,0.1); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { padding: 14px; border-radius: var(--radius-full); background: var(--primary); color: #fff; font-weight: 700; font-size: 1rem; box-shadow: var(--shadow-p); transition: all 0.3s; }
.form-submit:hover { transform: scale(1.02); }
.form-success { display: none; padding: 16px; border-radius: 14px; background: rgba(29,158,117,0.1); color: #0F6E56; font-weight: 600; text-align: center; border: 1px solid rgba(29,158,117,0.2); }

/* ═══════════════════════════════════════════════════
   FAQ PAGE
   ═══════════════════════════════════════════════════ */
.faq-page { min-height: 100vh; background: #F6F8F9; padding: 8rem 0 4rem; }
.faq-inner { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: var(--on-surface); margin-bottom: 1rem; }
.faq-subtitle { color: var(--on-surface-v); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 1.5rem; }
.faq-item { background: var(--white); border-radius: 24px; padding: 2rem; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.faq-q { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--on-surface); margin-bottom: 1rem; }
.faq-a { color: var(--on-surface-v); line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   DOCS PAGE
   ═══════════════════════════════════════════════════ */
.docs-page { min-height: 100vh; background: var(--white); padding: 8rem 0 4rem; }
.docs-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; gap: 3rem; }
.docs-sidebar { width: 260px; flex-shrink: 0; display: none; }
@media (min-width: 1024px) { .docs-sidebar { display: block; } }
.docs-sidebar-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--on-surface-v); margin-bottom: 1rem; }
.docs-sidebar ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.docs-sidebar li { font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: color 0.2s; }
.docs-sidebar li.active { color: var(--primary); }
.docs-sidebar li:not(.active) { color: var(--on-surface-v); }
.docs-sidebar li:hover { color: var(--on-surface); }
.docs-sidebar-section { margin-top: 2rem; }
.docs-content { flex: 1; min-width: 0; }
.docs-content h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--on-surface); margin-bottom: 1.5rem; }
.docs-content p { color: var(--on-surface-v); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }
.docs-content h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--on-surface); margin: 2.5rem 0 1rem; }
.code-block { background: var(--dark); color: #e2e8f0; padding: 1.25rem 1.5rem; border-radius: 14px; font-family: 'Fira Code', 'Courier New', monospace; font-size: 0.875rem; line-height: 1.7; overflow-x: auto; margin: 1.25rem 0; }

/* ═══════════════════════════════════════════════════
   LEGAL PAGES (Privacy / Terms)
   ═══════════════════════════════════════════════════ */
.legal-page { min-height: 100vh; background: var(--white); padding: 8rem 0 4rem; }
.legal-inner { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.legal-inner h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: var(--on-surface); margin-bottom: 0.5rem; }
.legal-date { font-size: 0.875rem; color: var(--on-surface-v); margin-bottom: 2.5rem; }
.legal-inner p { color: var(--on-surface-v); line-height: 1.8; margin-bottom: 1.5rem; font-size: 1rem; }
.legal-inner h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--on-surface); margin: 2.5rem 0 1rem; }
.legal-inner ul { list-style: disc; padding-left: 1.5rem; color: var(--on-surface-v); line-height: 1.8; margin-bottom: 1.5rem; }
.legal-inner li { margin-bottom: 8px; }

/* ═══════════════════════════════════════════════════
   PAGE HERO (generic)
   ═══════════════════════════════════════════════════ */
.page-hero { background: #F6F8F9; padding: 8rem 2rem 4rem; text-align: center; }
.page-hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 6vw, 3rem); font-weight: 900; color: var(--on-surface); margin-bottom: 1rem; }
.page-hero p { color: var(--on-surface-v); font-size: 1.1rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   ANIMATIONS ON SCROLL
   ═══════════════════════════════════════════════════ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE TWEAKS
   ═══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

/* ─── Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,73,219,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
