@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/InterVariable.woff2?v=4.1") format("woff2");
}

:root {
  --blue-950: #06143a;
  --blue-900: #071a46;
  --blue-800: #0a2a69;
  --blue-700: #0b54e8;
  --blue-600: #1a67ff;
  --blue-100: #dfeaff;
  --blue-050: #f0f5ff;
  --yellow: #ffdd31;
  --yellow-soft: #fff3a5;
  --ink: #0a1533;
  --muted: #56627a;
  --paper: #f7f9ff;
  --white: #ffffff;
  --line: rgba(10, 21, 51, 0.16);
  --display: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1240px, calc(100vw - 64px));
  --radius: 28px;
  --shadow: 0 30px 80px rgba(5, 20, 58, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  font-optical-sizing: auto;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection,
body *::selection {
  color: var(--blue-950);
  background: var(--yellow);
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 5px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 12px 18px;
  color: var(--blue-950);
  background: var(--yellow);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.36;
}

.ambient-orb-a {
  top: 15vh;
  right: -12vw;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle at 35% 35%, rgba(72, 133, 255, 0.38), rgba(72, 133, 255, 0) 68%);
  animation: ambient-drift 18s ease-in-out infinite alternate;
}

.ambient-orb-b {
  bottom: 6vh;
  left: -16vw;
  width: 38vw;
  height: 38vw;
  background: radial-gradient(circle, rgba(255, 221, 49, 0.24), rgba(255, 221, 49, 0) 67%);
  animation: ambient-drift 22s ease-in-out -5s infinite alternate-reverse;
}

.ambient-orb-c {
  top: 52vh;
  left: 52vw;
  width: 22vw;
  height: 22vw;
  background: radial-gradient(circle, rgba(35, 104, 255, 0.12), rgba(35, 104, 255, 0) 70%);
  animation: ambient-pulse 9s ease-in-out infinite;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 39, 99, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 39, 99, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 249, 255, 0.9);
  box-shadow: 0 8px 32px rgba(5, 20, 58, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 86px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 220ms ease, min-height 220ms ease;
}

.is-scrolled .header-inner {
  min-height: 72px;
  border-color: rgba(10, 21, 51, 0.12);
}

.wordmark {
  justify-self: start;
  color: inherit;
  font-family: var(--display);
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  text-decoration: none;
}

.wordmark i {
  margin-left: 3px;
  color: var(--yellow);
  font-style: normal;
}

.is-scrolled .wordmark i {
  color: var(--blue-600);
}

.main-nav {
  display: flex;
  gap: clamp(18px, 2.5vw, 40px);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.main-nav a,
.header-contact {
  position: relative;
  color: inherit;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.is-scrolled .main-nav a::after {
  background: var(--blue-600);
}

.header-contact {
  justify-self: end;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-contact span {
  display: inline-block;
  margin-left: 5px;
  color: var(--yellow);
  transition: transform 180ms ease;
}

.is-scrolled .header-contact span {
  color: var(--blue-600);
}

.header-contact:hover span {
  transform: translate(3px, -3px);
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(31, 103, 255, 0.35), transparent 31%),
    radial-gradient(circle at 12% 82%, rgba(255, 221, 49, 0.08), transparent 29%),
    linear-gradient(135deg, var(--blue-950) 0%, #071d50 52%, #092a73 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 4%;
  right: -13%;
  width: 57vw;
  height: 57vw;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.018),
    0 0 0 160px rgba(255, 255, 255, 0.012);
  content: "";
  animation: hero-orbit 24s linear infinite;
}

.hero::after {
  position: absolute;
  bottom: -130px;
  left: 7%;
  width: 480px;
  height: 260px;
  border: 1px solid rgba(255, 221, 49, 0.16);
  border-radius: 50%;
  content: "";
  transform: rotate(-14deg);
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  gap: clamp(62px, 8vw, 126px);
  align-items: center;
  min-height: 100svh;
  padding-top: 116px;
  padding-bottom: 76px;
}

.eyebrow,
.section-label,
.project-card-top,
.timeline-role > p {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.7);
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 221, 49, 0.12);
}

.status-dot::after {
  position: absolute;
  inset: -6px;
  border: 1px solid var(--yellow);
  border-radius: inherit;
  content: "";
  animation: status-ping 2.6s ease-out infinite;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.05rem, 4.9vw, 5.25rem);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--yellow);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  width: 72%;
  height: 7px;
  background: var(--yellow);
  content: "";
  transform: rotate(-1.4deg) scaleX(0);
  transform-origin: left;
  animation: line-draw 900ms 800ms cubic-bezier(.2, .8, .2, 1) forwards;
}

.hero-intro {
  max-width: 650px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.08rem, 1.35vw, 1.3rem);
  line-height: 1.62;
}

.hero-name {
  color: var(--white);
  background: transparent;
  font-weight: 820;
  text-decoration: underline 4px var(--yellow);
  text-decoration-skip-ink: none;
  text-underline-offset: 6px;
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  color: var(--blue-950);
  background: var(--yellow);
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.13);
}

.button-primary:hover {
  background: #ffe85d;
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.18);
  transform: translate(4px, 4px);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.44);
}

.button-secondary:hover {
  color: var(--blue-950);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
}

.text-link {
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-underline-offset: 6px;
}

.text-link span {
  display: inline-block;
  margin-left: 4px;
  color: var(--yellow);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-topics {
  display: flex;
  gap: clamp(22px, 4vw, 58px);
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.hero-topics li {
  display: flex;
  gap: 11px;
  align-items: center;
}

.hero-topics i,
.section-label > i {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.hero-topics i {
  color: var(--yellow);
}

.hero-topics i::after,
.section-label > i::after {
  position: absolute;
  inset: 2px;
  background: currentColor;
  border-radius: inherit;
  content: "";
  animation: marker-pulse 2.8s ease-in-out infinite;
}

.hero-topics li:nth-child(2) i::after {
  animation-delay: -0.9s;
}

.hero-topics li:nth-child(3) i::after {
  animation-delay: -1.8s;
}

.hero-topics span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.83rem;
}

.portrait-stage {
  position: relative;
  width: min(100%, 500px);
  margin-inline: auto;
  isolation: isolate;
}

.portrait-card {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 13px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  transform: rotate(2.7deg);
  transition: transform 180ms ease-out;
}

.portrait-card::before {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  width: calc(100% - 26px);
  height: calc(100% - 74px);
  background: linear-gradient(112deg, transparent 42%, rgba(255, 255, 255, 0.18) 50%, transparent 58%);
  background-size: 260% 100%;
  content: "";
  pointer-events: none;
  animation: portrait-glint 8s ease-in-out infinite;
}

.portrait-card picture {
  display: block;
  overflow: hidden;
  background: #173263;
  aspect-ratio: 1;
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
  transition: transform 700ms cubic-bezier(.2, .8, .2, 1), filter 300ms ease;
}

.portrait-card:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.025);
}

.portrait-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 4px 2px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portrait-card figcaption span:last-child {
  color: var(--yellow);
}

.portrait-ring {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.portrait-ring::before {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
}

.portrait-ring-a {
  inset: -13% -16%;
  animation: spin 22s linear infinite;
}

.portrait-ring-a::before {
  top: 18%;
  right: 10%;
}

.portrait-ring-b {
  inset: -5% -8%;
  border-style: dashed;
  opacity: 0.48;
  animation: spin 30s linear infinite reverse;
}

.portrait-ring-b::before {
  bottom: 9%;
  left: 18%;
  width: 5px;
  height: 5px;
}

.portrait-cross {
  position: absolute;
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 1.35rem;
  animation: ambient-pulse 4s ease-in-out infinite;
}

.portrait-cross-a {
  top: -9%;
  left: -15%;
}

.portrait-cross-b {
  right: -12%;
  bottom: 10%;
  animation-delay: -2s;
}

.portrait-stamp {
  position: absolute;
  z-index: 5;
  right: -54px;
  bottom: 42px;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  color: var(--blue-950);
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 18px 46px rgba(5, 20, 58, 0.28);
  text-align: center;
  transform: rotate(-7deg);
  animation: stamp-float 5s ease-in-out infinite;
}

.portrait-stamp span {
  position: absolute;
  top: 20px;
  font-family: var(--mono);
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.portrait-stamp strong {
  padding-top: 13px;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.portrait-contact {
  position: absolute;
  z-index: 6;
  bottom: -52px;
  left: -34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 24px;
  min-width: 270px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(6, 20, 58, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 42px rgba(3, 12, 36, 0.3);
  text-decoration: none;
  backdrop-filter: blur(14px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.portrait-contact span {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.portrait-contact strong {
  grid-column: 1;
  font-size: 0.84rem;
}

.portrait-contact i {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--yellow);
  font-style: normal;
  font-size: 1.2rem;
}

.portrait-contact:hover {
  color: var(--blue-950);
  background: var(--yellow);
  transform: translateY(-4px);
}

.portrait-contact:hover span,
.portrait-contact:hover i {
  color: var(--blue-950);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 34px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 52px;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
  overflow: hidden;
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--yellow);
  content: "";
  transform: translateX(-100%);
  animation: scroll-line 2.2s ease-in-out infinite;
}

.ticker {
  color: var(--blue-950);
  background: var(--yellow);
  border-block: 1px solid rgba(5, 20, 58, 0.14);
  overflow: hidden;
  transform: rotate(-0.6deg) scale(1.02);
}

.ticker-track {
  display: flex;
  gap: 28px;
  align-items: center;
  width: max-content;
  padding: 16px 0;
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  animation: ticker-move 34s linear infinite;
}

.ticker-track i {
  font-size: 0.7rem;
  font-style: normal;
}

.section {
  position: relative;
  padding: clamp(92px, 11vw, 156px) 0;
}

.profile {
  background:
    radial-gradient(circle at 88% 18%, rgba(26, 103, 255, 0.12), transparent 27%),
    radial-gradient(circle at 8% 82%, rgba(255, 221, 49, 0.13), transparent 25%),
    var(--paper);
  isolation: isolate;
  overflow: hidden;
}

.profile::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 84, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 84, 232, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(115deg, transparent 12%, black 58%, transparent 92%);
  pointer-events: none;
}

.profile::after {
  position: absolute;
  z-index: 0;
  top: 90px;
  right: -250px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(10, 84, 232, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(10, 84, 232, 0.025), 0 0 0 116px rgba(10, 84, 232, 0.018);
  content: "";
  pointer-events: none;
}

.profile-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1.65fr);
  gap: clamp(40px, 8vw, 120px);
}

.profile-aside {
  min-width: 0;
}

.profile-aside > p {
  max-width: 150px;
  margin: 22px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.55;
  text-transform: uppercase;
}

.profile-orbit {
  position: relative;
  display: grid;
  width: 148px;
  height: 148px;
  margin-top: 76px;
  place-items: center;
}

.profile-orbit > span {
  position: relative;
  z-index: 3;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: var(--blue-950);
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(26, 103, 255, 0.08);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.profile-orbit > i {
  position: absolute;
  border: 1px solid rgba(10, 84, 232, 0.32);
  border-radius: 50%;
}

.profile-orbit > i:first-child {
  inset: 0;
  border-style: dashed;
  animation: spin 18s linear infinite;
}

.profile-orbit > i:nth-child(2) {
  top: 28px;
  right: -16px;
  bottom: 28px;
  left: -16px;
  animation: spin 13s linear infinite reverse;
}

.profile-orbit > b {
  position: absolute;
  top: 4px;
  right: 9px;
  color: var(--blue-600);
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 500;
  animation: marker-pulse 2.8s ease-in-out infinite;
}

.section-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  color: var(--muted);
}

.section-label > i {
  color: var(--blue-600);
  margin-top: 0.22em;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.56);
}

.section-label-light > i {
  color: var(--yellow);
}

.profile h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.3rem, 3.85vw, 4.05rem);
  font-weight: 850;
  letter-spacing: -0.052em;
  line-height: 1;
  text-wrap: balance;
}

.profile h2 {
  max-width: 930px;
}

.profile h2 mark {
  position: relative;
  color: var(--blue-600);
  background: transparent;
}

.profile h2 mark::after {
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: 2px;
  left: -4px;
  height: 24%;
  background: var(--yellow);
  content: "";
  transform: rotate(-1deg);
}

.profile-text {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
  max-width: 1100px;
  margin-top: 58px;
}

.profile-story {
  position: relative;
  padding-top: 23px;
  border-top: 1px solid rgba(10, 84, 232, 0.2);
}

.profile-story::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--yellow));
  content: "";
}

.profile-story:nth-child(2)::before {
  width: 82px;
}

.profile-story:nth-child(3)::before {
  width: 32px;
}

.profile-story > span {
  color: var(--blue-700);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.profile-story p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.17rem);
}

.profile-text a {
  color: var(--blue-700);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 52px;
  background: transparent;
  border: 0;
}

.profile-facts div {
  position: relative;
  min-height: 148px;
  padding: 28px;
  border: 1px solid rgba(10, 21, 51, 0.13);
  overflow: hidden;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.profile-facts div::after {
  position: absolute;
  top: -56px;
  right: -45px;
  width: 132px;
  height: 132px;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 22px currentColor;
  content: "";
  opacity: 0.07;
}

.profile-facts div:hover {
  box-shadow: 0 18px 42px rgba(5, 20, 58, 0.14);
  transform: translateY(-5px);
}

.profile-facts div:first-child {
  color: var(--white);
  background: var(--blue-950);
}

.profile-facts div:nth-child(2) {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
}

.profile-facts div:nth-child(3) {
  color: var(--blue-950);
  background: var(--yellow);
}

.profile-facts strong,
.profile-facts span {
  display: block;
}

.profile-facts strong {
  position: relative;
  z-index: 1;
  color: currentColor;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.profile-facts span {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: currentColor;
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0.68;
  text-transform: uppercase;
}

.profile-facts div:first-child strong {
  color: var(--yellow);
}

.projects {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(33, 105, 255, 0.18), transparent 28%),
    var(--blue-950);
  overflow: hidden;
}

.projects::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: -280px 0 rgba(255, 255, 255, 0.035), -560px 0 rgba(255, 255, 255, 0.035), -840px 0 rgba(255, 255, 255, 0.035);
  content: "";
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1.65fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
  margin-bottom: 68px;
}

.section-heading > div:last-child > p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.project-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
}

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.project-featured {
  min-height: 560px;
  color: var(--blue-950);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 38%),
    var(--yellow);
}

.project-audio {
  background: linear-gradient(135deg, #1558e7, #073492);
}

.project-community {
  grid-area: community;
  color: var(--ink);
  background: var(--white);
}

.project-card-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0.72;
}

.project-card-top i {
  font-size: 1.2rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.project-card:hover .project-card-top i {
  transform: translate(5px, -5px);
}

.project-card-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
  margin-top: auto;
}

.project-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.05vw, 3.3rem);
  font-weight: 850;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.project-audio h3,
.project-community h3 {
  font-size: clamp(1.95rem, 2.65vw, 2.85rem);
}

.project-card-copy p {
  max-width: 620px;
  margin: 22px 0 26px;
  opacity: 0.72;
  font-size: 0.97rem;
}

.project-card-copy a,
.timeline-detail a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.project-card-copy a span,
.timeline-detail a span {
  transition: transform 180ms ease;
}

.project-card-copy a:hover span,
.timeline-detail a:hover span {
  transform: translate(3px, -3px);
}

.project-symbol {
  position: absolute;
  top: 16%;
  right: -2%;
  display: flex;
  color: rgba(5, 20, 58, 0.07);
  font-family: var(--display);
  font-size: clamp(11rem, 21vw, 20rem);
  font-weight: 950;
  letter-spacing: -0.24em;
  line-height: 1;
  transform: rotate(-7deg);
  transition: transform 700ms cubic-bezier(.2, .8, .2, 1);
}

.project-featured:hover .project-symbol {
  transform: rotate(-3deg) scale(1.03);
}

.audio-wave {
  position: absolute;
  top: 78px;
  right: 34px;
  display: flex;
  gap: 8px;
  align-items: center;
  height: 96px;
  opacity: 0.48;
}

.audio-wave i {
  display: block;
  width: 4px;
  height: 24%;
  background: var(--yellow);
  animation: audio-wave 1.35s ease-in-out infinite alternate;
}

.audio-wave i:nth-child(2),
.audio-wave i:nth-child(8) { height: 54%; animation-delay: -0.65s; }
.audio-wave i:nth-child(3),
.audio-wave i:nth-child(7) { height: 82%; animation-delay: -0.2s; }
.audio-wave i:nth-child(4),
.audio-wave i:nth-child(6) { height: 42%; animation-delay: -0.9s; }
.audio-wave i:nth-child(5) { height: 100%; animation-delay: -0.45s; }

.audio-platforms {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 0 0 24px;
}

.audio-platforms span {
  display: grid;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.audio-platforms strong {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.95rem;
  line-height: 1.15;
}

.ecosystem-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(42px, 7vw, 100px);
  margin-top: 20px;
  padding: clamp(34px, 5vw, 70px);
  background:
    radial-gradient(circle at 82% 34%, rgba(255, 221, 49, 0.1), transparent 28%),
    linear-gradient(130deg, rgba(26, 103, 255, 0.18), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.ecosystem-panel::after {
  position: absolute;
  top: -90px;
  right: -60px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 46px rgba(255, 255, 255, 0.018), 0 0 0 92px rgba(255, 255, 255, 0.012);
}

.ecosystem-intro,
.ecosystem-data {
  position: relative;
  z-index: 2;
}

.ecosystem-kicker {
  margin: 0 0 24px;
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ecosystem-intro h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.95rem, 2.75vw, 2.9rem);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.ecosystem-intro > p:not(.ecosystem-kicker) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.ecosystem-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.ecosystem-links a {
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.ecosystem-links a:hover {
  color: var(--blue-950);
  background: var(--yellow);
  transform: translateY(-2px);
}

.network-visual {
  position: relative;
  display: grid;
  width: min(100%, 420px);
  height: 240px;
  margin: -12px auto 30px;
  place-items: center;
}

.network-core {
  position: relative;
  z-index: 3;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  color: var(--blue-950);
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(255, 221, 49, 0.08);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.network-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.network-ring-a {
  width: 250px;
  height: 150px;
  animation: network-spin 16s linear infinite;
}

.network-ring-b {
  width: 350px;
  height: 205px;
  border-style: dashed;
  opacity: 0.6;
  animation: network-spin 24s linear infinite reverse;
}

.network-node {
  position: absolute;
  z-index: 4;
  padding: 5px 7px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--blue-900);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.node-a { top: 24px; left: 21%; }
.node-b { top: 44px; right: 12%; }
.node-c { bottom: 15px; left: 46%; }
.node-d { bottom: 38px; left: 9%; }

.network-total {
  position: absolute;
  z-index: 5;
  right: -4px;
  bottom: 2px;
  display: grid;
  min-width: 116px;
  padding: 10px 12px;
  color: var(--blue-950);
  background: var(--yellow);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 8px 8px 0 rgba(26, 103, 255, 0.24);
  transform: rotate(2deg);
}

.network-total strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.network-total span {
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.reach-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.reach-card {
  --metric-accent: var(--blue-600);
  --metric-progress: 0.5;
  position: relative;
  grid-column: span 2;
  min-width: 0;
  min-height: 118px;
  padding: 17px 16px 20px;
  background: rgba(6, 20, 58, 0.78);
  background:
    radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--metric-accent) 24%, transparent), transparent 45%),
    rgba(6, 20, 58, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease;
}

.reach-card:nth-child(n + 4) {
  grid-column: span 3;
}

.reach-card:hover {
  border-color: color-mix(in srgb, var(--metric-accent) 72%, white);
  transform: translateY(-3px);
}

.reach-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--metric-accent), var(--yellow));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s 180ms cubic-bezier(.2, .8, .2, 1);
}

.reach-card::before {
  position: absolute;
  top: 15px;
  right: 16px;
  width: 8px;
  height: 8px;
  background: var(--metric-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--metric-accent) 20%, transparent);
  content: "";
  animation: marker-pulse 2.8s ease-in-out infinite;
}

.reach-card:nth-child(2)::before { animation-delay: -0.55s; }
.reach-card:nth-child(3)::before { animation-delay: -1.1s; }
.reach-card:nth-child(4)::before { animation-delay: -1.65s; }
.reach-card:nth-child(5)::before { animation-delay: -2.2s; }

.ecosystem-panel.is-visible .reach-card::after,
.no-js .reach-card::after {
  transform: scaleX(var(--metric-progress));
}

.reach-instagram { --metric-accent: var(--yellow); --metric-progress: 1; }
.reach-tiktok { --metric-accent: #53dbff; --metric-progress: 0.72; }
.reach-youtube { --metric-accent: #ff5f62; --metric-progress: 0.42; }
.reach-facebook { --metric-accent: #6b9cff; --metric-progress: 0.52; }
.reach-podcast { --metric-accent: #b899ff; --metric-progress: 0.35; }

.reach-grid strong,
.reach-grid span {
  display: block;
}

.reach-grid strong {
  margin-top: 5px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
  font-weight: 880;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.reach-grid .reach-platform {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.community-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.community-metrics > span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 60px;
  padding: 10px 11px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.community-metrics strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.community-metrics small {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.project-orbits {
  position: absolute;
  top: 52px;
  right: 40px;
  width: 130px;
  height: 130px;
  opacity: 0.26;
}

.project-orbits i {
  position: absolute;
  inset: 0;
  border: 1px solid var(--blue-700);
  border-radius: 50%;
}

.project-orbits i:nth-child(2) {
  transform: rotate(60deg) scaleX(0.38);
}

.project-orbits i:nth-child(3) {
  transform: rotate(-60deg) scaleX(0.38);
}

.career {
  background: var(--paper);
  overflow: hidden;
}

.career.section {
  padding: clamp(72px, 7.5vw, 108px) 0;
}

.career .section-heading {
  margin-bottom: 44px;
}

.career-orbit {
  position: absolute;
  top: 230px;
  right: -260px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(10, 84, 232, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(10, 84, 232, 0.025), 0 0 0 140px rgba(10, 84, 232, 0.018);
}

.career-heading {
  color: var(--ink);
}

.career-heading > div:last-child > p {
  color: var(--muted);
}

.timeline {
  position: relative;
  border-top: 1px solid var(--line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 0.48fr 0.88fr 1.64fr;
  gap: clamp(24px, 3.6vw, 52px);
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease;
}

.timeline-item::before {
  position: absolute;
  z-index: -1;
  inset: 0 -30px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(5, 20, 58, 0.06);
  content: "";
  opacity: 0;
  transform: scaleY(0.82);
  transition: opacity 220ms ease, transform 220ms ease;
}

.timeline-item:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.timeline-date {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding-top: 4px;
  color: var(--blue-700);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 900;
}

.timeline-date i {
  display: block;
  width: 24px;
  height: 1px;
  margin-top: 9px;
  background: currentColor;
}

.timeline-role > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.64rem;
}

.timeline-role h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.timeline-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.48;
}

.timeline-detail a {
  margin-top: 10px;
  color: var(--blue-700);
}

.contact {
  min-height: 670px;
  color: var(--white);
  background:
    linear-gradient(132deg, rgba(26, 103, 255, 0.18), transparent 42%),
    var(--blue-900);
  overflow: hidden;
}

.contact::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 45%, black);
}

.contact-sun {
  position: absolute;
  top: 50%;
  right: clamp(-130px, 2vw, 40px);
  width: clamp(330px, 38vw, 590px);
  height: clamp(330px, 38vw, 590px);
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255, 221, 49, 0.06), 0 0 0 68px rgba(255, 221, 49, 0.035);
  transform: translateY(-50%);
}

.contact-sun::before,
.contact-sun::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--blue-900);
  content: "";
  transform: translate(-50%, -50%);
}

.contact-sun::before {
  width: 2px;
  height: 136%;
}

.contact-sun::after {
  width: 136%;
  height: 2px;
}

.contact-lines {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 44%;
  height: 38%;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  transform: skewY(-16deg);
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact h2 {
  max-width: 880px;
  margin-top: 42px;
  font-size: clamp(2.7rem, 5vw, 5.15rem);
}

.contact h2 em {
  color: var(--yellow);
  font-style: normal;
}

.contact-email {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 46px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.contact-email span {
  color: var(--yellow);
  transition: transform 180ms ease;
}

.contact-email:hover span {
  transform: translate(5px, -5px);
}

.social-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 52px;
}

.social-links a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 12px 17px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  color: var(--blue-950);
  background: var(--yellow);
  transform: translateY(-3px);
}

.site-footer {
  color: rgba(255, 255, 255, 0.55);
  background: #030c24;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 102px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--white);
  text-decoration: none;
}

.footer-inner a span {
  color: var(--yellow);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(.2, .8, .2, 1), transform 700ms cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

@keyframes ambient-drift {
  from { transform: translate3d(-3%, -2%, 0) scale(0.96); }
  to { transform: translate3d(7%, 8%, 0) scale(1.08); }
}

@keyframes ambient-pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.9) rotate(0); }
  50% { opacity: 0.68; transform: scale(1.08) rotate(8deg); }
}

@keyframes hero-orbit {
  to { transform: rotate(360deg); }
}

@keyframes status-ping {
  0% { opacity: 0.9; transform: scale(0.4); }
  70%, 100% { opacity: 0; transform: scale(1.6); }
}

@keyframes marker-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.72); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes line-draw {
  to { transform: rotate(-1.4deg) scaleX(1); }
}

@keyframes portrait-glint {
  0%, 25% { background-position: 140% 0; }
  50%, 100% { background-position: -90% 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes stamp-float {
  0%, 100% { transform: translateY(0) rotate(-7deg); }
  50% { transform: translateY(-12px) rotate(-3deg); }
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

@keyframes ticker-move {
  to { transform: translateX(-50%); }
}

@keyframes audio-wave {
  from { transform: scaleY(0.55); }
  to { transform: scaleY(1.08); }
}

@keyframes network-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 48px, 920px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 52px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    justify-self: center;
  }

  .portrait-stamp {
    right: -24px;
    width: 112px;
    height: 112px;
  }

  .portrait-contact {
    left: -18px;
  }

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

  .timeline-item {
    grid-template-columns: 0.44fr 0.82fr 1.74fr;
    gap: 24px;
  }

  .contact-sun {
    right: -200px;
    opacity: 0.82;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .header-inner,
  .is-scrolled .header-inner {
    min-height: 70px;
  }

  .header-contact {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    justify-self: end;
    gap: 18px;
  }

  .main-nav a:nth-child(2),
  .main-nav a:nth-child(3) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 76px;
    min-height: auto;
    padding-top: 132px;
    padding-bottom: 110px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .portrait-stage {
    width: min(80vw, 520px);
  }

  .scroll-cue {
    display: none;
  }

  .profile-grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .profile-aside {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .profile-aside > p {
    grid-column: 1;
    max-width: none;
    margin-top: 10px;
  }

  .profile-orbit {
    grid-row: 1 / 3;
    grid-column: 2;
    width: 90px;
    height: 90px;
    margin: 0 18px 0 0;
  }

  .profile-orbit > span {
    width: 46px;
    height: 46px;
    font-size: 0.85rem;
  }

  .profile-orbit > i:nth-child(2) {
    top: 18px;
    right: -10px;
    bottom: 18px;
    left: -10px;
  }

  .profile-text {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

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

  .project-featured,
  .project-audio,
  .project-community {
    min-height: 520px;
  }

  .ecosystem-panel {
    grid-template-columns: 1fr;
  }

  .ecosystem-intro {
    max-width: 680px;
  }

  .timeline-item {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .timeline-detail {
    grid-column: 2;
  }

  .contact {
    min-height: 620px;
  }

  .contact-sun {
    top: auto;
    right: -180px;
    bottom: -190px;
    transform: none;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 14px 24px;
    padding: 26px 0;
  }

  .footer-inner p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16.5px;
  }

  .site-header {
    background: rgba(6, 20, 58, 0.78);
    backdrop-filter: blur(16px);
  }

  .site-header.is-scrolled {
    background: rgba(247, 249, 255, 0.92);
  }

  .main-nav {
    gap: 14px;
    font-size: 0.66rem;
  }

  .hero-grid {
    gap: 66px;
    padding-top: 116px;
    padding-bottom: 158px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.67rem;
  }

  .status-dot {
    margin-top: 3px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 11.6vw, 3.6rem);
  }

  .hero h1 em::after {
    height: 4px;
  }

  .hero-intro {
    margin-top: 28px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 32px;
  }

  .button {
    min-width: 215px;
  }

  .hero-topics {
    gap: 16px;
    justify-content: space-between;
    margin-top: 40px;
  }

  .hero-topics li {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }

  .portrait-stage {
    width: 88vw;
  }

  .portrait-stamp {
    right: -4px;
    bottom: -32px;
    width: 98px;
    height: 98px;
  }

  .portrait-stamp span {
    top: 15px;
    font-size: 0.41rem;
  }

  .portrait-stamp strong {
    font-size: 0.9rem;
  }

  .portrait-contact {
    bottom: -108px;
    left: 0;
    min-width: min(280px, 82vw);
  }

  .portrait-cross-a {
    left: -5%;
  }

  .portrait-cross-b {
    right: -3%;
  }

  .section {
    padding: 86px 0;
  }

  .career.section {
    padding: 68px 0;
  }

  .career .section-heading {
    margin-bottom: 30px;
  }

  .profile h2,
  .section-heading h2 {
    font-size: clamp(2.08rem, 9.7vw, 3.05rem);
  }

  .profile-text {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .profile-facts {
    grid-template-columns: 1fr;
  }

  .profile-facts div {
    min-height: 106px;
  }

  .project-card {
    min-height: 420px;
    padding: 25px;
  }

  .project-featured {
    min-height: 500px;
  }

  .project-audio,
  .project-community {
    min-height: 420px;
  }

  .project-symbol {
    top: 20%;
    right: 3%;
    font-size: 14rem;
  }

  .project-card h3,
  .project-audio h3,
  .project-community h3 {
    font-size: 2.12rem;
  }

  .audio-wave {
    top: 72px;
    right: 24px;
  }

  .ecosystem-panel {
    gap: 42px;
    padding: 26px;
  }

  .ecosystem-intro h3 {
    font-size: 2.02rem;
  }

  .network-visual {
    height: 205px;
    transform: scale(0.88);
  }

  .reach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reach-card,
  .reach-card:nth-child(n + 4) {
    grid-column: span 1;
    min-height: 108px;
    padding: 15px 13px 18px;
  }

  .reach-card:last-child {
    grid-column: 1 / -1;
  }

  .community-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-item {
    grid-template-columns: 0.55fr 1.45fr;
    gap: 10px 18px;
    padding: 22px 0;
  }

  .timeline-detail {
    grid-column: 1 / -1;
  }

  .timeline-item::before {
    inset: 0 -12px;
  }

  .contact {
    min-height: 650px;
  }

  .contact h2 {
    font-size: clamp(2.55rem, 11.8vw, 3.6rem);
  }

  .contact-email {
    font-size: 1.05rem;
  }

  .social-links {
    gap: 8px;
  }

  .social-links a {
    padding: 10px 12px;
    font-size: 0.66rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
