/* ─────────────────────────────────────────────
   MOONBOW AI — Shared stylesheet
   All brand tokens, layout primitives, and reusable
   component styles. Load on every page.
   ───────────────────────────────────────────── */

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

:root {
  --teal:   #5ECFB1;
  --blue:   #7B9FFF;
  --purple: #B48EFF;
  --yellow: #FFBD2E;
  --red:    #FF6B6B;
  --orange: #FB923C;
  --bg:     #080c18;
  --bg1:    #0a0e1c;
  --bg2:    #0d1120;
  --card:   #0f1428;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --text:   #e8eaf2;
  --soft:   #a0a5bc;
  --muted:  #5a5f76;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,12,24,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 6%; height: 74px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900; font-size: 22px;
  letter-spacing: 0.06em; color: #fff;
  line-height: 1.1;
}
.brand-sub {
  font-size: 10px; color: var(--muted);
  letter-spacing: 2.5px; text-transform: uppercase;
  display: block; margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 13px; color: var(--soft);
  text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { display: flex; gap: 10px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 7px; padding: 9px 20px; border-radius: 8px;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.btn-teal {
  background: linear-gradient(135deg, var(--teal), #4ab898);
  color: #0a1a14; font-weight: 700;
}
.btn-teal:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(94,207,177,0.3);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border2); color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-blue {
  background: linear-gradient(135deg, var(--blue), #6080e0);
  color: #fff; font-weight: 700;
}
.btn-blue:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(123,159,255,0.3);
}
.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 10px; }

/* ─── SECTIONS ─── */
section { padding: 100px 6%; }
.section-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 900;
  line-height: 1.15; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--soft);
  line-height: 1.7; max-width: 580px;
}
.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; max-width: 700px; }
.section-divider { height: 1px; background: var(--border); margin: 0 6%; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 6%;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900; font-size: 13px;
  color: var(--muted); letter-spacing: 0.08em;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 12px; color: var(--muted);
  text-decoration: none; transition: color 0.15s;
}
.footer-links a:hover { color: var(--soft); }
.footer-legal { font-size: 11px; color: var(--muted); }

/* ─── GLOWS ─── */
.glow { position: absolute; border-radius: 50%; pointer-events: none; }

/* ─── CTA BAND ─── */
.cta-band {
  margin-top: 60px; padding: 56px 48px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(94,207,177,0.06), rgba(123,159,255,0.05));
  border: 1px solid rgba(94,207,177,0.2);
  text-align: center;
}
.cta-band-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 3vw, 34px); font-weight: 900;
  color: #fff; margin-bottom: 14px;
  line-height: 1.2; letter-spacing: -0.01em;
}
.cta-band-sub {
  font-size: 15px; color: var(--soft);
  margin: 0 auto 28px; max-width: 540px; line-height: 1.6;
}

/* ─── PAGE HERO (used on inner pages) ─── */
.page-hero { padding: 144px 6% 60px; position: relative; overflow: hidden; }
.page-hero-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 0.15em; color: var(--muted);
  text-transform: uppercase; margin-bottom: 24px;
}
.breadcrumb a { color: var(--teal); text-decoration: none; }
.page-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900;
  font-size: clamp(36px, 5.4vw, 64px); line-height: 1.05;
  letter-spacing: -0.03em; color: #fff;
  margin-bottom: 24px; max-width: 800px;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-lead {
  font-size: 18px; color: var(--soft);
  line-height: 1.7; max-width: 680px; margin-bottom: 36px;
}
.page-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── DELIVERABLES BOX ─── */
.deliv-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 26px 28px; margin-top: 24px;
}
.deliv-label {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.deliv-list { list-style: none; }
.deliv-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0; border-top: 1px solid var(--border);
  font-size: 14px; color: var(--text); line-height: 1.55;
}
.deliv-list li:first-child { border-top: none; padding-top: 0; }
.deliv-list li::before {
  content: ''; flex-shrink: 0; margin-top: 6px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 8px rgba(94,207,177,0.5);
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  section { padding: 60px 5%; }
  .page-hero { padding: 110px 5% 50px; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn-teal { font-size: 12px; padding: 8px 14px; }
  .brand-name { font-size: 18px; }
  .brand-sub { display: none; }
  .section-title { font-size: clamp(22px, 6vw, 32px); }
  .page-hero h1 { font-size: clamp(28px, 8vw, 44px) !important; }
  footer { flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px 5%; }
  .footer-links { gap: 14px; }
  .page-cta { flex-direction: column; align-items: stretch; }
  .btn-lg { width: 100%; justify-content: center; }
  .cta-band { padding: 32px 20px; }
}
