:root {
  --ink: #101624;
  --ink-2: #202838;
  --muted: #6f7b8f;
  --paper: #f7faf8;
  --paper-2: #edf6f3;
  --line: #d7e5e7;
  --deep: #061523;
  --deep-2: #0b2634;
  --teal: #16a6a3;
  --teal-2: #72d6ca;
  --mint: #dff7f2;
  --coral: #ff7b68;
  --amber: #f2b94b;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(8, 18, 29, 0.18);
  --radius: 22px;
  --mono: "SFMono-Regular", "Cascadia Mono", "Roboto Mono", Consolas, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

img,
svg {
  display: block;
}

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

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

::selection {
  background: var(--teal);
  color: var(--deep);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: 54px;
  padding: 8px;
  color: var(--white);
  background: rgba(5, 17, 29, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
  animation: header-drop 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(16, 22, 36, 0.12);
  box-shadow: 0 10px 38px rgba(8, 18, 29, 0.12);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--deep);
  font-family: var(--mono);
  font-weight: 800;
  background: var(--teal-2);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(114, 214, 202, 0.42);
  animation: mark-pulse 3.4s ease-in-out infinite;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-family: var(--mono);
  font-size: 13px;
}

.top-nav a,
.header-action {
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.top-nav a:hover,
.top-nav a.is-active,
.header-action:hover {
  opacity: 1;
}

.top-nav a.is-active::before {
  content: "[ ";
}

.top-nav a.is-active::after {
  content: " ]";
}

.header-action {
  padding: 9px 16px;
  font-family: var(--mono);
  font-size: 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.hero-section {
  position: relative;
  --spot-x: 74%;
  --spot-y: 28%;
  min-height: min(100svh, 980px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 28%, rgba(22, 166, 163, 0.24), transparent 30%),
    linear-gradient(135deg, #06111f 0%, #071b2c 46%, #0b3140 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.86;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(114, 214, 202, 0.24), transparent 28%),
    radial-gradient(circle at calc(var(--spot-x) + 12%) calc(var(--spot-y) + 16%), rgba(255, 123, 104, 0.1), transparent 24%);
  transition: background 120ms linear;
  animation: spotlight-breathe 5.8s ease-in-out infinite;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 72%, transparent);
  animation: grid-drift 18s linear infinite;
}

.arc {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.arc-one {
  top: -180px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-color: rgba(255, 255, 255, 0.46);
  animation: orbital-drift 14s ease-in-out infinite;
}

.arc-two {
  bottom: -240px;
  left: -140px;
  width: 580px;
  height: 580px;
  border-color: rgba(114, 214, 202, 0.3);
  animation: orbital-drift 18s ease-in-out infinite reverse;
}

.signal-line {
  position: absolute;
  overflow: hidden;
  width: 2px;
  height: 52%;
  background: linear-gradient(to bottom, transparent, rgba(114, 214, 202, 0.44), transparent);
  transform: rotate(12deg);
}

.signal-line::after {
  content: "";
  position: absolute;
  inset: -34% 0 auto;
  height: 34%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.92), transparent);
  animation: signal-scan 4.6s ease-in-out infinite;
}

.line-one {
  left: 18%;
  top: 12%;
}

.line-two {
  right: 32%;
  bottom: -8%;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 64px;
  width: min(1180px, calc(100% - 48px));
  min-height: min(100svh, 980px);
  margin: 0 auto;
  padding: 126px 0 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal-2);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--mono);
  font-size: 86px;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 0 0 rgba(114, 214, 202, 0);
  animation: hero-rise 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both;
}

.hero-copy h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotateX(64deg);
  transform-origin: 50% 80%;
  animation: letter-pop 680ms cubic-bezier(0.2, 0.86, 0.22, 1) both;
  animation-delay: calc(160ms + (var(--char-index) * 72ms));
}

.hero-copy h1 .char:nth-child(2n) {
  color: rgba(255, 255, 255, 0.92);
}

.hero-role {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 22px;
  font-weight: 700;
  animation: hero-rise 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 260ms both;
}

.hero-summary {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.hero-pills,
.tag-cloud,
.ecosystem-grid,
.contact-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.hero-pills span {
  padding: 9px 14px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-actions {
  margin-top: 42px;
  animation: hero-rise 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 400ms both;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
  will-change: transform;
}

.button::after,
.contact-link::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -70%;
  width: 54%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(0) skewX(-20deg);
  transition: transform 520ms ease;
}

.button:hover::after,
.contact-link:hover::after {
  transform: translateX(360%) skewX(-20deg);
}

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

.button.primary {
  color: var(--deep);
  background: var(--teal-2);
  border: 1px solid var(--teal-2);
  box-shadow: 0 16px 36px rgba(22, 166, 163, 0.28);
}

.button.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.button.ghost.light {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(255, 255, 255, 0.9);
}

.button:hover {
  transform: translateY(-3px);
}

.button.primary:hover {
  box-shadow: 0 20px 44px rgba(114, 214, 202, 0.34);
}

.button svg {
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translate(2px, -2px);
}

.hero-card {
  position: relative;
  display: grid;
  gap: 22px;
  justify-items: center;
  animation: hero-rise 820ms cubic-bezier(0.2, 0.8, 0.2, 1) 320ms both;
}

.avatar-frame {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  animation: avatar-float 6.5s ease-in-out infinite;
  transition: box-shadow 240ms ease, filter 240ms ease;
}

.avatar-frame:hover {
  filter: saturate(1.08);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42), 0 0 42px rgba(114, 214, 202, 0.18);
}

.avatar-frame::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px dashed rgba(114, 214, 202, 0.36);
  border-radius: 50%;
  animation: slow-spin 26s linear infinite;
}

.avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.console-panel {
  width: min(420px, 100%);
  padding: 22px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(4, 14, 25, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(18px);
}

.console-topline,
.mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.console-topline {
  justify-content: space-between;
  color: var(--teal-2);
}

.live-dot::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: #39ff72;
  border-radius: 50%;
  box-shadow: 0 0 16px #39ff72;
}

.console-panel p {
  margin: 18px 0;
}

.mini-grid span {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 44px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  animation: ticker 36s linear infinite;
}

.ticker-track span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 12px 1px 0;
  background: var(--teal-2);
  border-radius: 50%;
}

.stats-band {
  position: relative;
  z-index: 22;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, calc(100% - 40px));
  margin: -44px auto 0;
}

.stat-card {
  position: relative;
  overflow: hidden;
  min-height: 122px;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--teal);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(8, 18, 29, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 34%, rgba(22, 166, 163, 0.09) 48%, transparent 62%);
  transform: translateX(-120%);
}

.stat-card.is-visible::after {
  animation: stat-sheen 920ms ease 260ms both;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 166, 163, 0.36);
  box-shadow: 0 24px 66px rgba(8, 18, 29, 0.12);
}

.stat-card strong {
  display: block;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.content-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 0;
}

.experience-section {
  padding-bottom: 112px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
}

.about-section .side-column {
  max-width: 820px;
  padding: 28px 0 8px;
}

.section-kicker {
  position: relative;
  overflow: hidden;
  width: 34px;
  height: 6px;
  margin-bottom: 14px;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(22, 166, 163, 0.2);
}

.section-kicker::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: translateX(-110%);
  animation: kicker-sheen 3.8s ease-in-out infinite;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
}

.side-column p,
.section-heading p,
.foundation-card p,
.contact-panel p,
.feature-card p {
  color: var(--ink-2);
}

.side-column p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.8;
}

.strength-grid {
  display: grid;
  gap: 18px;
}

.feature-card,
.foundation-card,
.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.feature-card h3,
.foundation-card h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 20px;
}

.tag-cloud span,
.ecosystem-grid span {
  padding: 8px 12px;
  color: #24646c;
  font-size: 13px;
  font-weight: 800;
  background: #e7f9f5;
  border: 1px solid #b9e7e2;
  border-radius: 999px;
}

.feature-card-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 123, 104, 0.16), transparent 38%),
    var(--deep);
  border-color: rgba(255, 255, 255, 0.12);
}

.feature-card-dark h3,
.feature-card-dark p {
  color: var(--white);
}

.map-section {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 54px;
}

.ecosystem-grid {
  align-content: start;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.section-heading p {
  max-width: 560px;
  margin: 0;
}

.timeline {
  position: relative;
  --timeline-progress: 0;
  display: grid;
  gap: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.timeline::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--teal), var(--teal-2), var(--line));
  transform: scaleY(var(--timeline-progress));
  transform-origin: top;
  will-change: transform;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 24px;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  width: 21px;
  height: 21px;
  margin-top: 6px;
  background: var(--teal);
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--teal);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.timeline-marker::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(22, 166, 163, 0.18);
  border-radius: 50%;
  transform: scale(0.72);
  opacity: 0;
}

.timeline-item.is-visible .timeline-marker::after {
  animation: marker-ping 1.8s ease-out 1;
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.16);
  box-shadow: 0 0 0 1px var(--teal), 0 0 0 8px rgba(22, 166, 163, 0.12);
}

.timeline-body {
  padding-bottom: 8px;
  transition: transform 220ms ease;
}

.timeline-item:hover .timeline-body {
  transform: translateX(4px);
}

.timeline-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.timeline-head h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.social-icon-link {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--teal);
  background: #e7f9f5;
  border: 1px solid #b9e7e2;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.social-icon-link svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.social-icon-link:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px) rotate(-6deg);
}

.timeline-head p {
  margin: 4px 0 0;
  color: var(--teal);
  font-weight: 900;
}

.timeline-head span {
  flex: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.timeline ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-2);
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

.projects-section {
  padding-top: 92px;
}

.project-list {
  border-top: 1px solid var(--line);
}

.project-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 220ms ease, transform 220ms ease;
}

.project-row:hover {
  transform: translateX(6px);
}

.project-row > span,
.project-row strong {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.project-row strong {
  color: var(--teal);
}

.project-row:nth-child(1) strong,
.project-row:nth-child(3) strong {
  color: var(--coral);
}

.project-row:nth-child(2) strong {
  color: var(--amber);
}

.project-row h3 {
  margin: 0;
  font-size: 22px;
  text-transform: uppercase;
}

.project-row p {
  margin: 6px 0 0;
  color: var(--muted);
}

.foundation-section {
  padding-top: 70px;
}

.foundation-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0fbf8 100%);
}

.foundation-card p {
  max-width: 840px;
}

.foundation-card strong {
  color: var(--teal);
}

.contact-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(114, 214, 202, 0.22), transparent 42%),
    linear-gradient(135deg, var(--deep) 0%, #123542 100%);
  background-size: 160% 160%, 100% 100%;
  border: 0;
  box-shadow: var(--shadow);
  animation: contact-gradient 10s ease-in-out infinite;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, 0.08) 46%, transparent 58%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 220% 100%, 100% 56px;
  opacity: 0.8;
  animation: panel-sheen 7s ease-in-out infinite;
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-panel h2 {
  max-width: 780px;
  color: var(--white);
  font-size: 40px;
  text-transform: none;
}

.contact-label {
  margin: 0 0 18px;
  color: var(--teal-2);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-actions {
  margin-top: 30px;
}

.contact-link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  color: var(--deep);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.contact-link:hover,
.contact-link.is-copied {
  color: var(--deep);
  background: var(--teal-2);
  border-color: var(--teal-2);
  transform: translateY(-2px);
}

.contact-link:hover .contact-icon,
.contact-link.is-copied .contact-icon {
  transform: rotate(-8deg) scale(1.06);
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon .solid {
  fill: currentColor;
  stroke: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 56px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.site-footer a {
  color: var(--teal);
  transition: color 180ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.stats-band .reveal:nth-child(2),
.timeline .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.stats-band .reveal:nth-child(3),
.timeline .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.stats-band .reveal:nth-child(4),
.timeline .reveal:nth-child(4) {
  transition-delay: 240ms;
}

.timeline .reveal:nth-child(n + 5) {
  transition-delay: 120ms;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translate(-50%, -18px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 72px 72px, 72px 72px;
  }
}

@keyframes orbital-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -14px, 0) scale(1.04);
  }
}

@keyframes signal-scan {
  0% {
    transform: translateY(-130%);
    opacity: 0;
  }

  18%,
  68% {
    opacity: 1;
  }

  100% {
    transform: translateY(430%);
    opacity: 0;
  }
}

@keyframes mark-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(114, 214, 202, 0.34);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(114, 214, 202, 0);
  }
}

@keyframes avatar-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1.2deg);
  }
}

@keyframes kicker-sheen {
  0%,
  42% {
    transform: translateX(-120%);
  }

  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes contact-gradient {
  0%,
  100% {
    background-position: 0% 50%, center;
  }

  50% {
    background-position: 100% 50%, center;
  }
}

@keyframes panel-sheen {
  0%,
  42% {
    background-position: -140% 0, 0 0;
  }

  72%,
  100% {
    background-position: 140% 0, 0 0;
  }
}

@keyframes spotlight-breathe {
  0%,
  100% {
    opacity: 0.74;
  }

  50% {
    opacity: 0.96;
  }
}

@keyframes letter-pop {
  0% {
    opacity: 0;
    transform: translateY(30px) rotateX(64deg);
    filter: blur(6px);
  }

  70% {
    opacity: 1;
    transform: translateY(-3px) rotateX(0deg);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
    filter: blur(0);
  }
}

@keyframes stat-sheen {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@keyframes marker-ping {
  0% {
    opacity: 0.6;
    transform: scale(0.72);
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::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;
  }

  .timeline {
    --timeline-progress: 1;
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 12px;
    width: min(720px, calc(100% - 24px));
  }

  .header-action {
    display: none;
  }

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

  .top-nav {
    justify-content: end;
    gap: 18px;
  }

  .hero-shell,
  .split-section,
  .map-section {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    gap: 46px;
    padding-top: 112px;
  }

  .hero-copy h1 {
    font-size: 66px;
  }

  .hero-role {
    font-size: 20px;
  }

  .hero-summary {
    font-size: 17px;
  }

  .hero-card {
    justify-items: start;
  }

  .avatar-frame,
  .console-panel {
    max-width: 380px;
  }

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

@media (max-width: 680px) {
  .site-header {
    min-height: 50px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .top-nav {
    justify-content: center;
    gap: 12px;
    font-size: 12px;
  }

  .line-one {
    display: none;
  }

  .line-two {
    opacity: 0.34;
  }

  .arc-one {
    top: -230px;
    right: -300px;
  }

  .arc-two {
    left: -280px;
    opacity: 0.7;
  }

  .hero-shell,
  .content-section,
  .stats-band,
  .contact-section,
  .site-footer {
    width: min(100% - 28px, 1120px);
  }

  .hero-shell {
    gap: 32px;
    padding-top: 96px;
    padding-bottom: 64px;
  }

  .hero-copy h1 {
    font-size: 50px;
  }

  .hero-role {
    font-size: 17px;
  }

  .hero-summary,
  .side-column p {
    font-size: 15px;
  }

  .hero-role,
  .hero-summary {
    max-width: 330px;
  }

  .hero-card {
    justify-items: center;
  }

  .avatar-frame {
    width: min(280px, 100%);
  }

  .console-panel {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .hero-pills span {
    font-size: 11px;
  }

  .hero-pills {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-pills span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    text-align: center;
  }

  .stats-band {
    grid-template-columns: 1fr;
    margin-top: -18px;
  }

  .stat-card {
    min-height: auto;
  }

  .content-section {
    padding-top: 64px;
  }

  .experience-section {
    padding-bottom: 76px;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 16px;
  }

  .timeline-head {
    display: block;
  }

  .timeline-head h3 {
    font-size: 21px;
  }

  .timeline-head span {
    display: block;
    margin-top: 8px;
  }

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

  .project-row strong {
    grid-column: 2;
  }

  .contact-panel {
    padding: 26px 22px;
  }

  .contact-panel h2 {
    font-size: 30px;
  }

  .contact-link {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }
}
