:root {
  --bg: #edf3f6;
  --surface: rgba(250, 253, 255, 0.9);
  --surface-strong: #f8fbfd;
  --ink: #18252f;
  --muted: #5f7281;
  --line: rgba(62, 89, 108, 0.16);
  --accent: #5f89a8;
  --accent-soft: #dce9f1;
  --shadow: 0 18px 44px rgba(47, 73, 92, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(221, 235, 245, 0.9), transparent 34%),
    radial-gradient(circle at top right, rgba(236, 244, 248, 0.95), transparent 28%),
    linear-gradient(180deg, #eff5f7 0%, #e8f0f3 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-shell {
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 4px 2px 28px;
}

.brand {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero,
.content-grid,
.about-band,
.feature-band,
.contact-band {
  margin-bottom: 22px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
}

.hero-photo-wrap,
.hero-copy,
.content-grid,
.about-band,
.feature-band,
.contact-band {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-photo-wrap {
  border-radius: 32px;
  overflow: hidden;
  min-height: 720px;
}

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

.hero-copy {
  border-radius: 32px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 720px;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-lede {
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 1.45;
  max-width: 20ch;
}

.hero-subtext,
.hero-note,
.thesis-card p,
.about-text,
.about-kicker,
.contact-row a {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-subtext {
  margin-top: 16px;
  max-width: 40ch;
}

.hero-note {
  margin-top: 16px;
  max-width: 42ch;
  font-size: 0.98rem;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-links a,
.contact-row a {
  font-weight: 500;
}

.hero-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.hero-links a:hover,
.site-nav a:hover,
.contact-row a:hover {
  border-color: rgba(95, 137, 168, 0.45);
}

.content-grid,
.about-band,
.feature-band,
.contact-band {
  border-radius: 32px;
  padding: 34px;
}

.content-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

.content-grid .section-copy {
  max-width: 32rem;
}

.thesis-grid {
  display: grid;
  gap: 14px;
}

.thesis-card {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(95, 137, 168, 0.16);
  border-radius: 22px;
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(240, 247, 250, 0.72));
}

.thesis-card p {
  margin-top: 0;
  max-width: 58ch;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.78fr);
  grid-template-areas:
    "header photo"
    "story story";
  gap: 24px;
  align-items: start;
}

.about-header {
  grid-area: header;
}

.about-header h2 {
  max-width: 9ch;
}

.about-text {
  max-width: 40ch;
  font-size: 1rem;
  line-height: 1.72;
}

.about-kicker {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 500;
}

.about-story-grid {
  grid-area: story;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 6px;
}

.about-story-block {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(62, 89, 108, 0.14);
}

.about-story-label {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.secondary-photo-wrap {
  grid-area: photo;
  border-radius: 24px;
  overflow: hidden;
  background: #eef4f7;
}

.secondary-photo {
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: center 38%;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.section-copy.compact {
  margin-bottom: 24px;
}

.feature-band {
  display: grid;
  gap: 20px;
}

.section-intro,
.experience-detail,
.experience-role {
  margin: 0;
}

.section-intro {
  max-width: 44ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.background-band {
  gap: 28px;
}

.experience-list {
  border-top: 1px solid rgba(62, 89, 108, 0.14);
}

.experience-row {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(62, 89, 108, 0.14);
}

.experience-logo {
  display: flex;
  align-items: center;
  min-height: 48px;
}

.experience-copy {
  display: grid;
  gap: 3px;
}

.company-logo {
  width: auto;
  max-width: 100%;
  height: 34px;
  opacity: 0.9;
}

.meta-logo {
  height: 36px;
}

.coinbase-logo {
  height: 26px;
}

.harvard-logo {
  height: 32px;
}

.defy-logo {
  height: 34px;
}

.experience-detail {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.experience-role {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 54ch;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.link-card {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(251, 254, 255, 0.92), rgba(239, 247, 251, 0.92));
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.link-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(47, 73, 92, 0.09);
}

.link-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.link-meta {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .hero,
  .content-grid,
  .about-band,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .about-band {
    grid-template-areas:
      "header"
      "photo"
      "story";
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .experience-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .thesis-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-photo-wrap,
  .hero-copy {
    min-height: 0;
  }

  .hero-photo {
    aspect-ratio: 4 / 5;
  }

  h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100vw - 20px, 1200px);
    padding-top: 16px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .content-grid,
  .about-band,
  .feature-band,
  .contact-band {
    padding: 22px;
  }

  .hero-links,
  .contact-row {
    flex-direction: column;
    gap: 12px;
  }
}
