/* ===================================
   PROMETHEUS BRAND — CSS CUSTOM PROPERTIES
   =================================== */

:root {
  --bg:          #FAF8F5;
  --bg-dark:     #0C1F17;
  --teal:        #0A3D2E;
  --teal-light:  #0F5C42;
  --amber:       #F5A623;
  --amber-light: #F7B84B;
  --amber-dim:   rgba(245, 166, 35, 0.15);
  --ink:         #111110;
  --ink-mid:     #4A4A47;
  --ink-light:   #8A8A87;
  --white:       #FFFFFF;
  --surface:     #FFFFFF;
  --border:      rgba(10, 61, 46, 0.12);
  --border-soft: rgba(255, 255, 255, 0.08);
}

/* ===========================
   RESET & BASE
   =========================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

/* ===========================
   NAVIGATION
   =========================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8125rem;
  color: var(--ink-light);
  font-weight: 400;
}

/* ===========================
   SECTION LABEL
   =========================== */

.services-label,
.manifesto-label,
.pricing-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

/* ===========================
   HERO
   =========================== */

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 32px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10,61,46,0.12) 0%, transparent 70%);
  bottom: -80px;
  left: 200px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,61,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,61,46,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-dim);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-lede {
  font-size: 1.125rem;
  color: var(--ink-mid);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--teal);
  background: rgba(10, 61, 46, 0.07);
  border: 1px solid rgba(10, 61, 46, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ===========================
   HERO DASHBOARD MOCKUP
   =========================== */

.hero-visual {
  position: relative;
  z-index: 2;
}

.dashboard-mock {
  background: var(--teal);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(10, 61, 46, 0.28), 0 8px 24px rgba(10, 61, 46, 0.16);
  border: 1px solid rgba(255,255,255,0.08);
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dot.red    { background: #FF5F57; }
.mock-dot.yellow { background: #FFBD2E; }
.mock-dot.green  { background: #28C840; }

.mock-title {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-left: 8px;
}

.mock-body {
  padding: 24px;
}

.mock-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.mock-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.mock-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.mock-value {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}

.mock-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
}

.mock-bars {
  margin-bottom: 16px;
}

.mock-bar-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.mock-bar-track {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
}

.mock-bar {
  flex: 1;
  height: 100%;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}

.mock-bar.fill-1 { height: 40%; }
.mock-bar.fill-2 { height: 65%; }
.mock-bar.fill-3 { height: 50%; background: rgba(245,166,35,0.5); }
.mock-bar.fill-4 { height: 85%; }
.mock-bar.fill-5 { height: 100%; background: var(--amber); }

.mock-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.logo-chip {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ===========================
   MANIFESTO
   =========================== */

.manifesto {
  background: var(--teal);
  padding: 100px 32px;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-label {
  color: var(--amber);
}

.manifesto-heading {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.manifesto-body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 64px;
}

.manifesto-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.manifesto-stat {
  border-left: 2px solid var(--amber);
  padding-left: 20px;
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ===========================
   SERVICES
   =========================== */

.services {
  padding: 100px 32px;
  background: var(--bg);
}

.services-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.services-heading,
.pricing-heading,
.outro-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--teal);
  margin-bottom: 56px;
  letter-spacing: -0.02em;
  font-weight: 600;
  max-width: 560px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(10, 61, 46, 0.1);
  transform: translateY(-2px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--amber-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.125rem;
  color: var(--teal);
  margin-bottom: 12px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ===========================
   PRICING
   =========================== */

.pricing {
  padding: 100px 32px;
  background: var(--bg);
}

.pricing-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--teal);
  border-radius: 28px;
  padding: 56px;
  max-width: 560px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 64px rgba(10,61,46,0.2);
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-period {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.5);
}

.price-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
}

.price-features svg {
  flex-shrink: 0;
}

.pricing-note {
  margin-top: 20px;
  font-size: 0.8125rem;
  color: var(--ink-light);
  font-style: italic;
}

/* ===========================
   OUTRO
   =========================== */

.outro {
  padding: 100px 32px;
  background: var(--bg-dark);
}

.outro-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.outro-fire {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.outro-heading {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 24px;
  max-width: 100%;
}

.outro-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: var(--ink-light);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--ink-light);
}

.footer-dot {
  color: var(--amber);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 60px 24px 48px;
    gap: 48px;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-stat-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    padding: 36px 28px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .nav-inner {
    padding: 16px 24px;
  }

  .mock-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 20px 36px;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .services,
  .manifesto,
  .pricing,
  .outro {
    padding: 72px 20px;
  }
}

/* ===========================
   SCROLLBAR
   =========================== */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }

/* ===========================
   ONBOARDING CTA
   =========================== */

.onboard-cta {
  padding: 80px 32px;
  background: var(--bg);
}

.onboard-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.onboard-cta-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.onboard-cta-heading {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--teal);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.onboard-cta-sub {
  font-size: 1.0625rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 32px;
}

.onboard-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--teal);
  color: var(--white);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.15s, box-shadow 0.15s;
}

.onboard-cta-btn:hover {
  background: var(--teal-light);
  box-shadow: 0 8px 24px rgba(10,61,46,0.2);
}

.onboard-cta-meta {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--ink-light);
}
