/* PXR Marketing — site stylesheet */

:root {
  --navy: #12203a;
  --navy-light: #1c3253;
  --coral: #ff6b4a;
  --coral-light: #ff9466;
  --gray-900: #1f2430;
  --gray-600: #5b6b85;
  --gray-300: #d7dce5;
  --gray-100: #f5f7fa;
  --white: #ffffff;
  --max-width: 1140px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(18, 32, 58, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 0.6em;
}

h1 { font-size: 2.75rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }

p { margin: 0 0 1.2em; color: var(--gray-600); }

a { color: var(--coral); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--gray-300);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo-link { display: flex; align-items: center; }
.logo-link img { height: 40px; width: auto; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover { color: var(--coral); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 107, 74, 0.3);
}

.btn-primary:hover { box-shadow: 0 12px 26px rgba(255, 107, 74, 0.4); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-300);
}

.btn-outline:hover { border-color: var(--navy); }

/* Hero */
.hero {
  padding: 90px 0 70px;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
  text-align: center;
}

.hero .eyebrow {
  display: inline-block;
  color: var(--coral);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.hero h1 { max-width: 780px; margin-left: auto; margin-right: auto; }

.hero .lead {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 1.15rem;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Page header for interior pages */
.page-header {
  padding: 64px 0 48px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.page-header h1 { color: var(--white); margin-bottom: 10px; }
.page-header p { color: var(--gray-300); max-width: 640px; margin: 0 auto; }

/* Sections */
section { padding: 70px 0; }
.section-alt { background: var(--gray-100); }

.section-heading { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-heading .eyebrow {
  color: var(--coral);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 12px;
}

/* Grid / Cards */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

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

.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.card p:last-child { margin-bottom: 0; }

/* Values / stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat .num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
}

.stat .label { color: var(--gray-600); font-size: 0.9rem; }

/* Two-column content block */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-media {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-media img { height: 90px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}

.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--gray-300); max-width: 560px; margin: 0 auto 28px; }

/* Contact */
.contact-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.contact-card .email {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin: 10px 0 24px;
  display: block;
}

/* Legal pages */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { margin-top: 2em; }
.legal-content ul { color: var(--gray-600); padding-left: 20px; }
.legal-content li { margin-bottom: 0.5em; }
.legal-updated { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 2.5em; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--gray-300);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid img { height: 34px; filter: brightness(0) invert(1); margin-bottom: 14px; }

.footer-grid h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--gray-300); font-size: 0.95rem; }
.footer-grid a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--gray-300);
}

/* Responsive */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-300);
    box-shadow: var(--shadow);
  }
  .main-nav.open ul {
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 20px;
  }
  .main-nav.open li { padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
  .nav-toggle { display: block; }
  h1 { font-size: 2.1rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
