/* ============================================================
   LAUNCHPAD AI — STYLESHEET v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Tokens ── */
:root {
  --navy:       #1A2744;
  --navy-dark:  #111D35;
  --amber:      #F07820;
  --amber-dark: #D4661A;
  --cream:      #F7F5F0;
  --white:      #FFFFFF;
  --border:     #E8E3D8;
  --text:       #1A1A1A;
  --muted:      #888888;

  --font-heading: 'League Spartan', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --r-btn:   8px;
  --r-card:  10px;
  --r-input: 7px;

  --shadow-card: 0 2px 12px rgba(0,0,0,.07);
  --shadow-lift: 0 8px 28px rgba(0,0,0,.12);
  --ease: .22s cubic-bezier(.25,.8,.25,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul { list-style: none; }

/* ── Layout ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--white  { background: var(--white); }
.section--cream  { background: var(--cream); }
.section--navy   { background: var(--navy); }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.1; }
h1 { font-size: clamp(42px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 50px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
h4 { font-size: 19px; }
p  { font-size: 17px; line-height: 1.7; }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--amber);
  border-radius: 1px;
}
.eyebrow--light { color: var(--amber); }
.eyebrow--light::before,
.eyebrow--light::after { background: var(--amber); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-btn);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: all var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border: none;
}
.btn--primary:hover {
  background: #0e1a30;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,39,68,.3);
}

.btn--primary-white {
  background: #FFFFFF;
  color: #1A2744;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.btn--primary-white:hover {
  background: #f0eeea;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,.25);
}

.btn--secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--secondary-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn--secondary-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.btn--accent-outline {
  background: transparent;
  color: var(--amber);
  border: 1.5px solid var(--amber);
}
.btn--accent-outline:hover {
  background: rgba(240,120,32,.1);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--amber);
  color: var(--white);
  border: none;
}
.btn--accent:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,120,32,.35);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.card--amber-left { border-left: 3px solid var(--amber); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #1A2744;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo img {
  height: 58px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--white);
  transition: color var(--ease);
  padding-bottom: 2px;
}
.nav__links a:hover { color: var(--amber); }
.nav__links a.active {
  color: var(--amber);
  border-bottom: 2px solid var(--amber);
}
.nav__cta {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  background: transparent;
  color: var(--white);
  border-radius: var(--r-btn);
  border: 1.5px solid rgba(255,255,255,.4);
  transition: all var(--ease);
}
.nav__cta:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  border-top: 1px solid rgba(255,255,255,.07);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: rgba(255,255,255,.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--ease);
}
.nav__mobile a:hover { color: var(--white); }
.nav__mobile .btn { margin-top: 12px; justify-content: center; width: 100%; }

/* ── Footer ── */
.footer { background: var(--navy-dark); padding: 64px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo img { height: 60px; width: auto; margin-bottom: 14px; mix-blend-mode: lighten; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 6px; }
.footer__location { font-size: 13px; color: rgba(255,255,255,.35); margin-bottom: 6px; }
.footer__legal { font-size: 12px; color: rgba(255,255,255,.25); }
.footer__col h5 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col ul li a { font-size: 14px; color: rgba(255,255,255,.55); transition: color var(--ease); }
.footer__col ul li a:hover { color: var(--white); }
.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p, .footer__bottom a { font-size: 13px; color: rgba(255,255,255,.28); }
.footer__bottom a:hover { color: rgba(255,255,255,.6); }

/* ── Page Hero ── */
.page-hero {
  background: var(--navy);
  padding: 120px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,1) 59px, rgba(255,255,255,1) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,1) 59px, rgba(255,255,255,1) 60px);
}
.page-hero__content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 0 24px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p  { color: rgba(255,255,255,.65); font-size: 19px; max-width: 580px; margin: 0 auto; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,1) 0, rgba(255,255,255,1) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.cta-banner__inner { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: 18px; }
.cta-banner p { color: rgba(255,255,255,.65); font-size: 18px; max-width: 560px; margin: 0 auto 44px; }
.cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta-banner__note { font-size: 13px; color: rgba(255,255,255,.35); }

/* ── Section intro ── */
.section-intro { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-intro .eyebrow { font-size: 14px; }
.section-intro h2 { color: var(--navy); margin-bottom: 14px; }
.section-intro p { color: var(--muted); font-size: 18px; }

/* ── Checklist ── */
.check-list { display: flex; flex-direction: column; gap: 11px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.check-list__icon {
  width: 20px; height: 20px;
  background: rgba(240,120,32,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-list__icon svg { width: 11px; height: 11px; color: var(--amber); }

/* ── No animations ── */
.fade-up { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .page-hero { padding: 100px 0 56px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }
}
