:root {
  color-scheme: light;
  --ink: #18212b;
  --muted: #5d6978;
  --paper: #fbfbf7;
  --line: #d9ded8;
  --blue: #2274a5;
  --green: #17a398;
  --yellow: #ffcb47;
  --coral: #f75c03;
  --pink: #f7567c;
  --panel: #ffffff;
  --code: #101820;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(34, 116, 165, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(23, 163, 152, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: var(--blue);
  font-weight: 700;
  text-decoration-color: rgba(34, 116, 165, 0.38);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--coral);
  text-decoration-color: rgba(247, 92, 3, 0.45);
}

.page {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 44px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.identity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.mini-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: conic-gradient(from 120deg, var(--yellow), var(--pink), var(--blue), var(--green), var(--yellow));
  color: #fff;
  font-size: 12px;
  letter-spacing: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  align-items: center;
  padding: 26px 0 22px;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 9px 0 auto 254px;
  height: 10px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--blue));
}

.hero-art {
  width: 220px;
  aspect-ratio: 1;
  filter: drop-shadow(8px 10px 0 rgba(24, 33, 43, 0.14));
}

.hero-art svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-copy,
.section,
.project,
.signals article {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1 {
  margin-bottom: 2px;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 span {
  display: block;
}

.role {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 21px;
  font-weight: 850;
  overflow-wrap: break-word;
}

blockquote {
  margin-bottom: 18px;
  padding-left: 18px;
  border-left: 6px solid var(--yellow);
  color: #29323d;
  font-size: 18px;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 14px;
}

.signals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0 34px;
}

.signals article {
  min-height: 112px;
  padding: 14px;
  background: var(--panel);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(24, 33, 43, 0.15);
}

.signals article:nth-child(1) {
  border-top-color: var(--green);
}

.signals article:nth-child(2) {
  border-top-color: var(--pink);
}

.signals article:nth-child(3) {
  border-top-color: var(--yellow);
}

.signals article:nth-child(4) {
  border-top-color: var(--blue);
}

.signals strong {
  display: block;
  margin-bottom: 6px;
  font-size: 28px;
  line-height: 1;
}

.signals span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section {
  margin: 0 0 34px;
}

.section h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.section h2 span {
  display: inline-block;
  width: 28px;
  color: var(--coral);
}

.section > p {
  max-width: 760px;
}

.project-list {
  display: grid;
  gap: 18px;
}

.project {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: start;
}

.project h3,
.timeline h3 {
  margin-bottom: 3px;
  font-size: 18px;
  line-height: 1.25;
}

.project p,
.timeline p,
.wins p,
.education p {
  color: #303a46;
}

.thumb {
  min-height: 72px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(24, 33, 43, 0.14);
}

.thumb-network {
  background:
    radial-gradient(circle at 24px 18px, var(--pink) 0 7px, transparent 8px),
    radial-gradient(circle at 68px 30px, var(--yellow) 0 7px, transparent 8px),
    radial-gradient(circle at 45px 56px, var(--green) 0 7px, transparent 8px),
    linear-gradient(34deg, transparent 27%, var(--blue) 28% 33%, transparent 34%),
    linear-gradient(149deg, transparent 32%, var(--ink) 33% 37%, transparent 38%),
    #eaf6f6;
}

.thumb-lock {
  background:
    radial-gradient(circle at 46px 40px, transparent 0 13px, var(--ink) 14px 18px, transparent 19px),
    linear-gradient(var(--yellow) 0 0) center 34px / 46px 32px no-repeat,
    linear-gradient(var(--pink) 0 0) center 51px / 58px 22px no-repeat,
    #fff6dd;
}

.thumb-storage {
  background:
    linear-gradient(90deg, var(--blue) 8px, transparent 9px) 15px 13px / 22px 14px repeat-x,
    linear-gradient(90deg, var(--green) 8px, transparent 9px) 15px 33px / 22px 14px repeat-x,
    linear-gradient(90deg, var(--coral) 8px, transparent 9px) 15px 53px / 22px 14px repeat-x,
    #edf1ff;
}

.thumb-writing {
  background:
    linear-gradient(135deg, transparent 0 24px, var(--ink) 25px 29px, transparent 30px),
    radial-gradient(circle at 28px 24px, var(--yellow) 0 10px, transparent 11px),
    radial-gradient(circle at 65px 52px, var(--pink) 0 12px, transparent 13px),
    linear-gradient(var(--green) 0 0) 18px 46px / 44px 6px no-repeat,
    linear-gradient(var(--blue) 0 0) 18px 58px / 58px 6px no-repeat,
    #f5fbff;
}

.wins {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
}

.wins p {
  margin: 0;
  padding-left: 16px;
  border-left: 5px solid var(--green);
}

.wins p:nth-child(2) {
  border-left-color: var(--pink);
}

.wins p:nth-child(3) {
  border-left-color: var(--yellow);
}

.wins p:nth-child(4) {
  border-left-color: var(--blue);
}

.toolkit {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.toolkit span {
  padding: 5px 9px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  color: #24303b;
  font-size: 14px;
  font-weight: 750;
}

.toolkit span:nth-child(3n) {
  border-left-color: var(--coral);
}

.toolkit span:nth-child(3n + 1) {
  border-left-color: var(--green);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline article {
  padding-left: 16px;
  border-left: 5px solid var(--ink);
}

.timeline article:nth-child(2) {
  border-left-color: var(--blue);
}

.timeline article:nth-child(3) {
  border-left-color: var(--coral);
}

.timeline article:nth-child(4) {
  border-left-color: var(--green);
}

.meta {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 2px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 24px, 860px);
    padding-top: 20px;
  }

  .topbar,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero::before {
    inset: 8px 0 auto 0;
  }

  .hero-art {
    width: min(180px, 70vw);
  }

  h1 {
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1;
  }

  .role {
    font-size: 19px;
    max-width: 18rem;
  }

  .signals,
  .wins {
    grid-template-columns: 1fr;
  }

  .project {
    grid-template-columns: 72px 1fr;
    gap: 12px;
  }

  .thumb {
    min-height: 62px;
  }
}
