/* ============================================================
   GRANTPOINT — LANDING PAGE
   ============================================================ */

:root {
  --navy:         #0F2040;
  --navy-mid:     #162B52;
  --navy-dark:    #091629;
  --off-white:    #F7F7F4;
  --accent:       #2A7D6F;
  --accent-h:     #236860;
  --accent-light: #EAF4F2;
  --white:        #FFFFFF;
  --text-1:       #1A2540;
  --text-2:       #4B5A78;
  --text-3:       #7A8BA8;
  --border:       #E2E8F0;
  --border-mid:   #C8D5E3;
  --sh-sm: 0 1px 3px rgba(15,32,64,.06), 0 1px 2px rgba(15,32,64,.04);
  --sh-md: 0 4px 16px rgba(15,32,64,.10), 0 2px 4px rgba(15,32,64,.05);
  --sh-lg: 0 8px 32px rgba(15,32,64,.12), 0 4px 8px rgba(15,32,64,.06);
  --r:  7px;
  --rl: 11px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-1); background: var(--white);
  line-height: 1.65; -webkit-font-smoothing: antialiased; font-size: 16px;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── Container ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* ── Typography ── */
h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700; line-height: 1.14; letter-spacing: -.025em;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; line-height: 1.22; letter-spacing: -.02em;
}
h3 { font-size: 1rem; font-weight: 600; line-height: 1.4; }
p { line-height: 1.7; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center;
  padding: 11px 22px; border-radius: 6px;
  font-size: .9375rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: all .17s ease; white-space: nowrap;
}
.btn-lg  { padding: 14px 28px; font-size: 1rem; }
.btn-sm  { padding: 7px 16px; font-size: .875rem; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: var(--sh-md); }

.btn-ghost-white {
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff; background: transparent;
}
.btn-ghost-white:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.07);
}

.btn-outline-sm {
  padding: 9px 18px; font-size: .875rem; font-weight: 600;
  border: 1.5px solid var(--border-mid); color: var(--text-2);
  background: transparent; border-radius: 6px; cursor: pointer;
  transition: border-color .15s, color .15s;
}
.btn-outline-sm:hover { border-color: var(--accent); color: var(--accent); }

/* ── Section title ── */
.section-title { text-align: center; margin-bottom: 52px; }
.section-title.light { color: #fff; }


/* ════════════════════════════════════
   NAVIGATION
════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 60px;
}
.nav-logo img { height: 20px; width: auto; }


/* ════════════════════════════════════
   SECTION 1 — HERO
════════════════════════════════════ */
.hero {
  background: var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 52px 52px;
  padding: 84px 0 96px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 72px; align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
  background: rgba(42,125,111,.12);
  border: 1px solid rgba(42,125,111,.25);
  border-radius: 4px; padding: 3px 10px; margin-bottom: 18px;
}

.hero h1 { color: #fff; margin-bottom: 20px; }

.hero-sub {
  color: rgba(255,255,255,.6); font-size: 1.0625rem;
  line-height: 1.7; max-width: 540px; margin-bottom: 32px;
}

.hero-cta-group { margin-bottom: 18px; }

.cta-micro {
  font-size: .8rem; color: rgba(255,255,255,.38);
  margin-top: 10px; line-height: 1.5;
}

.hero-support {
  font-size: .8375rem; color: rgba(255,255,255,.35); line-height: 1.6;
}

/* Pipeline visual */
.hero-visual {}

.pv-outer {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--rl); padding: 12px;
  display: flex; flex-direction: column;
}

.pv-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 13px 14px;
  display: flex; align-items: flex-start; gap: 12px;
}

.pv-step-last {}

.pv-num {
  font-size: .67rem; font-weight: 800; letter-spacing: .06em;
  color: var(--accent); flex-shrink: 0;
  margin-top: 2px; min-width: 18px;
}

.pv-text { flex: 1; min-width: 0; }
.pv-text strong {
  display: block; font-size: .875rem; font-weight: 600;
  color: rgba(255,255,255,.82); margin-bottom: 3px; line-height: 1.3;
}
.pv-text span {
  font-size: .78rem; color: rgba(255,255,255,.38); line-height: 1.4;
}

.pv-connector {
  display: flex; flex-direction: column; align-items: center;
  padding: 3px 0;
}
.pvc-line {
  width: 1px; height: 12px;
  background: rgba(255,255,255,.1);
}


/* ════════════════════════════════════
   SECTION 2 — PROBLEM
════════════════════════════════════ */
.problem { background: var(--off-white); padding: 80px 0; }

.problem-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}

.problem-text h2 {
  margin-bottom: 20px; color: var(--text-1);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
}
.problem-text p {
  font-size: .9375rem; color: var(--text-2);
  line-height: 1.75; margin-bottom: 12px;
}
.problem-text p:last-child { margin-bottom: 0; }

.problem-bullets {
  padding-top: 8px; display: flex; flex-direction: column; gap: 0;
}
.problem-bullets li {
  font-size: .9375rem; color: var(--text-2);
  line-height: 1.55; padding: 14px 0 14px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.problem-bullets li:first-child { border-top: 1px solid var(--border); }
.problem-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 22px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); opacity: .6;
}


/* ════════════════════════════════════
   SECTION 3 — WHAT GRANTPOINT DOES
════════════════════════════════════ */
.what-gp-does { background: var(--white); padding: 80px 0; }

.wgd-intro {
  max-width: 640px; margin: 0 auto 52px; text-align: center;
}
.wgd-intro h2 { margin-bottom: 14px; }
.wgd-intro p { font-size: .9375rem; color: var(--text-2); line-height: 1.75; }

.wgd-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.wgd-card {
  border: 1px solid var(--border); border-radius: var(--rl);
  padding: 28px 24px; background: var(--off-white);
  box-shadow: var(--sh-sm);
}
.wgd-card-icon {
  width: 40px; height: 40px; border-radius: 9px;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.wgd-card h3 { color: var(--text-1); margin-bottom: 10px; font-size: 1rem; }
.wgd-card p  { font-size: .875rem; color: var(--text-2); line-height: 1.7; }


/* ════════════════════════════════════
   SECTION 4 — EXAMPLE ASSESSMENT
════════════════════════════════════ */
.assessment-example { background: var(--off-white); padding: 80px 0; }

.ae-intro {
  max-width: 640px; margin: 0 auto 36px; text-align: center;
}
.ae-intro h2 { margin-bottom: 14px; }
.ae-intro p  { font-size: .9375rem; color: var(--text-2); line-height: 1.7; }

.ae-scenario-tag {
  text-align: center; font-size: .78rem; font-weight: 500;
  color: var(--text-3); margin-bottom: 24px;
  letter-spacing: .01em;
}

/* Assessment card */
.ae-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--rl); box-shadow: var(--sh-md);
  overflow: hidden; margin-bottom: 32px;
}
.ae-row {
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
}
.ae-row:last-child { border-bottom: none; }

/* Context header inside ae-card */
.ae-context {
  display: grid; grid-template-columns: repeat(2, 1fr);
  padding: 14px 28px; background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.ae-ctx-item {
  padding: 6px 0; display: flex; flex-direction: column; gap: 3px;
}
.ae-ctx-key {
  font-size: .67rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--text-3);
}
.ae-ctx-val { font-size: .8375rem; color: var(--text-2); }
.ae-ctx-val-mixed { font-weight: 600; color: #92400E; }

/* Recommended next step footer inside ae-card */
.ae-next-step {
  padding: 16px 28px; background: var(--off-white);
  border-top: 1px solid var(--border);
}
.ae-next-label {
  display: block; font-size: .67rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 6px;
}
.ae-next-step p { font-size: .875rem; color: var(--text-2); line-height: 1.65; }

.ae-row-header {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 10px; margin-bottom: 10px;
}
.ae-row-header h4 {
  font-size: .9375rem; font-weight: 600; color: var(--text-1);
}
.ae-row-note {
  font-size: .875rem; color: var(--text-2); line-height: 1.7;
}

/* Assessment labels */
.al {
  display: inline-flex; align-items: center;
  font-size: .68rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 4px;
  white-space: nowrap; flex-shrink: 0;
}
.al-strong   { background: #ECFDF5; color: #059669; border: 1px solid #A7F3D0; }
.al-promising{ background: #FFFBEB; color: #92400E; border: 1px solid #FCD34D; }
.al-weak     { background: #FFF7ED; color: #9A3412; border: 1px solid #FDBA74; }
.al-not-rec  { background: #F1F5F9; color: #475569; border: 1px solid #CBD5E1; }

/* Questions */
.ae-questions {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 24px 28px;
  margin-bottom: 16px; box-shadow: var(--sh-sm);
}
.ae-q-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 14px;
}
.ae-q-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}
.ae-q-list li {
  font-size: .875rem; color: var(--text-2);
  line-height: 1.5; padding-left: 16px; position: relative;
}
.ae-q-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--accent); font-size: .8rem;
}

.ae-disclaimer {
  text-align: center; font-size: .8rem; color: var(--text-3);
  line-height: 1.6;
}


/* ════════════════════════════════════
   SECTION 5 — HOW IT WORKS
════════════════════════════════════ */
.how-it-works { background: var(--navy); padding: 80px 0; }

.hiw-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.hiw-step { text-align: left; }
.hiw-num {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  color: var(--accent); margin-bottom: 14px;
}
.hiw-step h3 {
  color: #fff; font-size: .9375rem; margin-bottom: 10px; line-height: 1.4;
}
.hiw-step p {
  font-size: .875rem; color: rgba(255,255,255,.48); line-height: 1.7;
}


/* ════════════════════════════════════
   SECTION 6 — WAITLIST
════════════════════════════════════ */
.waitlist { background: var(--white); padding: 88px 0; }

.wl-intro {
  max-width: 560px; margin: 0 auto 44px; text-align: center;
}
.wl-badge {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-light);
  border: 1px solid rgba(42,125,111,.2); border-radius: 20px;
  padding: 4px 14px; margin-bottom: 18px;
}
.wl-intro h2 { margin-bottom: 12px; }
.wl-intro p  { font-size: .9375rem; color: var(--text-2); line-height: 1.75; }

/* Form wrapper */
.wl-form-wrap {
  max-width: 680px; margin: 0 auto;
}

/* Form grid */
.wl-form {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 36px;
  box-shadow: var(--sh-md); margin-bottom: 28px;
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px 20px; margin-bottom: 24px;
}
.form-field {}
.form-field-full { grid-column: 1 / -1; }

.form-field label {
  display: block; font-size: .8rem; font-weight: 600;
  color: var(--text-1); margin-bottom: 6px; line-height: 1.3;
}
.field-note {
  font-weight: 400; color: var(--text-3); font-size: .78rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--border-mid); border-radius: 6px;
  font-family: inherit; font-size: .9375rem; color: var(--text-1);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none; appearance: none;
  line-height: 1.5;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(42,125,111,.1);
}

.form-field select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%237A8BA8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 11px center;
  background-repeat: no-repeat; background-size: 16px;
  padding-right: 34px; cursor: pointer;
}

.form-field textarea { resize: vertical; min-height: 84px; }

.form-footer {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
}
.form-note {
  font-size: .8rem; color: var(--text-3); line-height: 1.6; max-width: 420px;
}

/* Radio group — call interest question */
.field-hint {
  font-size: .8rem; color: var(--text-3); line-height: 1.55;
  margin-bottom: 12px; margin-top: 4px;
}
.radio-group {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.radio-option {
  display: flex; align-items: center; gap: 7px;
  font-size: .9375rem; color: var(--text-1); cursor: pointer;
}
.radio-option input[type="radio"] {
  width: 16px; height: 16px; cursor: pointer;
  accent-color: var(--accent);
}

/* Quiet fallback below form */
.ml-quiet {
  text-align: center; padding-top: 20px; margin-top: 4px;
  font-size: .8375rem; color: var(--text-3); line-height: 1.6;
  border-top: 1px solid var(--border);
}


/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer { background: var(--navy-dark); padding: 44px 0 24px; }
.footer-inner {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 20px;
}
.footer-left img { margin-bottom: 10px; }
.footer-tag {
  font-size: .8375rem; color: rgba(255,255,255,.32);
  line-height: 1.6; max-width: 300px;
}
.footer-right { flex-shrink: 0; }
.footer-email {
  font-size: .875rem; color: rgba(255,255,255,.45);
  transition: color .15s;
}
.footer-email:hover { color: rgba(255,255,255,.85); }
.footer-bottom p {
  font-size: .78rem; color: rgba(255,255,255,.2);
}


/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-sub { max-width: none; }
  .hero-visual { max-width: 400px; }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ae-q-list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .wgd-cards { grid-template-columns: 1fr; gap: 14px; }

  .ae-row { padding: 18px 20px; }
  .ae-questions { padding: 20px; }
  .ae-context { grid-template-columns: 1fr; padding: 12px 20px; }
  .ae-next-step { padding: 14px 20px; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }

  .hero { padding: 60px 0 72px; }
  .hero-inner { gap: 36px; }

  .hiw-steps { grid-template-columns: 1fr; gap: 28px; }
  .hiw-step { text-align: left; }

  .form-grid { grid-template-columns: 1fr; }
  .wl-form { padding: 24px 20px; }

  .footer-inner { flex-direction: column; gap: 20px; }
}

@media (max-width: 420px) {
  h1 { font-size: 1.875rem; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-visual { max-width: none; }
}
