:root {
  --ink: #1a1a1a;
  --dark: #2b2b2b;
  --muted: #666;
  --line: #e4e4e4;
  --accent: #0a66c2; /* LinkedIn blue */
  --bg: #fafafa;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; }

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.hero {
  background: var(--dark);
  color: #fff;
  padding: 72px 0 56px;
  text-align: center;
}

.hero-photo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 3px solid rgba(255,255,255,0.55);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero h1 {
  font-size: 30pt;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero .tagline {
  margin-top: 8px;
  font-size: 12pt;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
}

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding: 13px 26px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 10.5pt;
  border-radius: 999px;
  transition: opacity 0.15s ease;
}

.btn-linkedin:hover { opacity: 0.88; }

/* Content */
.section {
  padding: 48px 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section h2 {
  font-size: 9pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 16px;
}

.section p {
  font-size: 11pt;
  color: #333;
}

.section p + p { margin-top: 14px; }

footer {
  text-align: center;
  padding: 32px 0 48px;
  font-size: 8.5pt;
  color: #999;
}

@media (max-width: 600px) {
  .hero { padding: 56px 0 40px; }
  .hero h1 { font-size: 24pt; }
}

/* ─── Innovation Fellowship page ─── */

.eyebrow {
  display: inline-block;
  font-size: 8pt;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 10.5pt;
  border-radius: 6px;
  transition: opacity 0.15s ease;
}

.btn-primary:hover { opacity: 0.85; }

.video-placeholder {
  border: 1px dashed #ccc;
  border-radius: 10px;
  background: #fff;
  padding: 48px 20px;
  text-align: center;
  color: #999;
  font-size: 10pt;
}

.doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.doc-card {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s ease;
}

.doc-card:hover { border-color: #999; }

.doc-card .doc-name {
  font-size: 10pt;
  font-weight: 600;
}

.doc-card .doc-type {
  font-size: 8pt;
  color: var(--muted);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .doc-grid { grid-template-columns: 1fr; }
}

/* ─── Document viewer pages ─── */

.view-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--dark);
  color: #fff;
  font-size: 9.5pt;
  gap: 12px;
}

.view-bar a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  white-space: nowrap;
}

.view-bar a:hover { opacity: 1; text-decoration: underline; }

.view-bar .view-title {
  font-weight: 600;
  flex: 1;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preface {
  max-width: 760px;
  margin: 22px auto 0;
  padding: 0 24px;
  font-size: 10.5pt;
  color: #333;
}

.preface h2 {
  font-size: 9pt;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 10px;
}

.preface p { margin-bottom: 10px; }

.preface ol {
  padding-left: 20px;
  margin: 10px 0 4px;
}

.preface li { margin-bottom: 4px; }

.pdf-frame {
  display: block;
  width: 100%;
  height: 85vh;
  border: none;
  margin-top: 18px;
}

/* ─── Flyer graphic (Innovation Fellowship hero) ─── */

.flyer {
  background: linear-gradient(160deg, #1b1b1b 0%, #2b2b2b 55%, #3a1f14 150%);
  border: 1px solid rgba(193, 80, 46, 0.4);
  border-radius: 16px;
  padding: 40px 28px;
  color: #fff;
  text-align: center;
  margin: 18px 0 8px;
}

.flyer-eyebrow {
  font-size: 8pt;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c1502e;
  margin-bottom: 18px;
}

.flyer-eyebrow .arrow { color: rgba(255,255,255,0.4); margin: 0 4px; }

.flyer-photo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid #c1502e;
}

.flyer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.flyer-headline {
  font-size: 25pt;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 26px;
}

/* Their question, styled after the Innovation Foundation's own editorial serif treatment */

.flyer-quote-label {
  font-size: 7.5pt;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.flyer-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: 21pt;
  line-height: 1.28;
  color: #f2f2f2;
  max-width: 460px;
  margin: 0 auto 6px;
}

.flyer-quote .accent,
.flyer-answer-text .accent {
  font-style: italic;
  font-weight: 600;
  color: #e07a55;
}

.flyer-logo-nod {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin: 14px 0 30px;
}

.flyer-logo-nod .mark {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 13pt;
  color: #c1502e;
}

.flyer-logo-nod .cap {
  font-size: 7pt;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* His answer: photo + overlaid quote, mirroring their hero pattern */

.flyer-answer {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}

.flyer-answer img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: grayscale(20%);
}

.flyer-answer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.88) 15%, rgba(0,0,0,0.2) 65%, rgba(0,0,0,0.05) 100%);
}

.flyer-answer-label {
  position: absolute;
  left: 20px;
  top: 14px;
  z-index: 2;
  font-size: 7.5pt;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.flyer-answer-text {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  z-index: 2;
  text-align: left;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: 17pt;
  line-height: 1.2;
  color: #fff;
}

/* Illustrated route map */

.flyer-map {
  position: relative;
  padding: 22px 12px 6px;
  margin-bottom: 26px;
  border-radius: 12px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 16px 16px;
}

.flyer-map-label {
  font-size: 7.5pt;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}

.flyer-route {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 2px;
  max-width: 620px;
  margin: 0 auto;
}

.balloon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 9pt;
  color: #fff;
  white-space: nowrap;
}

.balloon .flag { font-size: 12pt; line-height: 1; }

.balloon.home {
  border-color: #c1502e;
  background: rgba(193, 80, 46, 0.18);
  color: #f2b79f;
  font-weight: 600;
}

.plane {
  font-size: 12pt;
  margin: 0 2px;
  display: inline-block;
}

.flyer-route .balloon:nth-of-type(3n+2) { transform: translateY(6px); }
.flyer-route .balloon:nth-of-type(3n+3) { transform: translateY(-4px); }

.flyer-method {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-bottom: 26px;
}

.method-step {
  font-size: 10.5pt;
  font-weight: 600;
  color: #fff;
}

.method-step .icon {
  display: block;
  font-size: 17pt;
  margin-bottom: 5px;
}

.method-step .we { color: rgba(255, 255, 255, 0.55); font-weight: 400; }

.flyer-footer {
  font-size: 9pt;
  color: rgba(255, 255, 255, 0.62);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.55;
}

.flyer-download {
  display: inline-block;
  margin-top: 20px;
  font-size: 8.3pt;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}

.flyer-download:hover { color: rgba(255, 255, 255, 0.8); }

@media (max-width: 600px) {
  .flyer-headline { font-size: 19pt; }
  .flyer-method { gap: 18px; }
}
