:root {
  color-scheme: dark;
  --bg: #090611;
  --bg-deep: #050309;
  --surface: rgba(20, 14, 34, 0.62);
  --surface-strong: rgba(25, 18, 42, 0.86);
  --text: #f8f4ff;
  --muted: #b5abc4;
  --faint: #7d708d;
  --line: rgba(225, 210, 255, 0.14);
  --purple: #9c72ff;
  --purple-bright: #c5a9ff;
  --lilac: #e1d2ff;
  --pink: #f09cff;
  --blue: #7b9cff;
  --mint: #81f3c5;
  --max-width: 1240px;
  --font-display: "Sora", ui-sans-serif, sans-serif;
  --font-wordmark: "Manrope", ui-sans-serif, sans-serif;
  --font-body: "Manrope", ui-sans-serif, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mouse-x: 50vw;
  --mouse-y: 30vh;
}

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

html {
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  background: var(--bg-deep);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(120, 72, 221, 0.17), transparent 43rem),
    linear-gradient(180deg, var(--bg) 0%, #0b0712 48%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 10;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 0.55px, transparent 0.55px);
  background-size: 5px 5px;
  opacity: 0.12;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--purple-bright); outline-offset: 5px; }
h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
::selection { background: rgba(197, 169, 255, 0.32); color: white; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  color: #160c26;
  background: var(--lilac);
  font-size: 0.75rem;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

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

.ambient { overflow: hidden; }

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.32;
  will-change: transform;
}

.ambient-orb-one {
  top: -16rem;
  left: 45%;
  width: 36rem;
  height: 36rem;
  background: #6d3de1;
  animation: drift-one 18s ease-in-out infinite alternate;
}

.ambient-orb-two {
  top: 45%;
  left: -15rem;
  width: 32rem;
  height: 32rem;
  background: #7138c4;
  opacity: 0.17;
  animation: drift-two 23s ease-in-out infinite alternate;
}

.ambient-orb-three {
  right: -16rem;
  bottom: -12rem;
  width: 38rem;
  height: 38rem;
  background: #3e5cc9;
  opacity: 0.15;
  animation: drift-three 25s ease-in-out infinite alternate;
}

.pointer-light {
  z-index: 0;
  background: radial-gradient(380px circle at var(--mouse-x) var(--mouse-y), rgba(172, 128, 255, 0.085), transparent 70%);
}

.nav-wrap {
  position: fixed;
  top: 1.2rem;
  left: 0;
  z-index: 50;
  width: 100%;
  padding-inline: 1rem;
  pointer-events: none;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(780px, 100%);
  min-height: 62px;
  margin-inline: auto;
  padding: 0.45rem 0.55rem 0.45rem 1.2rem;
  border: 1px solid rgba(225, 210, 255, 0.12);
  border-radius: 999px;
  background: rgba(12, 8, 21, 0.54);
  box-shadow: 0 18px 65px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  pointer-events: auto;
  transition: width 450ms var(--ease), background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.nav-shell.is-scrolled {
  width: min(690px, 100%);
  border-color: rgba(225, 210, 255, 0.2);
  background: rgba(12, 8, 21, 0.82);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
}

.logo {
  width: max-content;
  font-family: var(--font-wordmark);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.logo span { color: var(--purple-bright); }

.nav-links {
  display: flex;
  gap: 1.7rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-links a,
.site-footer nav a { transition: color 180ms ease; }
.nav-links a:hover,
.site-footer nav a:hover { color: white; }

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  color: #180e26;
  background: var(--lilac);
  font-size: 0.72rem;
  font-weight: 700;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.nav-cta:hover {
  background: white;
  box-shadow: 0 8px 30px rgba(197, 169, 255, 0.2);
  transform: translateY(-1px);
}

main,
.site-footer {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), calc(100% - 48px));
  margin-inline: auto;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 0 4rem;
  isolation: isolate;
}

.hero-wordmark {
  display: flex;
  justify-content: center;
  margin-left: 0;
  overflow: visible;
  font-family: var(--font-wordmark);
  font-size: clamp(8rem, 25vw, 20rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.hero-wordmark span {
  display: inline-block;
  color: #fff;
  will-change: transform, opacity;
}

.hero-wordmark .wordmark-dot {
  color: var(--purple-bright);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 540px) auto;
  align-items: center;
  justify-content: center;
  gap: clamp(3rem, 11vw, 9rem);
  margin-top: 3.5rem;
}

.hero-bottom p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.hero-bottom em {
  color: var(--text);
  font-style: normal;
}

.round-link {
  position: relative;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(225, 210, 255, 0.24);
  border-radius: 50%;
  color: var(--lilac);
  background: rgba(156, 114, 255, 0.07);
  font-size: 0.68rem;
  font-weight: 700;
  overflow: hidden;
  transition: color 280ms ease, border-color 280ms ease, transform 350ms var(--ease);
}

.round-link::before {
  position: absolute;
  inset: 100% 0 0;
  content: "";
  background: var(--lilac);
  transition: inset 350ms var(--ease);
}

.round-link span,
.round-link i { position: relative; z-index: 1; }
.round-link i { position: absolute; right: 1.25rem; bottom: 1rem; font-style: normal; }
.round-link:hover { color: #160c26; border-color: var(--lilac); transform: rotate(4deg) scale(1.04); }
.round-link:hover::before { inset: 0; }

.hero-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(90vw, 900px);
  aspect-ratio: 1;
  opacity: 0.32;
  transform: translate(-50%, -52%);
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(197, 169, 255, 0.18);
  border-radius: 50%;
  transform: rotate(-16deg) scaleY(0.35);
}

.orbit-ring-two { inset: 5%; transform: rotate(19deg) scaleY(0.42); opacity: 0.55; }

.orbit-dot {
  position: absolute;
  top: 48%;
  left: 10%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 20px var(--pink);
  animation: orbit-dot 12s linear infinite;
}

.orbit-dot-two {
  top: 35%;
  left: 82%;
  background: var(--blue);
  box-shadow: 0 0 20px var(--blue);
  animation: orbit-dot-two 15s linear infinite reverse;
}

[data-intro] {
  opacity: 0;
  transform: translateY(28px);
}

.is-ready [data-intro] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 950ms var(--ease), transform 1100ms var(--ease);
  transition-delay: calc(var(--intro-delay, 0) * 80ms);
}

.is-ready [data-intro="1"] { --intro-delay: 1; }
.is-ready [data-intro="2"] { --intro-delay: 2; }
.is-ready [data-intro="3"] { --intro-delay: 3; }
.is-ready [data-intro="4"] { --intro-delay: 4; }
.is-ready [data-intro="5"] { --intro-delay: 5; }
.is-ready [data-intro="6"] { --intro-delay: 7; }
.is-ready [data-intro="7"] { --intro-delay: 8; }

.ticker {
  position: relative;
  left: 50%;
  width: 100vw;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(156, 114, 255, 0.035);
  transform: translateX(-50%);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.2rem;
  min-height: 66px;
  color: rgba(225, 210, 255, 0.58);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: ticker 28s linear infinite;
}

.ticker-track i { color: var(--purple); font-style: normal; }

.work-section,
.about-section {
  padding: clamp(7rem, 13vw, 11rem) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.55fr 1.2fr 0.8fr;
  align-items: end;
  gap: 3rem;
  margin-bottom: 4rem;
}

.section-label {
  align-self: start;
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label span { margin-right: 0.8rem; color: var(--purple-bright); }

.section-intro h2,
.about-heading h2,
.closing-section h2 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.section-summary {
  max-width: 390px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

.project-list { display: grid; gap: 1.2rem; }

.project-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  grid-template-rows: auto 1fr;
  min-height: 620px;
  padding: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(39, 26, 62, 0.7), rgba(14, 10, 24, 0.72)),
    var(--surface);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: perspective(1400px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 220ms ease-out;
  will-change: transform;
}

.dash-card {
  background: linear-gradient(145deg, rgba(23, 27, 58, 0.72), rgba(13, 9, 23, 0.78));
}

.project-card:hover {
  border-color: rgba(197, 169, 255, 0.28);
  box-shadow: 0 45px 130px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.card-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(500px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(183, 145, 255, 0.13), transparent 56%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.project-card:hover .card-glow { opacity: 1; }

.project-head,
.project-info,
.project-art { position: relative; z-index: 1; }

.project-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.15rem 0.25rem 1.2rem;
  color: var(--faint);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-head > span { color: var(--purple-bright); }

.live-chip { display: inline-flex; align-items: center; gap: 0.5rem; }
.live-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px rgba(129, 243, 197, 0.7); }
.coming-chip { display: inline-flex; align-items: center; gap: 0.5rem; }
.coming-chip i {
  width: 6px;
  height: 6px;
  border: 1px solid #8ac5ff;
  border-radius: 50%;
  background: #3c8dff;
  box-shadow: 0 0 12px rgba(72, 145, 255, 0.7);
}

.project-art {
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(225, 210, 255, 0.09);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(140, 90, 255, 0.19), transparent 35%),
    rgba(8, 5, 15, 0.47);
  transform: translateZ(14px);
}

.project-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4.5rem);
  transform: translateZ(22px);
}

.project-info h3 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.7rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.93;
}

.project-info p {
  max-width: 460px;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.project-info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 2.2rem;
}

.project-info li {
  padding: 0.48rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.62rem;
}

.project-actions { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.2rem; }
.project-actions a,
.about-copy a {
  color: var(--lilac);
  font-size: 0.72rem;
  font-weight: 700;
}

.project-actions a span,
.about-copy a span { display: inline-block; transition: transform 180ms ease; }
.project-actions a:hover span,
.about-copy a:hover span { transform: translate(3px, -3px); }

.buffer-art::before,
.dash-art::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(225, 210, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 210, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.buffer-art {
  background:
    radial-gradient(circle at 50% 47%, rgba(139, 85, 244, 0.17), transparent 37%),
    linear-gradient(145deg, rgba(25, 15, 42, 0.58), rgba(8, 5, 15, 0.68));
}

.buffer-console {
  position: relative;
  z-index: 4;
  width: min(48%, 340px);
  min-width: 270px;
  min-height: 190px;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(225, 210, 255, 0.23);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(53, 31, 85, 0.72), rgba(17, 11, 29, 0.92)),
    rgba(17, 10, 29, 0.9);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36), 0 0 65px rgba(139, 85, 244, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  animation: console-float 7s ease-in-out infinite;
}

.console-top,
.console-response,
.console-tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.console-top {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(225, 210, 255, 0.1);
  color: var(--text);
  font-size: 0.69rem;
  font-weight: 700;
}

.console-top > span { display: flex; align-items: center; gap: 0.5rem; }
.console-top i,
.console-response i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 11px rgba(129, 243, 197, 0.65); }
.console-top small { color: var(--mint); font-size: 0.5rem; font-weight: 600; text-transform: uppercase; }

.console-command {
  margin-top: 1rem;
  padding: 0.75rem;
  border: 1px solid rgba(225, 210, 255, 0.1);
  border-radius: 10px;
  color: #c9bfd7;
  background: rgba(6, 4, 12, 0.38);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.64rem;
}

.console-command span { margin-right: 0.45rem; color: var(--purple-bright); }
.console-command strong { color: var(--mint); font-weight: 500; }

.console-response { margin-top: 0.75rem; color: var(--muted); font-size: 0.54rem; }
.console-response span { margin-right: auto; }
.console-response em { color: var(--purple-bright); font-style: normal; }
.console-tags { justify-content: flex-start; margin-top: 0.9rem; }
.console-tags span { padding: 0.3rem 0.45rem; border: 1px solid rgba(225, 210, 255, 0.1); border-radius: 999px; color: var(--faint); font-size: 0.47rem; }

.console-scan {
  position: absolute;
  top: -20%;
  right: 0;
  left: 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(197, 169, 255, 0.07), transparent);
  animation: console-scan 5s ease-in-out infinite;
  pointer-events: none;
}

.signal-node {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: auto;
  min-width: 76px;
  height: 42px;
  padding: 0 0.75rem;
  border: 1px solid rgba(225, 210, 255, 0.2);
  border-radius: 999px;
  color: var(--lilac);
  background: rgba(22, 14, 37, 0.82);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  cursor: help;
  font-family: var(--font-body);
  font-size: 0.61rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
  appearance: none;
  animation: node-float 6s ease-in-out infinite;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.signal-node::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 8px rgba(197, 169, 255, 0.55);
  content: "";
}

.signal-node:hover,
.signal-node:focus,
.signal-node:focus-visible {
  z-index: 12;
  border-color: rgba(197, 169, 255, 0.52);
  background: rgba(50, 32, 80, 0.96);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.36), 0 0 22px rgba(156, 114, 255, 0.18);
  outline: none;
}

.node-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 185px;
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(225, 210, 255, 0.2);
  border-radius: 11px;
  color: #ddd3e9;
  background: rgba(12, 8, 21, 0.97);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  font-size: 0.59rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 7px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 220ms var(--ease), visibility 180ms ease;
}

.node-tip-left .node-popover { left: 0; transform: translate(0, 7px); }
.node-tip-right .node-popover { right: 0; left: auto; transform: translate(0, 7px); }
.node-tip-up .node-popover { top: auto; bottom: calc(100% + 10px); transform: translate(-50%, -7px); }
.node-tip-left.node-tip-up .node-popover,
.node-tip-right.node-tip-up .node-popover { transform: translate(0, -7px); }

.signal-node:hover .node-popover,
.signal-node:focus .node-popover,
.signal-node:focus-visible .node-popover {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

.node-tip-left:hover .node-popover,
.node-tip-left:focus .node-popover,
.node-tip-left:focus-visible .node-popover,
.node-tip-right:hover .node-popover,
.node-tip-right:focus .node-popover,
.node-tip-right:focus-visible .node-popover { transform: translate(0, 0); }

.node-one { top: 12%; left: 8%; animation-delay: -1s; }
.node-two { top: 17%; right: 7%; animation-delay: -3.5s; }
.node-three { bottom: 16%; left: 12%; animation-delay: -5s; }
.node-four { right: 11%; bottom: 10%; animation-delay: -2s; }
.node-five { top: 6%; left: 51%; margin-left: -42px; animation-delay: -4.5s; }
.node-six { top: 46%; left: 3%; animation-delay: -2.7s; }
.node-seven { top: 43%; right: 3%; animation-delay: -5.5s; }
.node-eight { bottom: 5%; left: 47%; margin-left: -38px; animation-delay: -0.5s; }

.signal-path {
  position: absolute;
  z-index: 1;
  width: 29%;
  height: 1px;
  overflow: visible;
  background: linear-gradient(90deg, transparent, rgba(197, 169, 255, 0.22), transparent);
  transform-origin: center;
}

.signal-path::after {
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 9px rgba(197, 169, 255, 0.7);
  content: "";
  animation: packet-travel 3.2s linear infinite;
}

.path-one { top: 29%; left: 18%; transform: rotate(23deg); }
.path-two { top: 30%; right: 17%; transform: rotate(-25deg); }
.path-three { top: 50%; left: 9%; width: 34%; transform: rotate(5deg); }
.path-four { top: 48%; right: 9%; width: 34%; transform: rotate(-6deg); }
.path-five { bottom: 27%; left: 18%; transform: rotate(-24deg); }
.path-six { right: 18%; bottom: 25%; transform: rotate(25deg); }
.path-seven { top: 17%; left: 43%; width: 20%; transform: rotate(90deg); }
.path-eight { bottom: 15%; left: 41%; width: 20%; transform: rotate(90deg); }
.path-two::after,
.path-four::after,
.path-six::after,
.path-eight::after { animation-direction: reverse; }
.path-two::after { animation-delay: -0.8s; }
.path-three::after { animation-delay: -1.4s; }
.path-four::after { animation-delay: -2.2s; }
.path-five::after { animation-delay: -0.4s; }
.path-six::after { animation-delay: -1.8s; }
.path-seven::after { animation-delay: -2.6s; }
.path-eight::after { animation-delay: -1.1s; }

.cloud-card {
  background:
    linear-gradient(145deg, rgba(16, 43, 53, 0.82), rgba(8, 15, 25, 0.88)),
    var(--surface);
}

.cloud-card .card-glow {
  background: radial-gradient(520px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(142, 219, 231, 0.16), transparent 58%);
}

.cloud-card .project-head > span { color: #8ad6b1; }

.cloud-art {
  isolation: isolate;
  background:
    radial-gradient(ellipse at 90% 12%, rgba(71, 159, 181, 0.21), transparent 42%),
    radial-gradient(ellipse at 9% 90%, rgba(40, 99, 119, 0.16), transparent 38%),
    #071018;
}

.cloud-art::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image:
    linear-gradient(rgba(142, 219, 231, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 219, 231, 0.075) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.38;
  mask-image: linear-gradient(145deg, black, transparent 76%);
}

.cloud-haze {
  position: absolute;
  z-index: 0;
  display: block;
  width: 70%;
  height: 42%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(111, 210, 226, 0.35), transparent 30%),
    radial-gradient(ellipse at 53% 38%, rgba(67, 151, 174, 0.31), transparent 36%),
    radial-gradient(ellipse at 82% 60%, rgba(48, 126, 148, 0.28), transparent 32%);
  filter: blur(48px);
  mix-blend-mode: screen;
  opacity: 0.62;
  pointer-events: none;
  animation: cloud-haze-drift 13s ease-in-out infinite alternate;
}

.cloud-haze-one { top: -10%; right: -18%; }
.cloud-haze-two {
  bottom: -14%;
  left: -22%;
  opacity: 0.42;
  animation-direction: alternate-reverse;
  animation-duration: 16s;
}

.cloud-preview {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(90%, 620px);
  min-height: 360px;
  padding: 1.15rem;
  grid-template-rows: auto 1fr auto;
  border: 1px solid rgba(142, 219, 231, 0.27);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(18, 39, 53, 0.88), rgba(7, 16, 24, 0.94)),
    #0b1721;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px) saturate(1.15);
  animation: cloud-preview-float 8s ease-in-out infinite;
}

.cloud-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(142, 219, 231, 0.14);
}

.cloud-wordmark {
  color: #eef4f3;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.cloud-wordmark em { color: #82949e; font-style: normal; font-weight: 500; }

.cloud-mini-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #b7c4c9;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.38rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cloud-mini-nav i { font-style: normal; }

.cloud-preview-main {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(170px, 0.78fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem 0 0.85rem;
}

.cloud-headline {
  display: grid;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.1vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.cloud-headline span,
.cloud-headline strong { display: block; }
.cloud-headline strong { color: #8edbe7; font-weight: 500; }

.cloud-lede {
  max-width: 15rem;
  margin: 0.75rem 0 0;
  color: #b7c4c9;
  font-size: 0.48rem;
  line-height: 1.55;
}

.cloud-fineprint {
  display: block;
  margin-top: 0.7rem;
  color: #71838c;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.34rem;
}

.cloud-uploader {
  padding: 0.8rem;
  border: 1px solid rgba(142, 219, 231, 0.24);
  border-radius: 10px;
  background: rgba(6, 15, 23, 0.76);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.cloud-uploader-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}

.cloud-uploader-head > span { display: grid; gap: 0.18rem; }
.cloud-uploader-head i {
  color: #8edbe7;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.31rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cloud-uploader-head strong {
  color: #eef4f3;
  font-size: 0.65rem;
  font-weight: 600;
}
.cloud-uploader-head small {
  padding: 0.24rem 0.35rem;
  border: 1px solid rgba(241, 201, 122, 0.25);
  border-radius: 999px;
  color: #f1c97a;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.28rem;
}

.cloud-drop-zone {
  display: flex;
  min-height: 105px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(142, 219, 231, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(rgba(142, 219, 231, 0.025), rgba(142, 219, 231, 0.01)),
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(142, 219, 231, 0.018) 12px 13px);
}

.cloud-drop-zone b {
  display: grid;
  width: 28px;
  height: 28px;
  margin-bottom: 0.45rem;
  place-items: center;
  border: 1px solid rgba(142, 219, 231, 0.31);
  border-radius: 50%;
  color: #8edbe7;
  font-size: 1rem;
  font-weight: 400;
}
.cloud-drop-zone strong { color: #eef4f3; font-size: 0.47rem; }
.cloud-drop-zone span { margin-top: 0.18rem; color: #91a2aa; font-size: 0.4rem; }

.cloud-cli {
  display: grid;
  gap: 0.45rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(142, 219, 231, 0.15);
  border-radius: 8px;
  background: rgba(3, 10, 16, 0.72);
}

.cloud-cli-label {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: #91a2aa;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.31rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.cloud-cli-label i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8ad6b1;
  box-shadow: 0 0 9px rgba(138, 214, 177, 0.55);
}
.cloud-cli code {
  overflow: hidden;
  color: #eef4f3;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.45rem;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cloud-cli code b { color: #8edbe7; }
.cloud-cli code em { margin-left: 0.65rem; color: #8ad6b1; font-style: normal; }

.ip-lens-card {
  background:
    linear-gradient(145deg, rgba(26, 33, 76, 0.78), rgba(12, 9, 30, 0.82)),
    var(--surface);
}

.ip-lens-card .card-glow {
  background: radial-gradient(520px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(72, 137, 255, 0.2), transparent 58%);
}

.ip-lens-art {
  isolation: isolate;
  background:
    radial-gradient(circle at 57% 46%, rgba(39, 126, 255, 0.31), transparent 36%),
    radial-gradient(circle at 22% 20%, rgba(79, 56, 211, 0.23), transparent 29%),
    linear-gradient(145deg, rgba(10, 17, 47, 0.94), rgba(6, 6, 22, 0.93));
}

.ip-lens-art::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(130, 175, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 175, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.ip-lens-art::after {
  position: absolute;
  right: 10%;
  bottom: -18%;
  z-index: -1;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #0569ff;
  content: "";
  filter: blur(90px);
  opacity: 0.18;
}

.ip-phone {
  position: relative;
  z-index: 4;
  height: 490px;
  aspect-ratio: 644 / 1400;
  overflow: hidden;
  padding: 5px;
  border: 1px solid rgba(184, 207, 255, 0.32);
  border-radius: 42px;
  background: linear-gradient(150deg, #3b476b, #070a14 18%, #03050d 82%, #263552);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.55),
    0 0 75px rgba(19, 112, 255, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.22);
  transform: translateX(12%);
  animation: phone-float 8s ease-in-out infinite;
}

.ip-phone img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  object-fit: cover;
}

.ip-icon-card {
  position: absolute;
  top: 17%;
  left: 7%;
  z-index: 6;
  display: flex;
  width: 190px;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem;
  border: 1px solid rgba(176, 205, 255, 0.29);
  border-radius: 22px;
  background: rgba(10, 15, 39, 0.76);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.4), 0 0 40px rgba(41, 109, 255, 0.17);
  backdrop-filter: blur(18px) saturate(1.25);
  animation: icon-float 7s ease-in-out infinite;
}

.ip-icon-card img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 15px;
  box-shadow: 0 11px 28px rgba(0, 45, 180, 0.42);
}

.ip-icon-card span { min-width: 0; }
.ip-icon-card strong,
.ip-icon-card small { display: block; }
.ip-icon-card strong { font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; }
.ip-icon-card small { margin-top: 0.28rem; color: #8bbdff; font-size: 0.5rem; }

.ip-feature {
  position: absolute;
  z-index: 5;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(142, 186, 255, 0.21);
  border-radius: 999px;
  color: #b9d4ff;
  background: rgba(9, 14, 35, 0.76);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(14px);
}

.ip-feature-one { top: 9%; right: 7%; animation: feature-float 6.5s ease-in-out infinite -2s; }
.ip-feature-two { right: 8%; bottom: 11%; animation: feature-float 7.5s ease-in-out infinite -4s; }

.ip-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(103, 157, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.ip-orbit-one { width: 74%; aspect-ratio: 1; transform: rotate(-19deg) scaleY(0.44); animation: ip-orbit 18s linear infinite; }
.ip-orbit-two { width: 92%; aspect-ratio: 1; border-color: rgba(123, 88, 255, 0.15); transform: rotate(26deg) scaleY(0.38); animation: ip-orbit-two 22s linear infinite; }

.dash-art { background: radial-gradient(circle at 52% 45%, rgba(78, 105, 230, 0.19), transparent 36%), rgba(8, 6, 18, 0.55); }

.data-sphere {
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
  border: 1px solid rgba(151, 170, 255, 0.23);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(77, 88, 185, 0.24), rgba(20, 19, 55, 0.52) 58%, rgba(5, 7, 20, 0.92) 100%);
  box-shadow: 0 0 90px rgba(81, 90, 222, 0.24), inset 0 0 55px rgba(96, 112, 225, 0.15);
  animation: sphere-float 8s ease-in-out infinite;
}

.sphere-grid {
  position: absolute;
  inset: 6%;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(197, 210, 255, 0.14);
  border-radius: 50%;
  background-image:
    repeating-radial-gradient(circle at center, transparent 0 34px, rgba(186, 195, 255, 0.13) 35px 36px);
}

.sphere-glow { position: absolute; inset: 22%; border-radius: 50%; background: #6876df; filter: blur(35px); opacity: 0.22; }

.radar-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  background: rgba(181, 196, 255, 0.13);
  transform: translate(-50%, -50%);
}

.crosshair-horizontal { width: 88%; height: 1px; }
.crosshair-vertical { width: 1px; height: 88%; }

.radar-ticks {
  position: absolute;
  inset: 2%;
  z-index: 2;
  border-radius: 50%;
  background: repeating-conic-gradient(from -1deg, rgba(193, 205, 255, 0.34) 0 0.7deg, transparent 0.7deg 7.5deg);
  mask-image: radial-gradient(circle, transparent 0 89%, black 90% 93%, transparent 94%);
  opacity: 0.65;
}

.radar-sweep {
  position: absolute;
  inset: 6%;
  z-index: 3;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 76%, rgba(114, 239, 189, 0.02) 82%, rgba(114, 239, 189, 0.2) 97%, rgba(151, 255, 217, 0.62) 100%);
  filter: drop-shadow(0 0 7px rgba(114, 239, 189, 0.2));
  animation: radar-sweep 4.8s linear infinite;
}

.radar-sweep::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 50%;
  content: "";
  background: linear-gradient(to bottom, rgba(168, 255, 222, 0.85), rgba(114, 239, 189, 0.18));
  box-shadow: 0 0 8px rgba(114, 239, 189, 0.55);
  transform: translateX(-50%);
}

.radar-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(209, 219, 255, 0.8);
  border-radius: 50%;
  background: #24284e;
  box-shadow: 0 0 11px rgba(179, 194, 255, 0.45);
  transform: translate(-50%, -50%);
}

.radar-label {
  position: absolute;
  z-index: 5;
  color: rgba(201, 211, 255, 0.5);
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.radar-north { top: 3.5%; left: 50%; transform: translateX(-50%); }
.radar-east { top: 50%; right: 4%; transform: translateY(-50%); }
.radar-south { bottom: 3.5%; left: 50%; transform: translateX(-50%); }
.radar-west { top: 50%; left: 4%; transform: translateY(-50%); }

.radar-ping {
  position: absolute;
  z-index: 6;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  opacity: 0.24;
  box-shadow: none;
  animation: radar-contact 4.8s linear infinite;
  animation-delay: var(--ping-delay);
}

.radar-ping::after {
  position: absolute;
  inset: -1px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(0.7);
  animation: radar-contact-ring 4.8s linear infinite;
  animation-delay: var(--ping-delay);
}

.ping-green { color: #72efbd; background: currentColor; }
.ping-red { color: #ff718d; background: currentColor; }
.ping-one { top: 27%; left: 58%; --ping-delay: 0.25s; }
.ping-two { top: 38%; left: 29%; --ping-delay: 4s; }
.ping-three { top: 61%; left: 35%; --ping-delay: 3.12s; }
.ping-four { top: 69%; left: 62%; --ping-delay: 1.97s; }
.ping-five { top: 44%; left: 73%; --ping-delay: 1s; }

.data-card {
  position: absolute;
  z-index: 3;
  min-width: 130px;
  padding: 0.85rem;
  border: 1px solid rgba(225, 210, 255, 0.15);
  border-radius: 16px;
  background: rgba(21, 17, 38, 0.75);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  animation: data-float 7s ease-in-out infinite;
}

.data-card-one { top: 17%; left: 9%; }
.data-card-two { right: 8%; bottom: 18%; animation-delay: -3.5s; }
.data-card-three { top: 10%; right: 8%; animation-delay: -1.5s; }
.data-card-four { bottom: 17%; left: 8%; animation-delay: -5.5s; }
.data-card small { display: block; color: var(--faint); font-size: 0.54rem; }
.data-card strong { display: block; margin-top: 0.45rem; font-family: var(--font-display); font-size: 1.45rem; }
.data-card i { color: var(--mint); font-size: 0.52rem; font-style: normal; }

.data-wave {
  position: absolute;
  right: 12%;
  bottom: 8%;
  left: 12%;
  display: flex;
  align-items: end;
  gap: 5px;
  height: 38px;
}

.data-wave i { flex: 1; height: 30%; border-radius: 99px; background: linear-gradient(to top, #6d63df, #b2a3ff); animation: wave 1.7s ease-in-out infinite alternate; opacity: 0.6; }
.data-wave i:nth-child(2) { animation-delay: -0.2s; }
.data-wave i:nth-child(3) { animation-delay: -0.7s; }
.data-wave i:nth-child(4) { animation-delay: -1.1s; }
.data-wave i:nth-child(5) { animation-delay: -0.5s; }
.data-wave i:nth-child(6) { animation-delay: -1.4s; }
.data-wave i:nth-child(7) { animation-delay: -0.9s; }
.data-wave i:nth-child(8) { animation-delay: -0.3s; }

.about-section { border-top: 1px solid var(--line); }

.about-heading {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 3rem;
}

.about-heading h2 em { color: var(--purple-bright); font-style: normal; }

.about-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(4rem, 10vw, 9rem);
  margin-top: 5rem;
}

.about-copy { max-width: 510px; }
.about-copy p { color: var(--muted); font-size: 0.9rem; line-height: 1.85; }
.about-copy .about-lede { margin-bottom: 1.3rem; color: var(--text); font-size: clamp(1.25rem, 2.5vw, 1.65rem); line-height: 1.5; letter-spacing: -0.025em; }
.about-copy a { display: inline-block; margin-top: 1.8rem; }

.capability-board {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0.8rem;
  border: 1px solid rgba(225, 210, 255, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 10%, rgba(156, 114, 255, 0.12), transparent 35%),
    linear-gradient(145deg, rgba(26, 17, 43, 0.82), rgba(10, 7, 18, 0.78));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.board-header {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.5rem;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-header > span { display: flex; align-items: center; gap: 0.55rem; }
.board-header i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 11px rgba(129, 243, 197, 0.7); }
.board-header small { color: var(--faint); font-size: 0.49rem; }

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 112px;
  gap: 0.65rem;
}

.skill-tile {
  --tile-accent: var(--purple-bright);
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  padding: 0.85rem;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(225, 210, 255, 0.12);
  border-radius: 17px;
  color: var(--text);
  background:
    radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--tile-accent) 16%, transparent), transparent 48%),
    rgba(255, 255, 255, 0.025);
  cursor: help;
  font: inherit;
  text-align: left;
  appearance: none;
  transition: transform 280ms var(--ease), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.skill-tile::after {
  position: absolute;
  right: 0.85rem;
  bottom: 0;
  left: 0.85rem;
  height: 2px;
  border-radius: 99px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--tile-accent), transparent);
  opacity: 0.28;
  transform: scaleX(0.35);
  transition: opacity 240ms ease, transform 320ms var(--ease);
}

.skill-tile:hover,
.skill-tile:focus,
.skill-tile:focus-visible {
  z-index: 3;
  border-color: color-mix(in srgb, var(--tile-accent) 46%, transparent);
  background:
    radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--tile-accent) 24%, transparent), transparent 52%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  outline: none;
  transform: translateY(-4px);
}

.skill-tile:hover::after,
.skill-tile:focus::after,
.skill-tile:focus-visible::after { opacity: 0.8; transform: scaleX(1); }
.tile-wide { grid-column: span 2; }

.tile-top { display: flex; width: 100%; align-items: center; justify-content: space-between; }
.tile-top i {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--tile-accent) 38%, transparent);
  border-radius: 8px;
  color: var(--tile-accent);
  background: color-mix(in srgb, var(--tile-accent) 9%, transparent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.52rem;
  font-style: normal;
}

.tile-top b { color: var(--faint); font-size: 0.48rem; font-weight: 600; }
.skill-tile strong { margin-top: auto; font-family: var(--font-display); font-size: 0.76rem; font-weight: 600; letter-spacing: -0.025em; transition: transform 240ms var(--ease); }
.skill-tile em,
.skill-tile > small { margin-top: 0.2rem; color: var(--faint); font-size: 0.51rem; font-style: normal; line-height: 1.4; transition: opacity 180ms ease, transform 240ms var(--ease); }
.skill-tile > small { position: absolute; right: 0.85rem; bottom: 0.72rem; left: 0.85rem; color: #d9cee8; opacity: 0; transform: translateY(6px); }
.skill-tile:hover strong,
.skill-tile:focus strong,
.skill-tile:focus-visible strong { transform: translateY(-0.65rem); }
.skill-tile:hover em,
.skill-tile:focus em,
.skill-tile:focus-visible em { opacity: 0; transform: translateY(-0.4rem); }
.skill-tile:hover > small,
.skill-tile:focus > small,
.skill-tile:focus-visible > small { opacity: 1; transform: translateY(0); }

.tile-typescript { --tile-accent: #bd9bff; }
.tile-python { --tile-accent: #ffd174; }
.tile-react { --tile-accent: #73dcff; }
.tile-node { --tile-accent: #7be5a6; }
.tile-postgres { --tile-accent: #85a9ff; }
.tile-llm { --tile-accent: #f0a0ff; }
.tile-docker { --tile-accent: #6ecbff; }
.tile-evals { --tile-accent: #ff8ca5; }
.tile-swiftui { --tile-accent: #5ca9ff; }

.closing-section {
  display: grid;
  min-height: 82svh;
  place-content: center;
  padding: 8rem 0;
  text-align: center;
}

.closing-section > p { margin-bottom: 1.3rem; color: var(--faint); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.closing-section h2 span { color: var(--faint); font-family: var(--font-body); font-size: 0.55em; font-weight: 400; letter-spacing: -0.03em; }

.closing-link {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  width: max-content;
  margin: 3rem auto 0;
  padding: 0.45rem 0.5rem 0.45rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--lilac);
  background: rgba(156, 114, 255, 0.05);
  font-size: 0.72rem;
  font-weight: 700;
  transition: border-color 220ms ease, background 220ms ease, transform 300ms var(--ease);
}

.closing-link i { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; color: #160c26; background: var(--lilac); font-style: normal; }
.closing-link:hover { border-color: rgba(197, 169, 255, 0.36); background: rgba(156, 114, 255, 0.11); transform: translateY(-3px); }

.site-footer {
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.68rem;
}

.footer-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.site-footer nav { display: flex; justify-content: flex-end; gap: 1.4rem; color: var(--muted); }
.footer-meta { display: flex; }

[data-reveal] { transition: opacity 850ms var(--ease), transform 950ms var(--ease), filter 850ms var(--ease); }
.project-card[data-reveal] {
  transition:
    opacity 850ms var(--ease),
    filter 850ms var(--ease),
    transform 320ms ease-out,
    border-color 300ms ease,
    box-shadow 300ms ease;
}
.js [data-reveal]:not(.is-visible) { opacity: 0; filter: blur(7px); transform: translateY(36px); }

@keyframes drift-one { to { transform: translate(7rem, 5rem) scale(1.12); } }
@keyframes drift-two { to { transform: translate(8rem, -5rem) scale(0.92); } }
@keyframes drift-three { to { transform: translate(-9rem, -7rem) scale(1.1); } }
@keyframes orbit-dot { 50% { transform: translate(670px, 30px) scale(1.4); } }
@keyframes orbit-dot-two { 50% { transform: translate(-650px, 90px) scale(0.8); } }
@keyframes ticker { to { transform: translateX(calc(-50% - 1.1rem)); } }
@keyframes node-float { 50% { transform: translateY(-9px); } }
@keyframes console-float { 50% { transform: translateY(-7px) rotate(0.4deg); } }
@keyframes console-scan { 0%, 12% { top: -35%; opacity: 0; } 28% { opacity: 1; } 70%, 100% { top: 110%; opacity: 0; } }
@keyframes packet-travel { 0% { left: 0; opacity: 0; } 14% { opacity: 1; } 84% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@keyframes cloud-haze-drift { to { opacity: 0.78; transform: translate3d(-10%, 14%, 0) rotate(6deg) scale(1.08); } }
@keyframes cloud-preview-float { 50% { transform: translateY(-8px) rotate(-0.25deg); } }
@keyframes phone-float { 50% { transform: translate(12%, -8px) rotate(0.6deg); } }
@keyframes icon-float { 50% { transform: translateY(-9px) rotate(-0.7deg); } }
@keyframes feature-float { 50% { transform: translateY(-7px); } }
@keyframes ip-orbit { to { transform: rotate(341deg) scaleY(0.44); } }
@keyframes ip-orbit-two { to { transform: rotate(-334deg) scaleY(0.38); } }
@keyframes sphere-float { 50% { transform: translateY(-12px) rotate(2deg); } }
@keyframes data-float { 50% { transform: translateY(-10px) rotate(1deg); } }
@keyframes wave { to { height: 95%; } }
@keyframes radar-sweep { to { transform: rotate(360deg); } }
@keyframes radar-contact {
  0%, 2% { opacity: 1; box-shadow: 0 0 14px currentColor; transform: scale(1.35); }
  10%, 100% { opacity: 0.24; box-shadow: 0 0 0 transparent; transform: scale(1); }
}
@keyframes radar-contact-ring {
  0% { opacity: 0.9; transform: scale(0.7); }
  12%, 100% { opacity: 0; transform: scale(4.2); }
}

@media (max-width: 1000px) {
  .section-intro { grid-template-columns: 0.45fr 1.55fr; }
  .section-summary { grid-column: 2; }
  .project-card { grid-template-columns: 1fr; min-height: 0; }
  .project-art { min-height: 480px; }
  .project-info { min-height: 350px; padding: 2.6rem 1rem 1.6rem; }
  .about-layout { gap: 4rem; }
}

@media (max-width: 760px) {
  main, .site-footer { width: min(var(--max-width), calc(100% - 28px)); }
  .nav-shell { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero { padding-top: 8rem; }
  .hero-wordmark { font-size: clamp(7rem, 27vw, 11rem); }
  .hero-bottom { grid-template-columns: 1fr auto; gap: 2rem; margin-top: 3rem; }
  .round-link { width: 96px; height: 96px; }
  .section-intro, .about-heading, .about-layout { grid-template-columns: 1fr; }
  .section-summary { grid-column: auto; }
  .section-intro { gap: 1.5rem; }
  .project-card { padding: 0.8rem; border-radius: 22px; transform: none !important; }
  .project-head { padding: 0.4rem 0.4rem 1rem; }
  .project-art { min-height: 420px; border-radius: 17px; }
  .buffer-console { width: min(52%, 320px); }
  .cloud-preview { width: min(86%, 510px); }
  .ip-phone { height: min(91%, 390px); border-radius: 36px; }
  .ip-phone img { border-radius: 30px; }
  .about-layout { margin-top: 3.5rem; }
  .capability-grid { grid-auto-rows: 108px; }
  .footer-bar { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
}

@media (max-width: 520px) {
  .nav-wrap { top: 0.75rem; }
  .nav-shell { min-height: 56px; padding-left: 1rem; }
  .nav-cta { min-height: 38px; padding-inline: 0.85rem; }
  .hero { min-height: 92svh; }
  .hero-wordmark { font-size: clamp(6.4rem, 29vw, 8.6rem); }
  .hero-bottom { grid-template-columns: 1fr; justify-items: start; }
  .round-link { width: 104px; height: 104px; }
  .ticker-track { min-height: 58px; }
  .work-section, .about-section { padding: 6rem 0; }
  .section-intro h2, .about-heading h2, .closing-section h2 { font-size: clamp(2.8rem, 14vw, 4.3rem); }
  .project-art { min-height: 360px; }
  .buffer-console { width: min(64%, 230px); min-width: 0; min-height: 175px; padding: 0.75rem; border-radius: 17px; }
  .cloud-preview { width: 94%; min-height: 310px; padding: 0.85rem; border-radius: 14px; }
  .cloud-mini-nav i:first-child { display: none; }
  .cloud-preview-main { grid-template-columns: minmax(0, 1fr) minmax(125px, 0.78fr); gap: 0.65rem; }
  .cloud-headline { font-size: clamp(1.55rem, 8vw, 2.45rem); }
  .cloud-lede { font-size: 0.4rem; }
  .cloud-fineprint { display: none; }
  .cloud-uploader { padding: 0.55rem; }
  .cloud-uploader-head small { display: none; }
  .cloud-drop-zone { min-height: 82px; }
  .cloud-cli code { font-size: 0.38rem; }
  .cloud-cli code em { display: none; }
  .ip-phone { height: 325px; padding: 4px; border-radius: 31px; transform: translateX(11%); }
  .ip-phone img { border-radius: 26px; }
  .ip-icon-card { top: 17%; left: 3%; width: 142px; gap: 0.55rem; padding: 0.5rem; border-radius: 17px; }
  .ip-icon-card img { width: 48px; height: 48px; border-radius: 11px; }
  .ip-icon-card strong { font-size: 0.66rem; }
  .ip-icon-card small { font-size: 0.43rem; }
  .ip-feature { padding: 0.45rem 0.55rem; font-size: 0.45rem; }
  .ip-feature-one { top: 7%; right: 3%; }
  .ip-feature-two { right: 3%; bottom: 8%; }
  .console-top { padding-bottom: 0.65rem; }
  .console-command { margin-top: 0.7rem; padding: 0.6rem; font-size: 0.55rem; }
  .console-response { margin-top: 0.6rem; }
  .console-tags { margin-top: 0.65rem; gap: 0.35rem; }
  .console-tags span { padding: 0.24rem 0.34rem; font-size: 0.42rem; }
  .signal-node { width: auto; min-width: 60px; height: 36px; padding: 0 0.55rem; border-radius: 999px; font-size: 0.52rem; }
  .node-popover { width: 160px; font-size: 0.54rem; }
  .node-one { left: 7%; }
  .node-two { right: 7%; }
  .node-three { left: 9%; }
  .node-four { right: 8%; }
  .node-five, .node-eight, .data-card-three, .data-card-four { display: none; }
  .path-seven, .path-eight { display: none; }
  .node-six { left: 2%; }
  .node-seven { right: 2%; }
  .data-sphere { width: 205px; height: 205px; }
  .data-card { min-width: 110px; padding: 0.7rem; }
  .data-card-one { left: 3%; }
  .data-card-two { right: 2%; }
  .project-info { min-height: 340px; padding-inline: 0.6rem; }
  .project-info h3 { font-size: 3.1rem; }
  .capability-board { padding: 0.65rem; border-radius: 22px; }
  .board-header { min-height: 44px; }
  .board-header small { display: none; }
  .capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 104px; gap: 0.5rem; }
  .tile-wide { grid-column: span 2; }
  .skill-tile { padding: 0.72rem; border-radius: 14px; }
  .skill-tile > small { right: 0.72rem; bottom: 0.62rem; left: 0.72rem; font-size: 0.48rem; }
  .site-footer nav { flex-wrap: wrap; }
  .footer-meta { align-items: flex-start; flex-direction: column; gap: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-intro],
  [data-reveal],
  .js [data-reveal]:not(.is-visible) {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .pointer-light { display: none; }
  .ip-phone { transform: translateX(12%); }
}
