:root {
  color-scheme: light dark;
  --bg: #fafbfc;
  --surface: #fff;
  --surface-2: #f2f4f7;
  --ink: #0f1419;
  --ink-2: #4a5260;
  --border: #e3e8ef;
  --accent: #2563eb;
  --accent-soft: #eff4ff;
  --gradient: linear-gradient(135deg, #1e2a4a 0%, #2563eb 100%);
  --grad-deep-1: #0f2557;
  --grad-deep-2: #1d4ed8;
  --gradient-deep: linear-gradient(135deg, var(--grad-deep-1) 0%, var(--grad-deep-2) 100%);
  --footer-bg: #0f1319;
  --footer-ink: #9aa4b3;
  --live: #22c55e;
  --aurora-1: #93b4ff;
  --aurora-2: #b8a5ff;
  --aurora-3: #8fd8ff;
  --shadow-sm: 0 1px 2px #0f14190f, 0 1px 3px #0f14190a;
  --shadow-md: 0 4px 6px -1px #0f141914, 0 12px 24px -8px #0f14191a;
  --shadow-lg: 0 20px 48px -16px #0f141938;
  --fs-lead: 1.9rem;
  --fs-h2: 3.6rem;
}

@media (width <= 37.5em) {
  :root {
    --fs-lead: 1.6rem;
    --fs-h2: 2.8rem;
  }
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0b0e14;
    --surface: #12161f;
    --surface-2: #1a1f2b;
    --ink: #e8edf5;
    --ink-2: #98a2b3;
    --border: #232a38;
    --accent: #60a5fa;
    --accent-soft: #16233a;
    --gradient: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    --grad-deep-1: #0b1b3f;
    --grad-deep-2: #1d4ed8;
    --footer-bg: #080b10;
    --footer-ink: #8b95a5;
    --live: #22c55e;
    --aurora-1: #2c4a9a;
    --aurora-2: #5b3fa8;
    --aurora-3: #17557d;
    --shadow-sm: 0 1px 2px #0006;
    --shadow-md: 0 4px 6px -1px #00000080, 0 12px 24px -8px #0006;
    --shadow-lg: 0 20px 48px -16px #0009;
  }
}

:root[data-theme="dark"] {
  --bg: #0b0e14;
  --surface: #12161f;
  --surface-2: #1a1f2b;
  --ink: #e8edf5;
  --ink-2: #98a2b3;
  --border: #232a38;
  --accent: #60a5fa;
  --accent-soft: #16233a;
  --gradient: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  --grad-deep-1: #0b1b3f;
  --grad-deep-2: #1d4ed8;
  --footer-bg: #080b10;
  --footer-ink: #8b95a5;
  --live: #22c55e;
  --aurora-1: #2c4a9a;
  --aurora-2: #5b3fa8;
  --aurora-3: #17557d;
  --shadow-sm: 0 1px 2px #0006;
  --shadow-md: 0 4px 6px -1px #00000080, 0 12px 24px -8px #0006;
  --shadow-lg: 0 20px 48px -16px #0009;
}

@media (prefers-reduced-motion: no-preference) {
  :root[data-wipe]::view-transition-old(root), :root[data-wipe]::view-transition-new(root) {
    mix-blend-mode: normal;
    animation: none;
  }

  :root[data-wipe]::view-transition-old(root) {
    z-index: 1;
  }

  :root[data-wipe]::view-transition-new(root) {
    z-index: 2;
    animation: .55s cubic-bezier(.22, 1, .36, 1) both theme-wipe;
  }
}

@keyframes theme-wipe {
  from {
    clip-path: circle(0 at var(--wipe-x, 50%) var(--wipe-y, 50%));
  }

  to {
    clip-path: circle(var(--wipe-r, 100vmax) at var(--wipe-x, 50%) var(--wipe-y, 50%));
  }
}

*, :before, :after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 9rem;
  font-size: 62.5%;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#i-github, #i-linkedin, #i-star {
  fill: currentColor;
  stroke: none;
}

ul {
  padding: 0;
  list-style: none;
}

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
}

.scroll-anchor {
  pointer-events: none;
  width: 1px;
  height: 1px;
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, :before, :after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

body {
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 1.6rem;
}

h1, h2, h3, h4 {
  letter-spacing: -.02em;
  text-wrap: balance;
  line-height: 1.15;
}

p {
  text-wrap: pretty;
}

.section-head {
  max-width: 62rem;
  margin-bottom: 5.6rem;
}

@media (width <= 37.5em) {
  .section-head {
    margin-bottom: 3.6rem;
  }
}

.section-eyebrow {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.6rem;
  font-size: 1.3rem;
  font-weight: 700;
  display: inline-flex;
}

.section-eyebrow:before {
  content: "";
  background: var(--accent);
  border-radius: 2px;
  width: 2.4rem;
  height: 2px;
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: 700;
}

.section-lead {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  margin-top: 1.6rem;
}

.text-gradient {
  background-image: var(--gradient);
  color: #0000;
  background-clip: text;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 26px), 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      animation: linear both reveal-in view();
      animation-range: entry cover 22%;
    }

    .reveal--d1 {
      animation-range: entry 6% cover 26%;
    }

    .reveal--d2 {
      animation-range: entry 12% cover 30%;
    }
  }
}

.reveal--left {
  --reveal-x: -30px;
  --reveal-y: 0;
}

.reveal--right {
  --reveal-x: 30px;
  --reveal-y: 0;
}

@media (width <= 56.25em) {
  .reveal--left, .reveal--right {
    --reveal-x: 0;
    --reveal-y: 26px;
  }
}

.container {
  width: 100%;
  max-width: 112rem;
  margin-inline: auto;
  padding-inline: 3.2rem;
}

@media (width <= 37.5em) {
  .container {
    padding-inline: 2rem;
  }
}

.section {
  padding-block: 10rem;
  position: relative;
}

@media (width <= 56.25em) {
  .section {
    padding-block: 7rem;
  }
}

@media (width <= 37.5em) {
  .section {
    padding-block: 5.6rem;
  }
}

.section--tinted {
  background-color: var(--surface-2);
  border-block: 1px solid var(--border);
}

.progress-bar {
  z-index: 60;
  background: var(--gradient);
  transform-origin: 0;
  width: 100%;
  height: 3px;
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  transform: scaleX(0);
}

@supports (animation-timeline: scroll()) {
  .progress-bar {
    animation: linear both progress-grow scroll(root);
  }
}

@keyframes progress-grow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.nav {
  z-index: 50;
  background-color: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(12px) saturate(160%);
  border-block-end: 1px solid #0000;
  position: sticky;
  inset-block-start: 0;
}

@supports (animation-timeline: scroll()) {
  .nav {
    animation: linear both nav-settle scroll(root);
    animation-range: 0 60px;
  }
}

.nav__inner {
  justify-content: space-between;
  align-items: center;
  gap: 2.4rem;
  height: 7.2rem;
  display: flex;
}

@media (width <= 56.25em) {
  .nav__inner {
    gap: 1.2rem;
  }
}

@media (width <= 37.5em) {
  .nav__inner {
    height: 6rem;
  }
}

.nav__brand {
  letter-spacing: -.01em;
  align-items: center;
  gap: 1.2rem;
  font-weight: 700;
  display: inline-flex;
}

.nav__brand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav__brand-mark {
  color: #fff;
  background: var(--gradient);
  letter-spacing: 0;
  border-radius: 50%;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  display: grid;
}

@media (width <= 56.25em) {
  .nav__brand-text {
    display: none;
  }
}

.nav__links {
  align-items: center;
  gap: .4rem;
  min-width: 0;
  display: flex;
}

@media (width <= 56.25em) {
  .nav__links {
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-x: auto;
    mask-image: linear-gradient(to right, #0000 0, #000 1.2rem calc(100% - 1.2rem), #0000 100%);
  }

  .nav__links::-webkit-scrollbar {
    display: none;
  }
}

.nav__link {
  color: var(--ink-2);
  border-radius: .8rem;
  flex: none;
  padding: .8rem 1.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  transition: color .2s, background-color .2s;
  position: relative;
}

.nav__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav__link:hover {
  color: var(--ink);
  background-color: var(--surface-2);
}

.nav__link.is-active {
  color: var(--accent);
  background-color: var(--accent-soft);
}

.nav__actions {
  align-items: center;
  gap: .8rem;
  display: flex;
}

.theme-toggle {
  border-radius: .8rem;
  place-items: center;
  width: 4rem;
  height: 4rem;
  transition: color .2s, background-color .2s, transform .2s;
  display: grid;
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.theme-toggle {
  color: var(--ink-2);
  border: 1px solid var(--border);
}

.theme-toggle:hover {
  color: var(--ink);
  border-color: var(--ink-2);
  background-color: var(--surface-2);
}

.theme-toggle svg {
  width: 1.8rem;
  height: 1.8rem;
}

@keyframes nav-settle {
  from {
    border-block-end-color: #0000;
    box-shadow: 0 0 #0000;
  }

  to {
    border-block-end-color: var(--border);
    box-shadow: var(--shadow-sm);
  }
}

.footer {
  color: var(--footer-ink);
  background-color: var(--footer-bg);
  padding-block: 4rem;
}

.footer__inner {
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  display: flex;
}

@media (width <= 37.5em) {
  .footer__inner {
    text-align: center;
    flex-direction: column;
    gap: 2.4rem;
  }
}

.footer__text {
  font-size: 1.3rem;
}

.footer__text a {
  color: #fff;
  font-weight: 600;
  transition: color .2s;
}

.footer__text a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer__text a:hover {
  color: var(--accent);
}

.footer__links {
  gap: .4rem;
  display: flex;
}

.footer__links a {
  border-radius: .8rem;
  place-items: center;
  width: 4rem;
  height: 4rem;
  transition: color .2s, background-color .2s, transform .2s;
  display: grid;
}

.footer__links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer__links a {
  color: var(--footer-ink);
}

.footer__links a:hover {
  color: #fff;
  background-color: #ffffff14;
  transform: translateY(-2px);
}

.footer__links svg {
  width: 1.9rem;
  height: 1.9rem;
}

@property --btn-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 135deg;
}

.btn {
  letter-spacing: .01em;
  border-radius: .8rem;
  justify-content: center;
  align-items: center;
  gap: .8rem;
  padding: 1.3rem 2.4rem;
  font-size: 1.4rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s, background-color .2s, border-color .2s, color .2s;
  display: inline-flex;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn svg {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(var(--btn-angle), var(--grad-deep-1) 0%, var(--grad-deep-2) 100%);
  box-shadow: var(--shadow-md);
  transition: --btn-angle .5s, transform .2s, box-shadow .2s;
}

.btn--primary:hover {
  --btn-angle: 65deg;
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  color: var(--ink);
  border: 1px solid var(--border);
  background-color: var(--surface);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--on-dark {
  color: var(--grad-deep-1);
  background-color: #fff;
}

.btn--on-dark:hover {
  box-shadow: var(--shadow-lg);
}

.btn--outline-light {
  color: #fff;
  border: 1px solid #ffffff73;
}

.btn--outline-light:hover {
  background-color: #ffffff1f;
  border-color: #fff;
}

.chip-list {
  flex-wrap: wrap;
  gap: .8rem;
  display: flex;
}

.chip {
  color: var(--accent);
  background-color: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  white-space: nowrap;
  border-radius: 100px;
  padding: .5rem 1.2rem;
  font-size: 1.25rem;
  font-weight: 600;
}

@media (width <= 37.5em) {
  .chip {
    padding: .4rem 1rem;
    font-size: 1.15rem;
  }
}

.chip--muted {
  color: var(--ink-2);
  background-color: var(--surface-2);
  border-color: var(--border);
}

@property --aurora-shift {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 50%;
}

#hero {
  align-items: center;
  min-height: calc(100svh - 7.2rem);
  padding-block: 8rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (width <= 56.25em) {
  #hero {
    min-height: auto;
    padding-block: 8rem 6rem;
  }
}

#hero:before {
  content: "";
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, var(--border) 1px, transparent 0);
  z-index: -2;
  background-size: 32px 32px;
  position: absolute;
  inset: 0;
  mask-image: radial-gradient(80% 60% at 30% 40%, #000 0%, #0000 75%);
}

.aurora {
  z-index: -1;
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.aurora__blob {
  filter: blur(80px);
  opacity: .5;
  will-change: transform;
  border-radius: 50%;
  display: block;
  position: absolute;
}

@media (width <= 37.5em) {
  .aurora__blob {
    filter: blur(56px);
    opacity: .42;
  }
}

.aurora__blob--1 {
  background: radial-gradient(circle at var(--aurora-shift) 40%, var(--aurora-1) 0%, transparent 68%);
  width: 46rem;
  height: 46rem;
  inset-block-start: -18%;
  inset-inline-end: -8%;
}

.aurora__blob--2 {
  background: radial-gradient(circle at 50% var(--aurora-shift), var(--aurora-2) 0%, transparent 66%);
  width: 34rem;
  height: 34rem;
  inset-block-start: 22%;
  inset-inline-end: 12%;
}

.aurora__blob--3 {
  background: radial-gradient(circle at var(--aurora-shift) 60%, var(--aurora-3) 0%, transparent 70%);
  width: 38rem;
  height: 38rem;
  inset-block-end: -14%;
  inset-inline-start: -6%;
}

@media (prefers-reduced-motion: no-preference) {
  .aurora__blob--1 {
    animation: 26s ease-in-out infinite alternate drift-a, 19s ease-in-out infinite alternate bloom;
  }

  .aurora__blob--2 {
    animation: 32s ease-in-out infinite alternate drift-b, 23s ease-in-out -6s infinite alternate bloom;
  }

  .aurora__blob--3 {
    animation: 29s ease-in-out infinite alternate drift-c, 21s ease-in-out -11s infinite alternate bloom;
  }
}

@keyframes drift-a {
  from {
    transform: translate3d(0, 0, 0)scale(1);
  }

  to {
    transform: translate3d(-9%, 7%, 0)scale(1.14);
  }
}

@keyframes drift-b {
  from {
    transform: translate3d(0, 0, 0)scale(1.08);
  }

  to {
    transform: translate3d(11%, -9%, 0)scale(.94);
  }
}

@keyframes drift-c {
  from {
    transform: translate3d(0, 0, 0)scale(.96);
  }

  to {
    transform: translate3d(8%, -6%, 0)scale(1.18);
  }
}

@keyframes bloom {
  from {
    --aurora-shift: 34%;
  }

  to {
    --aurora-shift: 66%;
  }
}

.grain {
  z-index: -1;
  pointer-events: none;
  opacity: .4;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  position: absolute;
  inset: 0;
}

.hero__status {
  color: var(--ink-2);
  background-color: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: 100px;
  align-items: center;
  gap: .8rem;
  margin-bottom: 2.4rem;
  padding: .6rem 1.4rem .6rem 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  display: inline-flex;
}

.hero__pulse {
  background-color: var(--live);
  border-radius: 50%;
  width: .8rem;
  height: .8rem;
  position: relative;
}

.hero__pulse:after {
  content: "";
  background-color: var(--live);
  border-radius: 50%;
  animation: 2.4s ease-out infinite pulse;
  position: absolute;
  inset: 0;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-weight: 700;
}

.hero__name {
  white-space: nowrap;
}

@media (width <= 37.5em) {
  .hero__name {
    white-space: normal;
  }
}

.hero__lead {
  max-width: 56ch;
  font-size: var(--fs-lead);
  color: var(--ink-2);
  margin-top: 2.4rem;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 4rem;
  display: flex;
}

@media (width <= 37.5em) {
  .hero__actions {
    margin-top: 3.2rem;
  }
}

.hero__socials {
  border-top: 1px solid var(--border);
  gap: .4rem;
  margin-top: 4rem;
  padding-top: 3.2rem;
  display: flex;
}

.hero__socials a {
  border-radius: .8rem;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  transition: color .2s, background-color .2s, transform .2s;
  display: grid;
}

.hero__socials a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.hero__socials a {
  color: var(--ink-2);
}

.hero__socials a:hover {
  color: var(--accent);
  background-color: var(--surface-2);
  transform: translateY(-2px);
}

.hero__socials svg {
  width: 2.1rem;
  height: 2.1rem;
}

@keyframes pulse {
  0% {
    opacity: .7;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(2.6);
  }
}

.scroll-hint {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color .2s;
  display: inline-flex;
  position: absolute;
  inset-block-end: 3.2rem;
  inset-inline-start: 50%;
  transform: translateX(-50%);
}

.scroll-hint:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.scroll-hint:hover {
  color: var(--accent);
}

.scroll-hint svg {
  width: 1.8rem;
  height: 1.8rem;
  animation: 2.4s ease-in-out infinite nudge;
}

@media (width <= 56.25em) {
  .scroll-hint {
    display: none;
  }
}

@keyframes nudge {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

@keyframes word-rise {
  from {
    transform: translate3d(0, 105%, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.word {
  vertical-align: bottom;
  margin-bottom: -.14em;
  padding-bottom: .14em;
  display: inline-block;
  overflow: hidden;
}

.word__in {
  display: inline-block;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-in, .word__in {
    animation-duration: .85s;
    animation-timing-function: cubic-bezier(.22, 1, .36, 1);
    animation-fill-mode: both;
    animation-delay: calc(var(--i, 0) * 70ms + .12s);
  }

  .hero-in {
    --reveal-y: 18px;
    animation-name: reveal-in;
  }

  .word__in {
    animation-name: word-rise;
  }
}

@media (prefers-reduced-motion: no-preference) and (width <= 56.25em) {
  .hero__title .word {
    overflow: visible;
  }

  .hero__title .word__in {
    --reveal-y: 18px;
    animation-name: reveal-in;
  }
}

.about__grid {
  grid-template-columns: minmax(0, 28rem) minmax(0, 1fr);
  align-items: center;
  gap: 6.4rem;
  display: grid;
}

@media (width <= 56.25em) {
  .about__grid {
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4rem;
  }
}

.about__portrait {
  width: 100%;
  max-width: 28rem;
  position: relative;
}

.about__portrait:before {
  content: "";
  background: var(--gradient);
  opacity: .9;
  border-radius: 1.2rem;
  position: absolute;
  inset: 1.6rem -1.6rem -1.6rem 1.6rem;
}

.about__portrait img {
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-lg);
  border-radius: 1.2rem;
  position: relative;
}

.about__body p {
  font-size: var(--fs-lead);
  color: var(--ink-2);
}

.about__body p + p {
  margin-top: 1.6rem;
}

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

@media (width <= 37.5em) {
  .about__stats {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

.about__stat {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 2rem;
}

@media (width <= 37.5em) {
  .about__stat {
    padding: 2rem;
  }
}

.about__stat-value {
  background-image: var(--gradient);
  color: #0000;
  background-clip: text;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  display: block;
}

.about__stat-label {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: .6rem;
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
}

#experience {
  overflow: visible;
}

.timeline {
  padding-inline-start: 4.8rem;
  position: relative;
}

@media (width <= 37.5em) {
  .timeline {
    padding-inline-start: 3.2rem;
  }
}

.timeline:before, .timeline:after {
  content: "";
  width: 2px;
  position: absolute;
  inset-block: 1.2rem 0;
  inset-inline-start: .75rem;
}

@media (width <= 37.5em) {
  .timeline:before, .timeline:after {
    inset-inline-start: .55rem;
  }
}

.timeline:before {
  background: linear-gradient(to bottom, var(--border) 0%, var(--border) 70%, transparent 100%);
}

.timeline:after {
  background: linear-gradient(to bottom, var(--accent) 0%, color-mix(in srgb, var(--accent) 45%, transparent) 100%);
  transform-origin: 50% 0;
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .timeline:after {
      animation: linear both rail-draw view();
      animation-range: entry 55% exit 45%;
    }
  }
}

.timeline__item {
  padding-bottom: 5.6rem;
  position: relative;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

@media (width <= 37.5em) {
  .timeline__item {
    padding-bottom: 4rem;
  }
}

.timeline__dot {
  background-color: var(--bg);
  border: 3px solid var(--border);
  border-radius: 50%;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  inset-block-start: 1.2rem;
  inset-inline-start: -4.8rem;
}

@media (width <= 37.5em) {
  .timeline__dot {
    border-width: 2px;
    width: 1.3rem;
    height: 1.3rem;
    inset-inline-start: -3.2rem;
  }
}

.timeline__item--current .timeline__dot {
  background: var(--gradient);
  border-color: color-mix(in srgb, var(--accent) 30%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent);
}

.role {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 2.8rem 3.2rem;
}

@media (width <= 37.5em) {
  .role {
    padding: 2rem;
  }
}

.role {
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.role:hover {
  border-color: color-mix(in srgb, var(--accent) 38%, var(--border));
  box-shadow: var(--shadow-md);
}

.role__head {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: .8rem 2rem;
  display: flex;
}

.role__title {
  font-size: 2.2rem;
  font-weight: 700;
}

@media (width <= 37.5em) {
  .role__title {
    font-size: 1.8rem;
  }
}

.role__company {
  margin-top: .6rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.role__company a {
  color: var(--accent);
  align-items: center;
  gap: .5rem;
  transition: opacity .2s;
  display: inline-flex;
}

.role__company a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.role__company a:hover {
  opacity: .75;
}

.role__company a svg {
  opacity: .65;
  width: 1.3rem;
  height: 1.3rem;
}

.role__list {
  margin-top: 1.6rem;
}

.role__list li {
  color: var(--ink-2);
  padding-inline-start: 2rem;
  position: relative;
}

.role__list li + li {
  margin-top: 1rem;
}

.role__list li:before {
  content: "";
  background-color: var(--accent);
  opacity: .8;
  border-radius: 50%;
  width: .6rem;
  height: .6rem;
  position: absolute;
  inset-block-start: .95em;
  inset-inline-start: .2rem;
}

.role__tech {
  border-top: 1px solid var(--border);
  margin-top: 2.4rem;
  padding-top: 2rem;
}

@keyframes rail-draw {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

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

@media (width <= 75em) {
  .skills__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
  }
}

@media (width <= 37.5em) {
  .skills__grid {
    grid-template-columns: 1fr;
  }
}

.skills__group {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  grid-column: span 2;
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
}

@media (width <= 37.5em) {
  .skills__group {
    padding: 2rem;
  }
}

.skills__group {
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), border-color .3s, box-shadow .3s;
}

.skills__group:before {
  content: "";
  background: var(--gradient);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  position: absolute;
  inset: 0;
}

.skills__group > * {
  position: relative;
}

.skills__group:hover {
  border-color: color-mix(in srgb, var(--accent) 38%, var(--border));
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.skills__group:hover:before {
  opacity: .05;
}

.skills__group:hover .skills__icon {
  color: #fff;
  background: var(--gradient);
  transform: rotate(-6deg)scale(1.06);
}

.skills__group:hover .skills__hint {
  opacity: 1;
  transform: none;
}

.skills__group--wide {
  grid-column: span 4;
}

.skills__group--half {
  grid-column: span 3;
}

.skills__icon {
  width: 4rem;
  height: 4rem;
  color: var(--accent);
  background-color: var(--accent-soft);
  border-radius: .8rem;
  place-items: center;
  margin-bottom: 1.6rem;
  transition: color .3s, background .3s, transform .3s cubic-bezier(.22, 1, .36, 1);
  display: grid;
}

.skills__icon svg {
  width: 2rem;
  height: 2rem;
}

.skills__group-title {
  margin-bottom: 1.6rem;
  font-size: 1.7rem;
  font-weight: 700;
}

.skills__hint {
  color: var(--ink-2);
  opacity: 0;
  margin-top: 1.6rem;
  font-size: 1.25rem;
  transition: opacity .3s, transform .3s;
  display: block;
  transform: translateY(6px);
}

@media (hover: none) {
  .skills__hint {
    opacity: 1;
    transform: none;
  }
}

@media (width <= 75em) {
  .skills__group, .skills__group--wide, .skills__group--half {
    grid-column: span 1;
  }
}

.showcase {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: start;
  gap: 5.6rem;
  display: grid;
}

@media (width <= 56.25em) {
  .showcase {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.showcase__block + .showcase__block {
  margin-top: 3.2rem;
}

.showcase__label {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
}

.showcase__text {
  color: var(--ink-2);
}

.showcase__text + .showcase__text {
  margin-top: 1.4rem;
}

.showcase__list li {
  color: var(--ink-2);
  padding-inline-start: 2.2rem;
  position: relative;
}

.showcase__list li + li {
  margin-top: 1.2rem;
}

.showcase__list li:before {
  content: "";
  background: var(--gradient);
  border-radius: 2px;
  width: .7rem;
  height: .7rem;
  position: absolute;
  inset-block-start: .85em;
  inset-inline-start: .2rem;
  rotate: 45deg;
}

.showcase__list li strong {
  color: var(--ink);
  font-weight: 600;
}

.showcase__chips {
  margin-top: 2.4rem;
}

.showcase__aside {
  position: sticky;
  inset-block-start: 10rem;
}

@media (width <= 56.25em) {
  .showcase__aside {
    position: static;
  }
}

.panel {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 2.8rem;
}

@media (width <= 37.5em) {
  .panel {
    padding: 2rem;
  }
}

.panel__title {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 2.4rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.panel__list li {
  color: var(--ink-2);
  padding-inline-start: 2.2rem;
  font-size: 1.4rem;
  position: relative;
}

.panel__list li + li {
  border-top: 1px solid var(--border);
  margin-top: 1.8rem;
  padding-top: 1.8rem;
}

.panel__list li:before {
  content: "";
  background: var(--gradient);
  border-radius: 2px;
  width: .7rem;
  height: .7rem;
  position: absolute;
  inset-block-start: .55em;
  inset-inline-start: .2rem;
  rotate: 45deg;
}

.panel__list li + li:before {
  inset-block-start: calc(1.8rem + .55em);
}

.panel__list li strong {
  color: var(--ink);
  margin-bottom: .3rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.showcase-foot {
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 5.6rem;
  padding-top: 3.2rem;
  display: flex;
}

@media (width <= 37.5em) {
  .showcase-foot {
    margin-top: 4rem;
  }
}

.showcase-foot__links {
  flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
  display: flex;
}

.showcase-foot__links a {
  color: var(--accent);
  align-items: center;
  gap: .6rem;
  font-size: 1.35rem;
  font-weight: 600;
  transition: opacity .2s;
  display: inline-flex;
}

.showcase-foot__links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.showcase-foot__links a:hover {
  opacity: .75;
}

.showcase-foot__links a svg {
  width: 1.6rem;
  height: 1.6rem;
}

.showcase-foot__stars {
  color: var(--ink-2);
  align-items: center;
  gap: .5rem;
  font-size: 1.3rem;
  font-weight: 600;
  display: inline-flex;
}

.showcase-foot__stars svg {
  color: #f59e0b;
  width: 1.5rem;
  height: 1.5rem;
}

.credentials__group + .credentials__group {
  margin-top: 5.6rem;
}

@media (width <= 37.5em) {
  .credentials__group + .credentials__group {
    margin-top: 4rem;
  }
}

.credentials__group-title {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 2.4rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.credentials__grid {
  grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
  gap: 1.6rem;
  display: grid;
}

.credential {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  flex-direction: column;
  padding: 2.4rem;
  display: flex;
}

@media (width <= 37.5em) {
  .credential {
    padding: 2rem;
  }
}

.credential {
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.credential:hover {
  border-color: color-mix(in srgb, var(--accent) 38%, var(--border));
  box-shadow: var(--shadow-sm);
}

.credential__date {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.credential__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.35;
}

.credential__issuer {
  color: var(--ink-2);
  margin-top: .8rem;
  font-size: 1.4rem;
}

.credential__skills {
  border-top: 1px solid var(--border);
  color: var(--ink-2);
  margin-top: auto;
  padding-top: 1.6rem;
  font-size: 1.3rem;
}

#contact {
  color: #fff;
  background: var(--gradient-deep);
  position: relative;
  overflow: hidden;
}

#contact:before {
  content: "";
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, #ffffff24 1px, #0000 0);
  background-size: 28px 28px;
  position: absolute;
  inset: 0;
  mask-image: radial-gradient(70% 70% at 70% 20%, #000 0%, #0000 75%);
}

.contact {
  text-align: center;
  max-width: 64rem;
  margin-inline: auto;
  position: relative;
}

.contact__eyebrow {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffffffc7;
  margin-bottom: 1.6rem;
  font-size: 1.3rem;
  font-weight: 700;
  display: inline-block;
}

.contact__text {
  font-size: var(--fs-lead);
  color: #ffffffd1;
  margin-top: 2rem;
}

.contact__actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 4rem;
  display: flex;
}
/*# sourceMappingURL=app.4a508c1d.css.map */
