/* ===== GridPath Solutions — shared sub-page styles ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #F8FAFC;
  color: #0A1628;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.serif { font-family: 'Playfair Display', Georgia, serif; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
a { color: #1B4FFF; }

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---- NAV ---- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; color: #0A1628;
  text-decoration: none;
}
.logo-mark { width: 40px; height: 40px; object-fit: contain; display: block; flex-shrink: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.back-btn {
  color: #0A1628; text-decoration: none;
  font-size: 14px; font-weight: 600;
  padding: 9px 16px; border-radius: 8px;
  border: 1px solid rgba(10, 22, 40, 0.12);
  transition: all 0.2s;
  white-space: nowrap;
}
.back-btn:hover { border-color: #1B4FFF; color: #1B4FFF; }
.cta-btn {
  background: #1B4FFF; color: white;
  padding: 10px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.cta-btn:hover { background: #0A1628; transform: translateY(-1px); }

/* ---- HERO ---- */
.page-hero {
  background: linear-gradient(180deg, #F8FAFC 0%, #E8F0FA 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(27,79,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,79,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.eyebrow {
  color: #1B4FFF; font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 800px;
}
.page-hero h1 .accent {
  background: linear-gradient(135deg, #1B4FFF, #00FFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero .lead {
  font-size: 19px; color: #475569;
  max-width: 680px; line-height: 1.6;
}

/* ---- CONTENT ---- */
.page-body { padding: 72px 0; }
.page-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700; letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.page-body h3 {
  font-size: 19px; font-weight: 700;
  margin-bottom: 8px; letter-spacing: -0.3px;
}
.page-body p { color: #475569; font-size: 16px; margin-bottom: 20px; }
.page-body .section + .section { margin-top: 56px; }

/* Benefit / feature cards */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 12px;
}
.benefit-card {
  background: white;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}
.benefit-card:hover {
  border-color: #1B4FFF;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(27, 79, 255, 0.08);
}
.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, #1B4FFF, #00FFFF);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px; font-weight: 700;
  margin-bottom: 16px;
}
.benefit-card p { font-size: 15px; margin-bottom: 0; }

/* Bulleted "what's included" list */
.check-list { list-style: none; margin: 8px 0 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  font-size: 16px; color: #334155;
  border-bottom: 1px solid rgba(10, 22, 40, 0.05);
}
.check-list li:last-child { border-bottom: none; }
.check-list .check {
  color: #1B4FFF; font-weight: 700; flex-shrink: 0;
  margin-top: 1px;
}

/* Inline CTA band */
.cta-band {
  background: linear-gradient(135deg, #1B4FFF 0%, #0A1628 100%);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  color: white;
  margin-top: 64px;
}
.cta-band h2 { color: white; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 28px; }
.cta-band .btn-white {
  background: white; color: #1B4FFF;
  padding: 15px 32px; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.cta-band .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }

/* ---- Legal page typography ---- */
.legal-body { padding: 56px 0 72px; }
.legal-body h2 {
  font-size: 22px; font-weight: 700;
  margin: 40px 0 12px; letter-spacing: -0.3px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 17px; font-weight: 700; margin: 24px 0 8px; }
.legal-body p, .legal-body li { color: #475569; font-size: 15.5px; margin-bottom: 14px; }
.legal-body ul { margin: 0 0 14px 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-body .updated {
  color: #64748B; font-size: 14px;
  margin-bottom: 8px; font-style: italic;
}
.legal-body a { color: #1B4FFF; word-break: break-word; }

/* ---- FOOTER ---- */
footer {
  background: #0A1628;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
  font-weight: 700; font-size: 18px; color: white;
}
.footer-logo-mark { width: 44px; height: 44px; object-fit: contain; display: block; flex-shrink: 0; }
.footer-tagline { font-size: 14px; margin-bottom: 24px; color: rgba(255,255,255,0.5); }
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; color: #00FFFF; font-weight: 600;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #00FFFF; box-shadow: 0 0 8px #00FFFF;
}
.footer-col h4 {
  color: white; font-size: 14px; font-weight: 700;
  margin-bottom: 18px; letter-spacing: 0.5px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.6);
  text-decoration: none; font-size: 14px;
  padding: 6px 0; transition: color 0.2s;
}
.footer-col a:hover { color: #6D3BEF; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.sms-disclosure {
  flex-basis: 100%;
  font-size: 11.5px; line-height: 1.6;
  color: rgba(255,255,255,0.35);
}
.sms-disclosure a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.sms-disclosure a:hover { color: #6D3BEF; }

/* ---- Responsive ---- */
@media (max-width: 820px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .nav-inner { flex-wrap: wrap; }
  .page-hero { padding: 56px 0 48px; }
  .cta-band { padding: 36px 24px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-actions .back-btn { display: none; }
}
