/* ═══════════════════════════════════════════════════════════════
   OneMind · MarketingLab · Website Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --bg:           #040813;
  --bg2:          #070e1c;
  --surface:      rgba(255 255 255 / .03);
  --surface-2:    rgba(255 255 255 / .06);
  --border:       rgba(0 229 255 / .10);
  --border-2:     rgba(0 229 255 / .22);
  --border-hover: rgba(0 229 255 / .40);

  --cyan:         #b8f500;
  --cyan-dim:     rgba(184 245 0 / .55);
  --cyan-glow:    rgba(184 245 0 / .12);
  --purple:       #8b5cf6;
  --purple-dim:   rgba(139 92 246 / .55);

  --text:         #dce8f5;
  --text-mid:     #8899aa;
  --text-dim:     #4a607a;
  --code-bg:      rgba(0 229 255 / .08);

  /* agent accents */
  --a-aurora:   #b8f500;
  --a-enzo:     #a855f7;
  --a-aluna:    #fbbf24;
  --a-adriana:  #3b82f6;
  --a-axel:     #f97316;
  --a-gabi:     #10b981;
  --a-angela:   #06b6d4;
  --a-paula:    #f43f5e;

  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --max-w:      1180px;

  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
code {
  font-family: var(--font-mono);
  font-size: .85em;
  background: var(--code-bg);
  color: var(--cyan);
  padding: .1em .4em;
  border-radius: 4px;
  border: 1px solid var(--border);
}
svg { display: block; }

/* ── Utilities ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}
.mono {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Reveal Animation ───────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .9rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255 255 255 / 0);
  transition: background var(--transition);
  border-radius: inherit;
}
.btn:hover::before { background: rgba(255 255 255 / .06); }

.btn-sm  { padding: .45rem 1rem;   font-size: .82rem; }
.btn-lg  { padding: .8rem 1.6rem;  font-size: .95rem; }

.btn-primary {
  background: linear-gradient(135deg, #b8f500, #8ab800);
  color: #0a1200;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(184 245 0 / .25);
}
.btn-primary:hover {
  box-shadow: 0 0 35px rgba(184 245 0 / .45);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--border-2);
  color: var(--text-mid);
  background: var(--surface);
}
.btn-ghost:hover {
  border-color: var(--border-hover);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-aurora {
  background: transparent;
  border: 1px solid var(--cyan-dim);
  color: var(--cyan);
  font-weight: 600;
}
.btn-aurora:hover {
  background: var(--cyan-glow);
  border-color: var(--cyan);
  box-shadow: 0 0 25px var(--cyan-glow);
  transform: translateY(-1px);
}

.btn-wa-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}
.btn-arrow {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ── Section Shared ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-label {
  display: inline-block;
  color: var(--cyan);
  margin-bottom: 1rem;
  letter-spacing: .15em;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: .9rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 1rem;
  transition: background var(--transition), border-color var(--transition),
              box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(4 8 19 / .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
  box-shadow: 0 4px 30px rgba(0 0 0 / .4);
}
.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}
.nav-brand-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}
.nav-brand-sub {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-link {
  font-size: .87rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--text); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .25rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: var(--transition);
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding-block: clamp(6rem, 12vw, 8rem) clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

/* subtle dot grid */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(184 245 0 / .10) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}
/* ambient glow */
.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(184 245 0 / .06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 70% 70%, rgba(139 92 246 / .06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--border-2);
  border-radius: 99px;
  padding: .3rem .85rem;
  margin-bottom: 2rem;
  background: rgba(0 229 255 / .04);
  color: var(--cyan-dim);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1;   box-shadow: 0 0 8px var(--cyan); }
  50%       { opacity: .5; box-shadow: 0 0 4px var(--cyan); }
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-title-accent {
  background: linear-gradient(120deg, #b8f500, #78c800, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--text-mid);
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-desc strong { color: var(--text); font-weight: 600; }
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
}
.hero-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -.02em;
  line-height: 1;
}
.hero-stat-label {
  color: var(--text-dim);
  font-size: .65rem;
}
.hero-stat-div {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ════════════════════════════════════════════════════════════
   AURORA FEATURE SECTION
   ════════════════════════════════════════════════════════════ */
.aurora-section {
  padding-block: clamp(3rem, 7vw, 6rem);
}
.aurora-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  overflow: hidden;
  max-width: 900px;
  margin-inline: auto;
}
.aurora-card-glow {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0 229 255 / .12), transparent 70%);
  pointer-events: none;
  animation: float-glow 6s ease-in-out infinite;
}
@keyframes float-glow {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(20px, 20px); }
}
.aurora-header {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  position: relative;
}
.aurora-avatar {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  color: var(--cyan);
}
.aurora-avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--cyan-dim);
  animation: spin-slow 15s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.aurora-avatar-svg {
  width: 100%;
  height: 100%;
  color: var(--cyan);
}
.aurora-meta { flex: 1; min-width: 200px; }
.aurora-label {
  display: block;
  color: var(--cyan);
  margin-bottom: .4rem;
}
.aurora-name {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: .4rem;
  color: var(--text);
}
.aurora-subtitle {
  color: var(--text-mid);
  font-size: .95rem;
}
.aurora-body { position: relative; }
.aurora-desc {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.aurora-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .65rem;
  margin-bottom: 2rem;
}
.aurora-feature {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.aurora-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  margin-top: .45em;
  box-shadow: 0 0 6px var(--cyan);
}

/* ════════════════════════════════════════════════════════════
   AGENTS GRID
   ════════════════════════════════════════════════════════════ */
.agents-section {
  padding-block: clamp(3rem, 7vw, 6rem);
}
.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}

/* ── Agent Card Base ── */
.agent-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition),
              box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.agent-card:hover {
  transform: translateY(-4px);
  border-color: var(--agent-color, var(--border-hover));
  box-shadow: 0 8px 40px rgba(var(--agent-rgb, 0 229 255) / .12);
}
.agent-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--agent-rgb, 0 229 255) / .1), transparent 70%);
  pointer-events: none;
  transition: opacity var(--transition);
  opacity: .5;
}
.agent-card:hover .agent-glow { opacity: 1; }

.agent-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .4rem;
}
.agent-icon {
  width: 36px;
  height: 36px;
  color: var(--agent-color, var(--cyan));
}
.agent-company {
  font-size: .65rem;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: .15rem .5rem;
  border-radius: 99px;
}
.agent-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--text);
  line-height: 1.1;
}
.agent-role {
  font-size: .65rem;
  color: var(--agent-color, var(--cyan));
  margin-bottom: .25rem;
}
.agent-desc {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}
.agent-cta {
  margin-top: .75rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--agent-color, var(--cyan));
  font-family: var(--font-mono);
  letter-spacing: .01em;
  transition: opacity var(--transition), gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
.agent-cta:hover { opacity: .75; }

/* ── Agent Color Assignments ── */
[data-agent="aurora"] { --agent-color: var(--a-aurora); --agent-rgb: 0 229 255; }
[data-agent="enzo"]   { --agent-color: var(--a-enzo);   --agent-rgb: 168 85 247; }
[data-agent="aluna"]  { --agent-color: var(--a-aluna);  --agent-rgb: 251 191 36; }
[data-agent="adriana"]{ --agent-color: var(--a-adriana);--agent-rgb: 59 130 246; }
[data-agent="axel"]   { --agent-color: var(--a-axel);   --agent-rgb: 249 115 22; }
[data-agent="gabi"]   { --agent-color: var(--a-gabi);   --agent-rgb: 16 185 129; }
[data-agent="angela"] { --agent-color: var(--a-angela); --agent-rgb: 6 182 212;  }
[data-agent="paula"]  { --agent-color: var(--a-paula);  --agent-rgb: 244 63 94;  }

/* ════════════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════════════ */
.how-section {
  padding-block: clamp(3rem, 7vw, 6rem);
  background: linear-gradient(180deg, transparent, rgba(0 229 255 / .02) 50%, transparent);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 900px;
  margin-inline: auto;
}
.step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.step-num {
  font-size: .7rem;
  color: var(--cyan);
}
.step-icon {
  width: 64px;
  height: 64px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--cyan);
}
.step-icon svg { width: 100%; height: 100%; }
.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.step-desc {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.step-arrow {
  width: 48px;
  color: var(--text-dim);
  flex-shrink: 0;
}
.step-arrow svg { width: 100%; height: auto; }

/* ════════════════════════════════════════════════════════════
   TECHNOLOGY
   ════════════════════════════════════════════════════════════ */
.tech-section {
  padding-block: clamp(3rem, 7vw, 6rem);
}
.tech-card {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
  background: linear-gradient(135deg, rgba(8 18 40 / .9), rgba(4 8 19 / .95));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
  text-align: center;
}
.tech-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(0 229 255 / .06), transparent 60%),
    radial-gradient(ellipse 50% 80% at 70% 50%, rgba(139 92 246 / .06), transparent 60%);
  pointer-events: none;
}
.tech-card-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(184 245 0 / .07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}
.tech-card-content {
  position: relative;
}
.tech-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-block: .75rem 1rem;
}
.tech-desc {
  font-size: .95rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.tech-pill {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  border: 1px solid var(--border-2);
  color: var(--cyan-dim);
  padding: .3rem .75rem;
  border-radius: 99px;
  background: rgba(0 229 255 / .04);
  transition: border-color var(--transition), color var(--transition);
}
.tech-pill:hover {
  border-color: var(--border-hover);
  color: var(--cyan);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding-block: 2.5rem 1.75rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
  opacity: .55;
}
.footer-tagline {
  font-size: .8rem;
  color: var(--text-dim);
}
.footer-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.footer-link {
  font-size: .83rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--text-mid); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  text-align: center;
}
.footer-copy {
  color: var(--text-dim);
  font-size: .62rem;
  letter-spacing: .1em;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 90vw);
    padding: 5rem 2rem 2rem;
    background: rgba(4 8 19 / .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .nav-links.is-open {
    transform: translateX(0);
  }
  .nav-toggle { display: flex; }

  /* Steps collapse to single column */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .step-arrow { display: none; }

  /* Footer stack */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { gap: .75rem; }
  .hero-stat-div { height: 20px; }
  .agents-grid { grid-template-columns: 1fr; }
}

/* ── Focus Styles (Accessibility) ───────────────────────────── */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════════════════
   HERO — KPIs + BULLETS (new)
   ════════════════════════════════════════════════════════════ */
.hero-kpis {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: .5rem .9rem;
}
.hero-kpi-num {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -.03em;
  line-height: 1;
}
.hero-kpi-label {
  font-size: .62rem;
  color: var(--text-dim);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-kpi-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}
.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1rem;
  margin-top: .5rem;
}
.hero-bullet {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--text-mid);
}
.bullet-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}
.btn-arrow-sm {
  width: .9em;
  height: .9em;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   PITCH / SOLUTIONS SECTION (new)
   ════════════════════════════════════════════════════════════ */
.pitch-section {
  padding-block: clamp(3rem, 7vw, 6rem);
}
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.pitch-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: border-color var(--transition), transform var(--transition);
}
.pitch-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
}
.pitch-icon {
  width: 40px;
  height: 40px;
  color: var(--cyan);
  margin-bottom: .4rem;
}
.pitch-icon svg { width: 100%; height: 100%; }
.pitch-label {
  color: var(--cyan);
  font-size: .65rem;
  letter-spacing: .12em;
}
.pitch-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.pitch-desc {
  font-size: .87rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   AURORA STATUS + ACTIONS (new)
   ════════════════════════════════════════════════════════════ */
.aurora-status {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .65rem;
  color: var(--cyan-dim);
  font-family: var(--font-mono);
  letter-spacing: .1em;
  border: 1px solid var(--border);
  padding: .3rem .7rem;
  border-radius: 99px;
  align-self: flex-start;
  flex-shrink: 0;
}
.aurora-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}
.aurora-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ════════════════════════════════════════════════════════════
   AGENT BADGE + CAPS + LANGS (new)
   ════════════════════════════════════════════════════════════ */
.agent-badge {
  font-size: .6rem;
  letter-spacing: .1em;
  color: var(--agent-color, var(--cyan));
  border: 1px solid rgba(var(--agent-rgb, 0 229 255) / .3);
  padding: .15rem .55rem;
  border-radius: 99px;
  background: rgba(var(--agent-rgb, 0 229 255) / .06);
  flex-shrink: 0;
}
.agent-caps {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: .6rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.agent-caps li {
  font-size: .8rem;
  color: var(--text-mid);
  padding-left: .85rem;
  position: relative;
  line-height: 1.5;
}
.agent-caps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--agent-color, var(--cyan));
}
.agent-langs {
  font-size: .6rem;
  color: var(--text-dim);
  letter-spacing: .08em;
}

/* ════════════════════════════════════════════════════════════
   HOW IT WORKS — FLOW LAYOUT (new)
   ════════════════════════════════════════════════════════════ */
.steps-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 960px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.steps-flow .step {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  padding: 0 .5rem;
}
.step-connector {
  width: 48px;
  height: 64px;
  display: flex;
  align-items: flex-start;
  padding-top: 1.75rem;
  flex-shrink: 0;
  color: var(--text-dim);
}
.step-connector svg { width: 100%; height: auto; }
.how-cta {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .steps-flow {
    flex-direction: column;
    align-items: center;
  }
  .steps-flow .step { max-width: 320px; width: 100%; }
  .step-connector { display: none; }
}

/* ════════════════════════════════════════════════════════════
   CAPABILITIES SECTION (new)
   ════════════════════════════════════════════════════════════ */
.caps-section {
  padding-block: clamp(3rem, 7vw, 6rem);
}
.caps-card {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
  background: linear-gradient(135deg, rgba(8 18 40 / .9), rgba(4 8 19 / .95));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
}
.caps-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(0 229 255 / .06), transparent 60%),
    radial-gradient(ellipse 50% 80% at 70% 50%, rgba(139 92 246 / .06), transparent 60%);
  pointer-events: none;
}
.caps-card-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(184 245 0 / .07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}
.caps-card-content { position: relative; }
.caps-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
  margin-block: .75rem 1rem;
  line-height: 1.2;
}
.caps-desc {
  font-size: .95rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.caps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.cap-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  transition: border-color var(--transition);
}
.cap-item:hover { border-color: var(--border-2); }
.cap-icon {
  width: 28px;
  height: 28px;
  color: var(--cyan);
  flex-shrink: 0;
}
.cap-icon svg { width: 100%; height: 100%; }
.cap-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .3rem;
}
.cap-desc {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.caps-stack {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.caps-stack-label {
  color: var(--text-dim);
  font-size: .65rem;
  letter-spacing: .1em;
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════
   FOOTER — 4-COLUMN (new)
   ════════════════════════════════════════════════════════════ */
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 2rem 2.5rem;
  margin-bottom: 2rem;
  align-items: start;
}
.footer-brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-block: .35rem .3rem;
}
.footer-col-title {
  display: block;
  color: var(--cyan);
  margin-bottom: .85rem;
  font-size: .65rem;
  letter-spacing: .12em;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-contact-item {
  font-size: .83rem;
  color: var(--text-dim);
}
.footer-wa-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  margin-right: .3em;
}
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
