﻿:root {
  --bg-1: #03060b;
  --bg-2: #071528;
  --bg-3: #10233f;
  --panel: rgba(8, 17, 30, 0.88);
  --panel-strong: rgba(11, 24, 42, 0.96);
  --line: #193254;
  --text: #f3f6fb;
  --muted: #aab9cd;
  --accent: #6d9cf2;
  --accent-soft: rgba(109, 156, 242, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(109, 156, 242, 0.16), transparent 28%),
    radial-gradient(circle at right 20%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(155deg, var(--bg-1), var(--bg-2) 46%, var(--bg-3));
  line-height: 1.65;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 4vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 8, 15, 0.84);
  backdrop-filter: blur(12px);
}

.brand {
  text-decoration: none;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.48rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--text);
  border-color: rgba(109, 156, 242, 0.45);
  background: var(--accent-soft);
  outline: none;
}

.page-shell {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.home-hero,
.page-banner,
.experience-card,
.placeholder-card,
.spotlight-card,
.archive-panel {
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.9fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
}

.hero-copy h1,
.page-banner h1 {
  margin: 0.35rem 0 0.9rem;
  line-height: 1.1;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--muted);
}

.school-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  padding: 0.4rem 0.8rem 0.4rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.school-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.school-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.school-logo-link:focus-visible {
  outline: 2px solid rgba(109, 156, 242, 0.75);
  outline-offset: 2px;
}

.hero-tagline {
  margin: 0 0 1.2rem;
  color: #eef4ff;
  font-weight: 600;
}

.copy-block {
  padding-left: 1rem;
  border-left: 3px solid rgba(109, 156, 242, 0.62);
}

.copy-block h2,
.spotlight-card h2,
.experience-copy h2,
.archive-header h2,
.placeholder-card h2 {
  margin: 0 0 0.6rem;
  line-height: 1.2;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.copy-block p,
.banner-copy,
.spotlight-card p,
.placeholder-card p,
.archive-note {
  margin: 0.6rem 0 0;
  color: #d7e1ef;
}

.location-line {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.button-link,
.text-link {
  text-decoration: none;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
  transition: 180ms ease;
}

.button-link:hover,
.button-link:focus-visible {
  border-color: rgba(109, 156, 242, 0.52);
  background: rgba(109, 156, 242, 0.14);
  outline: none;
}

.button-link.is-primary {
  background: linear-gradient(135deg, rgba(109, 156, 242, 0.25), rgba(109, 156, 242, 0.12));
  border-color: rgba(109, 156, 242, 0.52);
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.headshot-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(109, 156, 242, 0.12), rgba(255, 255, 255, 0.03));
}

.headshot-photo {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat-card {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 1rem;
  text-align: center;
}

.stat-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-align: center;
}

.spotlight-grid,
.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.spotlight-card,
.placeholder-card {
  min-height: 100%;
}

.linkedin-section {
  margin-top: 1rem;
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

.linkedin-header {
  text-align: center;
}

.linkedin-header h2 {
  margin: 0.35rem 0 0.55rem;
  line-height: 1.2;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.linkedin-header p {
  margin: 0;
  color: #d7e1ef;
}

.linkedin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.linkedin-post {
  min-height: 220px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.linkedin-post a {
  display: block;
  height: 100%;
  padding: 1rem 1.05rem;
  text-decoration: none;
}

.linkedin-post a:hover,
.linkedin-post a:focus-visible {
  background: rgba(109, 156, 242, 0.12);
  outline: none;
}

.linkedin-post .post-date {
  margin: 0;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.linkedin-post h3 {
  margin: 0.35rem 0 0.65rem;
  line-height: 1.25;
  font-size: 1.05rem;
}

.linkedin-post .post-excerpt {
  margin: 0;
  color: #d7e1ef;
  font-size: 0.94rem;
}

.linkedin-post .post-cta {
  display: inline-block;
  margin-top: 0.8rem;
  color: #cfe0ff;
  font-weight: 600;
  font-size: 0.9rem;
}

.linkedin-post.is-loading,
.linkedin-post.is-empty {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}

.linkedin-post.is-empty p,
.linkedin-post.is-loading p {
  margin: 0;
  color: #d7e1ef;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: #cfe0ff;
  font-weight: 600;
}

.text-link:hover,
.text-link:focus-visible {
  color: #ffffff;
  outline: none;
}

.page-banner {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.page-banner > div {
  max-width: 900px;
}

.coursework-hero-row {
  position: relative;
}

.coursework-banner {
  width: 100%;
}

.page-note {
  position: relative;
  width: 100%;
  padding: 0.95rem 1rem 1rem;
  border-radius: 10px 18px 12px 18px;
  background: linear-gradient(160deg, #f6e7a8, #e7cb72);
  color: #2f2509;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  text-align: left;
}

.coursework-note {
  position: absolute;
  top: 0;
  left: calc(100% + 1rem);
  width: 240px;
}

.page-note::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 18px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #18345b;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.25) inset;
}

.page-note strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.page-note p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.35;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.experience-card {
  background: var(--panel-strong);
}

.experience-header {
  display: flex;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.logo-tile {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0.55rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-tile.is-compact {
  flex-basis: 64px;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  padding: 0.45rem;
}

.experience-copy {
  min-width: 0;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.detail-list {
  margin: 0;
  padding-left: 1.2rem;
}

.detail-list li + li {
  margin-top: 0.42rem;
}

.skills-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
  justify-content: center;
}

.skills-cloud span {
  padding: 0.36rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(109, 156, 242, 0.45);
  background: rgba(109, 156, 242, 0.12);
  color: #ecf3ff;
  font-size: 0.82rem;
  font-weight: 500;
}

.skills-cloud a {
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(109, 156, 242, 0.45);
  background: rgba(109, 156, 242, 0.12);
  color: #ecf3ff;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: 180ms ease;
}

.skills-cloud a:hover,
.skills-cloud a:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(109, 156, 242, 0.2);
  color: #ffffff;
  outline: none;
}

.reference-block {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.reference-block h3 {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.reference-block p {
  margin: 0.3rem 0 0;
}

.archive-panel {
  margin-top: 1rem;
}

.archive-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.archive-list {
  display: grid;
  gap: 0.75rem;
}

.archive-entry {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.archive-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  padding: 1rem;
}

.archive-summary::-webkit-details-marker {
  display: none;
}

.summary-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.summary-copy strong {
  font-size: 1rem;
}

.summary-copy span,
.summary-action {
  color: var(--muted);
  font-size: 0.9rem;
}

.summary-location {
  font-size: 0.86rem;
}

.summary-action {
  margin-left: auto;
  padding-left: 1rem;
}

.archive-entry[open] .summary-action {
  color: #ffffff;
}

.archive-body {
  padding: 0 1rem 1rem;
}

.stacked-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.narrative-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.narrative-block h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.narrative-block p {
  margin: 0 auto;
  max-width: 950px;
  color: #d7e1ef;
}

.project-description {
  margin: 0;
  color: #d7e1ef;
}

.resource-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.resource-block h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.resource-block p {
  margin: 0;
  color: #d7e1ef;
}

.resource-block a {
  color: #cfe0ff;
  word-break: break-word;
}

.media-strip {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  margin-top: 0.8rem;
}

.media-strip::-webkit-scrollbar {
  height: 8px;
}

.media-strip::-webkit-scrollbar-thumb {
  background: rgba(109, 156, 242, 0.35);
  border-radius: 999px;
}

.media-card {
  flex: 0 0 240px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.media-card img {
  width: 100%;
  height: 165px;
  object-fit: cover;
}

.leadership-media {
  justify-content: center;
  flex-wrap: wrap;
  overflow-x: visible;
}

.leadership-media .media-card {
  flex: 0 1 240px;
}

.project-media .media-card {
  flex-basis: 300px;
}

.pdf-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.pdf-preview {
  width: 100%;
  height: 220px;
  border: 0;
  background: #0a1222;
  pointer-events: none;
}

.project-media {
  justify-content: center;
  flex-wrap: wrap;
  overflow-x: visible;
}

.project-media .media-card {
  flex: 0 1 320px;
}

.media-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.media-card-link img {
  display: block;
}

.media-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 14px;
}

.media-caption {
  margin: 0;
  padding: 0.5rem 0.7rem 0.6rem;
  font-size: 0.8rem;
  color: #d7e1ef;
  text-align: left;
}

.media-caption a {
  color: #cfe0ff;
  text-decoration: none;
}

.media-caption a:hover,
.media-caption a:focus-visible {
  text-decoration: underline;
}

.contact-panel {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
}

.contact-inline-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-items: center;
}

.contact-inline-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: auto;
  max-width: 100%;
  padding: 0.45rem 0.1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: 180ms ease;
  min-width: 0;
}

.contact-inline-item:hover,
.contact-inline-item:focus-visible {
  color: #ffffff;
  outline: none;
}

.contact-value {
  color: #d7e1ef;
  word-break: break-word;
  font-size: 1.12rem;
  line-height: 1.45;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  color: #e8f1ff;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.resume-frame {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #02060d;
}

.resume-frame a {
  color: #cfe0ff;
}

.site-footer {
  width: min(1180px, 92vw);
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .home-hero,
  .feature-grid,
  .spotlight-grid,
  .placeholder-grid,
  .contact-inline-list,
  .linkedin-grid {
    grid-template-columns: 1fr;
  }

  .page-banner,
  .archive-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .coursework-hero-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .coursework-note {
    position: static;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 1rem;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(94vw, 1180px);
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .experience-header,
  .archive-summary {
    align-items: flex-start;
  }

  .archive-summary {
    flex-wrap: wrap;
  }

  .summary-action {
    margin-left: 0;
    padding-left: 0;
  }

  .headshot-photo {
    min-height: 320px;
  }
}

.insight-section {
  margin-top: 1rem;
}

.section-intro {
  padding: clamp(1rem, 2.3vw, 1.5rem);
  text-align: center;
}

.section-intro h2 {
  margin: 0.35rem 0 0.55rem;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.section-intro p {
  margin: 0;
  color: #d7e1ef;
}

.qa-list {
  margin-top: 1rem;
}

.qa-card {
  padding: clamp(1.15rem, 2.4vw, 1.6rem);
}

.qa-label {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.qa-question {
  margin: 0.35rem 0 1rem;
  line-height: 1.25;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.qa-answer {
  margin: 0.75rem 0 0;
  color: #d7e1ef;
}




