/* EO Accelerator Portland — recruiting one-pager
   Brand: Roboto; EO Blue #3239CB, navy #0C0C31, pink #FF346E, yellow #F4D34C,
   teal #1EA691, coral #FA653C, slate #5E617D, lavender tint #EEEEFC. */

:root {
  --blue: #3239CB;
  --blue-deep: #262CA6;
  --navy: #0C0C31;
  --pink: #FF346E;
  --yellow: #F4D34C;
  --teal: #1EA691;
  --coral: #FA653C;
  --slate: #5E617D;
  --lav: #EEEEFC;
  --white: #fff;
  --ink: #14143a;
  --rule: #d9d9ef;
  --wrap: 1040px;
  --pad: clamp(20px, 5vw, 40px);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  font-size: clamp(16px, 1.05rem + 0.15vw, 18px);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--blue); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
}

h1, h2, h3 { line-height: 1.12; margin: 0 0 .5em; letter-spacing: -0.015em; }

/* ---------- Masthead ---------- */
.masthead {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.lockup {
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
  min-height: 44px;
}
.lockup-mark {
  width: clamp(168px, 40vw, 232px);
  display: block;
  align-self: center;
}
.lockup-place {
  font-weight: 700;
  font-size: clamp(15px, 3.6vw, 20px);
  color: var(--navy);
  letter-spacing: .01em;
  border-left: 2px solid var(--rule);
  padding-left: 12px;
  align-self: center;
  line-height: 1;
}
.masthead-phone {
  font-weight: 700;
  font-size: 15px;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  display: none; /* the hero CTA carries the number on small screens */
  align-items: center;
  min-height: 44px;
  flex: 0 0 auto;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(40px, 8vw, 76px) 0 clamp(36px, 7vw, 64px);
  position: relative;
  overflow: hidden;
}
/* Decorative chevron echoing the EO Accelerator mark. */
.hero::after {
  content: "";
  position: absolute;
  right: clamp(-40px, -2vw, 0px);
  bottom: -34px;
  width: 210px;
  height: 210px;
  background: var(--yellow);
  opacity: .13;
  clip-path: polygon(50% 0, 100% 100%, 72% 100%, 50% 42%, 28% 100%, 0 100%);
  pointer-events: none;
}
.hero h1 {
  font-weight: 900;
  font-size: clamp(30px, 6.6vw, 56px);
  max-width: 17ch;
  margin-bottom: .45em;
}
.hero-sub {
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.5;
  color: #d7d8ef;
  max-width: 60ch;
  margin: 0 0 clamp(24px, 4vw, 34px);
}

/* ---------- Buttons ---------- */
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--pink); color: var(--navy); }
.btn-primary:hover { background: #ff5182; }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-yellow { background: var(--yellow); color: var(--navy); }
.btn-yellow:hover { background: #f8de74; }
.btn-outline { background: var(--white); color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--lav); }
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

/* ---------- Proof strip ---------- */
.proof {
  background: var(--lav);
  border-bottom: 1px solid var(--rule);
  padding: clamp(28px, 5vw, 44px) 0;
}
.stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 28px);
}
.stats li {
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--blue);
  padding-left: 14px;
}
.stats li:nth-child(2) { border-left-color: var(--pink); }
.stats li:nth-child(3) { border-left-color: var(--teal); }
.stats li:nth-child(4) { border-left-color: var(--coral); }
.stat-num {
  font-weight: 900;
  font-size: clamp(32px, 5.4vw, 44px);
  line-height: 1;
  color: var(--blue);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat-cap { font-size: 15.5px; line-height: 1.45; color: var(--ink); }
.stat-src { font-size: 12px; color: var(--slate); margin-top: 6px; }

/* ---------- Generic section ---------- */
.section { padding: clamp(38px, 6.5vw, 64px) 0; }
.section-h {
  font-weight: 700;
  font-size: clamp(22px, 3.4vw, 30px);
  color: var(--navy);
  margin-bottom: .8em;
}
.section-h::after {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  background: var(--blue);
  margin-top: 12px;
}

/* ---------- How it works ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.6vw, 24px);
}
.card {
  border: 1px solid var(--rule);
  border-top: 4px solid var(--blue);
  border-radius: 4px;
  padding: clamp(20px, 3vw, 26px);
  background: var(--white);
  break-inside: avoid;
  page-break-inside: avoid;
}
.card:nth-child(2) { border-top-color: var(--pink); }
.card:nth-child(3) { border-top-color: var(--teal); }
.card-num {
  display: block;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .12em;
  color: var(--slate);
  margin-bottom: 6px;
}
.card h3 {
  font-weight: 700;
  font-size: clamp(19px, 2.4vw, 22px);
  color: var(--navy);
}
.card p { margin: 0 0 .7em; font-size: 16px; }
.card p:last-child { margin-bottom: 0; }
.card-kicker { color: var(--slate); }
.card strong { color: var(--navy); }

.fn {
  font-size: .7em;
  vertical-align: super;
  text-decoration: none;
  font-weight: 700;
  padding: 0 1px;
}

/* ---------- Values ---------- */
.values-band { background: var(--lav); }
.values {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.values li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 2px solid var(--blue);
  padding-top: 10px;
  break-inside: avoid;
}
.values li:nth-child(2) { border-top-color: var(--pink); }
.values li:nth-child(3) { border-top-color: var(--teal); }
.values li:nth-child(4) { border-top-color: var(--coral); }
.v-name { font-weight: 700; color: var(--navy); font-size: 17px; }
.v-line { font-size: 15px; color: var(--slate); line-height: 1.4; }
.norms {
  margin: 0;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  border-left: 3px solid var(--yellow);
  padding-left: 14px;
}

/* ---------- Ladder ---------- */
.ladder-wrap { display: grid; grid-template-columns: 1fr; gap: clamp(24px, 4vw, 40px); align-items: center; }
.ladder-copy p { margin: 0 0 .8em; }
.small-note { font-size: 15px; color: var(--slate); }
.ladder-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  break-inside: avoid;
}
.step {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 18px 16px;
  border-radius: 4px;
  text-align: center;
}
.step-1 { background: var(--lav); color: var(--navy); border: 1px solid var(--rule); }
.step-2 { background: var(--blue); color: var(--white); }
.step-label { font-weight: 900; font-size: clamp(17px, 2.4vw, 20px); line-height: 1.1; }
.step-range { font-size: 14px; opacity: .85; }
.step-arrow {
  flex: 0 0 34px;
  align-self: center;
  height: 3px;
  background: var(--blue);
  position: relative;
}
.step-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -5px;
  border-left: 11px solid var(--blue);
  border-top: 6.5px solid transparent;
  border-bottom: 6.5px solid transparent;
}

/* ---------- Two column (qualify / invest) ---------- */
.two-col { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 5vw, 48px); }
.ticks { list-style: none; margin: 0 0 1.2em; padding: 0; }
.ticks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 16px;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 11px;
  height: 6px;
  border-left: 2.5px solid var(--teal);
  border-bottom: 2.5px solid var(--teal);
  transform: rotate(-45deg);
}
.sub-h {
  font-weight: 700;
  color: var(--navy);
  margin: 1.1em 0 .2em;
  font-size: 16px;
}
.two-col .col p { margin: 0 0 .5em; }

.price {
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  padding: clamp(20px, 3vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
  break-inside: avoid;
}
.price-num { font-weight: 900; font-size: clamp(38px, 7vw, 52px); line-height: 1; color: var(--yellow); }
.price-unit { font-size: 16px; color: #d7d8ef; }
.price-add { font-size: 15px; color: var(--white); font-weight: 500; margin-top: 6px; }
.price-frame { font-size: 16px; color: var(--ink); margin: 0; }

/* ---------- Quotes ---------- */
.quotes-band { background: var(--lav); }
.quotes { display: grid; grid-template-columns: 1fr; gap: clamp(18px, 2.6vw, 22px); }
.quote {
  margin: 0;
  background: var(--white);
  border-radius: 4px;
  padding: clamp(18px, 2.6vw, 24px);
  border-left: 4px solid var(--pink);
  break-inside: avoid;
  page-break-inside: avoid;
}
.quote:nth-child(2) { border-left-color: var(--blue); }
.quote:nth-child(3) { border-left-color: var(--teal); }
.quote blockquote {
  margin: 0 0 12px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
}
.quote figcaption { display: flex; flex-direction: column; }
.q-name { font-weight: 700; color: var(--navy); font-size: 15px; }
.q-co { font-size: 14px; color: var(--slate); }

/* ---------- Next step ---------- */
.next {
  background: var(--blue);
  color: var(--white);
  padding: clamp(38px, 6.5vw, 60px) 0;
}
.next-h {
  font-weight: 900;
  font-size: clamp(26px, 4.6vw, 38px);
  margin-bottom: .2em;
}
.next-sub { font-size: clamp(17px, 2.2vw, 20px); color: #dfe0fb; margin: 0 0 24px; }
.event { margin: 0 0 24px; display: grid; gap: 10px; }
.event > div { display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: baseline; }
.event dt {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  min-width: 62px;
}
.event dd { margin: 0; font-size: 17px; font-weight: 500; }
.contacts { list-style: none; margin: 26px 0 0; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.28); display: grid; gap: 14px; }
.contacts li { display: flex; flex-direction: column; gap: 1px; }
.c-role { font-size: 13px; color: #dfe0fb; }
.contacts a { color: var(--white); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.45); align-self: flex-start; }
.contacts a:hover { border-bottom-color: var(--white); }

/* ---------- Share ---------- */
.share { padding: clamp(34px, 5.5vw, 52px) 0; background: var(--white); border-bottom: 1px solid var(--rule); }
.share-h { font-weight: 700; font-size: clamp(20px, 3vw, 26px); color: var(--navy); margin-bottom: .25em; }
.share-sub { margin: 0 0 18px; color: var(--slate); font-size: 16px; }
.share-box {
  background: var(--lav);
  border: 1px dashed #b9baea;
  border-radius: 4px;
  padding: 18px;
  margin-bottom: 16px;
}
.share-box p { margin: 0; font-size: 15.5px; line-height: 1.5; color: var(--ink); }
#share-url { word-break: break-all; color: var(--blue); font-weight: 500; }
.share-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.copy-status { margin: 12px 0 0; font-size: 14px; color: #0F7A68; font-weight: 500; min-height: 20px; }

/* ---------- Footnotes ---------- */
.footnotes { padding: 24px 0; background: var(--white); }
.footnotes ol { margin: 0; padding-left: 18px; }
.footnotes li { font-size: 12.5px; color: var(--slate); line-height: 1.5; margin-bottom: 4px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #c9cae4; padding: 30px 0; }
.footer-inner { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.footer-logo { width: 148px; }
.footer-copy p { margin: 0 0 4px; font-size: 14px; }
.footer-copy a { color: var(--white); }
.stamp { color: #8d8fb4; }

/* ---------- Responsive ---------- */
@media (min-width: 620px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: row; align-items: center; gap: 26px; }
  .masthead-phone { display: inline-flex; }
}

@media (min-width: 900px) {
  .stats { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .values { grid-template-columns: repeat(4, 1fr); }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .two-col { grid-template-columns: 1.25fr 1fr; }
  .ladder-wrap { grid-template-columns: 1.35fr 1fr; }
  .event { grid-template-columns: repeat(2, auto); justify-content: start; gap: 10px 48px; }
  .contacts { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ================= PRINT / PDF ================= */
@media print {
  @page { size: Letter; margin: 0.4in; }

  :root { --pad: 0; }

  html, body {
    font-size: 9.3pt;
    line-height: 1.36;
    background: #fff;
    color: #14143a;
  }

  .wrap { max-width: none; padding: 0; }

  .no-print, .share, .cta-row, .btn, .masthead-phone { display: none !important; }

  /* Masthead */
  .masthead { border-bottom: 1.5pt solid var(--blue); }
  .masthead-inner { padding: 0 0 5pt; }
  .lockup-mark { width: 160pt; }
  .lockup-place { font-size: 12pt; padding-left: 8pt; }

  /* Hero */
  .hero { padding: 9pt 12pt; margin-top: 5pt; border-radius: 3pt; }
  .hero::after { display: none; }
  .hero h1 { font-size: 20.5pt; max-width: 26ch; margin-bottom: 5pt; }
  .hero-sub { font-size: 10pt; margin: 0; max-width: 70ch; }

  /* Proof */
  .proof { padding: 8pt 0 7pt; border-bottom: .5pt solid var(--rule); }
  .stats { grid-template-columns: repeat(4, 1fr); gap: 10pt; }
  .stats li { padding-left: 6pt; border-left-width: 2pt; }
  .stat-num { font-size: 18.5pt; margin-bottom: 3pt; }
  .stat-cap { font-size: 8.2pt; line-height: 1.3; }
  .stat-src { font-size: 6.6pt; margin-top: 2pt; }

  /* Sections */
  .section { padding: 6pt 0 0; }
  .section-h { font-size: 13.5pt; margin-bottom: 6pt; }
  .section-h::after { height: 2pt; width: 30pt; margin-top: 5pt; }

  .cards { grid-template-columns: repeat(3, 1fr); gap: 8pt; }
  .card { padding: 8pt; border-top-width: 2.5pt; }
  .card h3 { font-size: 10.8pt; margin-bottom: 4pt; }
  .card p { font-size: 8.6pt; margin-bottom: 4pt; }
  .card-num { font-size: 7.4pt; margin-bottom: 3pt; }

  .values-band, .quotes-band { padding: 9pt 12pt; margin-top: 6pt; border-radius: 3pt; }
  .values { grid-template-columns: repeat(4, 1fr); gap: 8pt; margin-bottom: 7pt; }
  .v-name { font-size: 9.6pt; }
  .v-line { font-size: 8.2pt; }
  .norms { font-size: 8.6pt; padding-left: 8pt; }

  .ladder-wrap { grid-template-columns: 1.4fr 1fr; gap: 16pt; break-inside: avoid; page-break-inside: avoid; }
  .ladder-copy p { font-size: 9pt; }
  .step { padding: 8pt 6pt; }
  .step-label { font-size: 10.8pt; }
  .step-range { font-size: 8.1pt; }
  .small-note { font-size: 8.2pt; }

  .two-col { grid-template-columns: 1.2fr 1fr; gap: 20pt; }
  .ticks li { font-size: 8.8pt; margin-bottom: 4pt; padding-left: 14pt; }
  .ticks li::before { width: 6pt; height: 3.5pt; border-width: 1.4pt; }
  .sub-h { font-size: 9pt; margin: 6pt 0 1pt; }
  .two-col .col p { font-size: 8.8pt; }
  .price { padding: 9pt; margin-bottom: 6pt; }
  .price-num { font-size: 24pt; }
  .price-unit { font-size: 8.6pt; }
  .price-add { font-size: 8.4pt; margin-top: 3pt; }
  .price-frame { font-size: 8.8pt; }

  .quotes { grid-template-columns: repeat(3, 1fr); gap: 7pt; }
  .quote { padding: 8pt; border-left-width: 2.5pt; }
  .quote blockquote { font-size: 8.1pt; line-height: 1.34; margin-bottom: 5pt; }
  .q-name { font-size: 8.4pt; }
  .q-co { font-size: 7.8pt; }

  .next { padding: 9pt 12pt; margin-top: 7pt; border-radius: 3pt; }
  .next-h { font-size: 16.5pt; }
  .next-sub { font-size: 10pt; margin-bottom: 7pt; }
  .event { grid-template-columns: repeat(2, auto); justify-content: start; gap: 4pt 30pt; margin-bottom: 8pt; }
  .event dt { font-size: 7.2pt; min-width: 34pt; }
  .event dd { font-size: 9.6pt; }
  .contacts {
    grid-template-columns: repeat(3, 1fr);
    gap: 10pt;
    margin-top: 8pt;
    padding-top: 8pt;
  }
  .c-role { font-size: 7.8pt; }
  .contacts a { font-size: 9.2pt; border-bottom: none; }

  .footnotes { padding: 5pt 0 0; }
  .footnotes li { font-size: 7.1pt; margin-bottom: 1pt; }
  .fn { font-size: .65em; }

  .site-footer { padding: 7pt 12pt; margin-top: 5pt; border-radius: 3pt; }
  .footer-inner { flex-direction: row; align-items: center; gap: 14pt; }
  .footer-logo { width: 92pt; }
  .footer-copy p { font-size: 7.9pt; margin-bottom: 1pt; }

  /* Keep blocks intact across the page break */
  .card, .quote, .stats li, .values li, .price, .ladder-steps, .event, .section-h {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  h2, h3 { break-after: avoid; page-break-after: avoid; }
  a { color: inherit; text-decoration: none; }
  .hero a, .next a { color: inherit; }

  /* Force full-bleed colour blocks to print their backgrounds */
  .hero, .next, .price, .site-footer, .proof, .values-band, .quotes-band, .step-2, .card, .quote {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
