/* ============================================
   PRAETOR ANALYTICS — Landing Page

   Palette:
     Navy:    #192834
     Gold:    #C9A340
     Cream:   #FAF8F4
     Slate:   #8A9BAE
     Dark:    #0f1c28
   ============================================ */

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', 'Segoe UI', -apple-system, sans-serif;
  background-color: #192834;
  color: #FAF8F4;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #C9A340;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #e0c060;
}

::selection {
  background: rgba(201, 163, 64, 0.3);
  color: #FAF8F4;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  text-align: center;
  padding: 4rem 2rem;
  background: radial-gradient(ellipse at center, #1e3040 0%, #192834 60%, #0f1c28 100%);
}

.hero-logo {
  width: 280px;
  height: auto;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero .tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  color: #C9A340;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.hero .hero-description {
  max-width: 520px;
  font-size: 1rem;
  color: #8A9BAE;
  line-height: 1.7;
}


/* ============================================
   SECTIONS
   ============================================ */
.section {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #C9A340;
}


/* ============================================
   PRODUCT CARD
   ============================================ */
.product-card {
  background: #1e3040;
  border-radius: 6px;
  padding: 2rem 2.25rem;
  border-left: 4px solid #C9A340;
  margin-bottom: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.product-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.product-card h3 a {
  color: #FAF8F4;
}
.product-card h3 a:hover {
  color: #C9A340;
}

.product-card .product-type {
  font-size: 0.75rem;
  color: #C9A340;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.product-card p {
  color: #8A9BAE;
  font-size: 0.95rem;
  line-height: 1.65;
}

.product-card .product-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ============================================
   ABOUT
   ============================================ */
.about p {
  color: #8A9BAE;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about p:first-of-type {
  color: #FAF8F4;
}


/* ============================================
   CONTACT
   ============================================ */
.contact p {
  color: #8A9BAE;
}
.contact a {
  border-bottom: 1px solid rgba(201, 163, 64, 0.3);
}
.contact a:hover {
  border-bottom-color: #C9A340;
}


/* ============================================
   ELSEWHERE
   ============================================ */
.elsewhere p {
  color: #8A9BAE;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.elsewhere a {
  border-bottom: 1px solid rgba(201, 163, 64, 0.3);
  color: #FAF8F4;
  font-weight: 600;
}
.elsewhere a:hover {
  color: #C9A340;
  border-bottom-color: #C9A340;
}


/* ============================================
   DIVIDER
   ============================================ */
.divider {
  max-width: 800px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid rgba(201, 163, 64, 0.12);
}


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  text-align: center;
  padding: 3rem 2rem;
  font-size: 0.8rem;
  color: #556677;
  border-top: 1px solid rgba(201, 163, 64, 0.08);
}
.site-footer a {
  color: #8A9BAE;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
  .hero-logo {
    width: 200px;
  }
  .hero .tagline {
    font-size: 1.1rem;
  }
  .section {
    padding: 3rem 1.5rem;
  }
}
