/* NeuralOS Theme — AI consulting firm: technical warmth, confident authority */

:root {
  --midnight: #0a1628;
  --navy: #0f2040;
  --deep-blue: #162d56;
  --teal: #00e5c3;
  --teal-dim: #00b39a;
  --amber: #f5a623;
  --cream: #f8f7f4;
  --warm-white: #fafaf8;
  --text-primary: #e8edf5;
  --text-secondary: #8a9ab5;
  --text-muted: #5a6b85;
  --border: rgba(255,255,255,0.08);
}

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

html { font-size: 16px; }

body {
  background: var(--midnight);
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.meta-sep { color: var(--teal); opacity: 0.5; }

/* ORB / GEOMETRY */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
}
.orb-container {
  position: relative;
  width: 320px;
  height: 320px;
}
.orb {
  position: absolute;
  border-radius: 50%;
}
.orb-1 {
  width: 280px;
  height: 280px;
  top: 20px;
  left: 20px;
  background: radial-gradient(circle at 35% 35%, rgba(0,229,195,0.15), rgba(0,229,195,0.02));
  border: 1px solid rgba(0,229,195,0.2);
  animation: pulse 6s ease-in-out infinite;
}
.orb-2 {
  width: 200px;
  height: 200px;
  top: 60px;
  left: 60px;
  background: radial-gradient(circle at 50% 50%, rgba(0,179,154,0.2), transparent);
  border: 1px solid rgba(0,229,195,0.15);
  animation: pulse 4s ease-in-out infinite 1s;
}
.orb-3 {
  width: 120px;
  height: 120px;
  top: 100px;
  left: 100px;
  background: radial-gradient(circle at 50% 50%, var(--teal), rgba(0,229,195,0.4));
  filter: blur(2px);
  animation: pulse 3s ease-in-out infinite 0.5s;
}
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,195,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,195,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  border-radius: 50%;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.8; }
}

/* SECTION LABEL */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 32px;
  font-weight: 500;
}

/* SERVICES */
.services {
  padding: 60px 40px;
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--navy);
  padding: 36px 32px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--deep-blue); }
.service-icon {
  color: var(--teal);
  margin-bottom: 16px;
  opacity: 0.8;
}
.service-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-label-row { margin-bottom: 40px; }
.manifesto-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
  border-left: 3px solid var(--teal);
  padding-left: 28px;
}
.manifesto-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 48px;
}
.manifesto-values {
  display: flex;
  gap: 40px;
}
.value {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.value-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(0,229,195,0.3);
  line-height: 1;
}
.value-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  max-width: 180px;
  line-height: 1.4;
}

/* STATS */
.stats {
  padding: 48px 40px;
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* SOLOPRENEURS */
.solopreneurs {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.solopreneurs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.solopreneurs-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
}
.solopreneurs-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-top: 16px;
}
.use-case {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.use-case:last-child { border-bottom: none; }
.use-case-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.6;
  line-height: 1.2;
  min-width: 28px;
}
.use-case-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}
.use-case-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}
.use-case-result {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 500;
}

/* CLOSING */
.closing {
  padding: 80px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.closing-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
}
.closing-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 580px;
}

/* FOOTER */
.footer {
  padding: 28px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-right: 16px;
}
.footer-company {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid, .solopreneurs-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-values { flex-wrap: wrap; gap: 24px; }
  .stats-inner { flex-wrap: wrap; gap: 32px; justify-content: center; }
  .stat-divider { display: none; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .nav, .footer { padding: 20px 24px; }
  .hero, .manifesto, .solopreneurs, .closing { padding: 48px 24px; }
  .stats { padding: 40px 24px; }
}