/* =============================================================
   Agentic Marketing Workbench — Landing Page
   Dark-first premium / royal feel
   ============================================================= */

@import url('assets/colors_and_type.css');

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: #0A0011;
  color: #F5F3FA;
  font-family: var(--font-sans);
  overflow-x: hidden;
  margin: 0;
}

::selection { background: #A100FF; color: #fff; }

/* Utility ----------------------------------------------------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 720px) {
  .container { padding: 0 24px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.eyebrow .eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-magenta);
  box-shadow: 0 0 12px rgba(255, 128, 255, 0.8);
}

.eyebrow-dark { color: rgba(10, 0, 17, 0.55); }
.eyebrow-dark .eyebrow-dot { background: var(--purple-500); box-shadow: 0 0 8px rgba(161, 0, 255, 0.4); }

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
}

.body-lg {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
}

.body-lg-dark { color: rgba(10, 0, 17, 0.65); }

/* Section scaffolding ---------------------------------------- */
section {
  position: relative;
  padding: 140px 0;
}

.section-light {
  background: #FAFAFB;
  color: var(--ink-900);
}
.section-light p { color: rgba(10, 0, 17, 0.72); }

.section-dark {
  background: #0A0011;
  color: #F5F3FA;
}

.section-gradient {
  background: linear-gradient(180deg, #0A0011 0%, #1A0032 60%, #2A0D52 100%);
}

/* Fade dividers between dark and light */
.divider-to-light {
  height: 120px;
  background: linear-gradient(180deg, #0A0011 0%, #FAFAFB 100%);
}
.divider-to-dark {
  height: 120px;
  background: linear-gradient(180deg, #FAFAFB 0%, #0A0011 100%);
}

/* Reveal-on-scroll ------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
/* Hero elements are above the fold — show immediately without the flash */
.hero .reveal { opacity: 1; transform: translateY(0); transition: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Nav --------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 0, 17, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.nav-logo {
  display: block;
  opacity: 0.98;
}
.nav-logo-bt   { height: 32px; width: auto; filter: brightness(0) invert(1); }
.nav-logo-acc  { height: 36px; width: auto; filter: brightness(0) invert(1); }
.nav-logo-lyzr { height: 30px; width: auto; }
.nav-brand-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #5514B4;
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.nav-brand-x {
  color: rgba(255, 255, 255, 0.22);
  font-size: 11px;
  margin: 0 1px;
  font-weight: 300;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 400;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  color: #0A0011;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}
.nav-cta .arrow { transition: transform 0.2s ease; }
.nav-cta:hover .arrow { transform: translateX(2px); }

@media (max-width: 1020px) {
  .nav-links { display: none; }
  .nav { padding: 16px 24px; }
}

/* Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: inherit;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: #fff;
  color: #0A0011;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.18);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn-ghost-dark {
  background: rgba(10, 0, 17, 0.04);
  color: #0A0011;
  border: 1px solid rgba(10, 0, 17, 0.12);
}
.btn-ghost-dark:hover {
  background: rgba(10, 0, 17, 0.08);
}

.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Footer ------------------------------------------------------ */
.footer {
  background: #0A0011;
  color: rgba(255, 255, 255, 0.55);
  padding: 96px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 72px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.footer h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 12px; }
.footer a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
}
@media (max-width: 720px) {
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* =================== PRINT / PDF =================== */
@media print {
  @page {
    size: A4;
    margin: 10mm 8mm;
  }
  html, body {
    background: #05000A !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
  }
  *, *::before, *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  /* hide interactive / nav chrome */
  .nav, .nav-cta, .cta-actions, .footer { display: none !important; }
  /* expand content full width without sticky */
  .container { max-width: 100% !important; padding: 0 12mm !important; }
  /* avoid breaking sections awkwardly */
  section { break-inside: avoid; page-break-inside: avoid; }
  .pillar-card, .why-card, .org-hub, .commercial-feature, .credits-card,
  .info-journey, .smh, .day-card, .roadmap-row, .team-card {
    break-inside: avoid; page-break-inside: avoid;
  }
  /* disable animations */
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  /* keep links plain */
  a { color: inherit !important; text-decoration: none !important; }
}
