:root {
  --bg: #050914;
  --bg-deep: #02050c;
  --surface: rgba(12, 20, 38, 0.72);
  --surface-strong: #0d172a;
  --surface-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(144, 197, 255, 0.16);
  --line-bright: rgba(66, 211, 255, 0.42);
  --text: #f5f8ff;
  --muted: #9aa9c0;
  --cyan: #30d7ff;
  --blue: #4787ff;
  --violet: #b15cff;
  --gold: #ffbf3f;
  --gold-bright: #ffe07d;
  --success: #5ff0ad;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--blue) var(--bg-deep);
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(42, 126, 255, 0.16), transparent 29rem),
    radial-gradient(circle at 93% 18%, rgba(177, 92, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, #050914 0%, #050a15 45%, #02050c 100%);
  font-family: Inter, "Segoe UI Variable Display", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(85, 148, 220, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 148, 220, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

::selection {
  color: #02050c;
  background: var(--cyan);
}

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

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

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: #04101b;
  background: var(--cyan);
  border-radius: 10px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.page-noise {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 34rem;
  height: 34rem;
  pointer-events: none;
  opacity: 0.12;
  background: radial-gradient(circle, var(--cyan), transparent 64%);
  transform: translate(calc(var(--mouse-x, 50vw) - 50%), calc(var(--mouse-y, 25vh) - 50%));
  filter: blur(24px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1rem 0;
  transition: padding 180ms ease;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0 -1.25rem;
  content: "";
  opacity: 0;
  background: rgba(5, 9, 20, 0.78);
  border: 1px solid transparent;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transition: opacity 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  padding: 0.65rem 0;
}

.site-header.is-scrolled::before {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.06);
}

.brand,
.site-footer > div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  color: #07101c;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 52%, #ed8d14);
  border: 1px solid rgba(255, 244, 191, 0.72);
  border-radius: 13px;
  box-shadow: 0 8px 28px rgba(255, 174, 35, 0.23), inset 0 1px rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 0.24rem;
  color: var(--muted);
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.3rem;
  background: rgba(10, 18, 34, 0.46);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.site-nav a {
  padding: 0.55rem 0.88rem;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.68rem 1rem;
  background: rgba(48, 215, 255, 0.08);
  border: 1px solid rgba(48, 215, 255, 0.3);
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.header-cta:hover {
  background: rgba(48, 215, 255, 0.15);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: calc(100svh - 5.3rem);
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 7rem) 0 clamp(5rem, 11vh, 8rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-top: 2rem;
}

.eyebrow,
.section-kicker {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
  padding: 0.52rem 0.75rem;
  color: #cbeeff;
  background: rgba(25, 138, 204, 0.08);
  border: 1px solid rgba(48, 215, 255, 0.2);
  border-radius: 999px;
  letter-spacing: 0.1em;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(95, 240, 173, 0.1), 0 0 18px rgba(95, 240, 173, 0.65);
}

.hero h1 {
  max-width: 14.5ch;
  margin-bottom: 1.55rem;
  font-size: clamp(3.25rem, 6.1vw, 6.05rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.gradient-text {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #ffffff 2%, #c2efff 32%, var(--cyan) 58%, #728cff 94%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 52px rgba(48, 215, 255, 0.14);
}

.hero-intro {
  max-width: 43rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.hero-intro strong {
  color: var(--text);
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #03111a;
  background: linear-gradient(120deg, #65e8ff, var(--cyan) 48%, #69a4ff);
  box-shadow: 0 12px 36px rgba(48, 215, 255, 0.2), inset 0 1px rgba(255, 255, 255, 0.55);
}

.button-primary:hover {
  box-shadow: 0 16px 44px rgba(48, 215, 255, 0.3), inset 0 1px rgba(255, 255, 255, 0.55);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 0.35rem 0.68rem;
  color: #aebbd0;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.portrait-shell {
  position: relative;
  max-width: 31rem;
  margin-left: auto;
}

.portrait-shell::before,
.portrait-shell::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.portrait-shell::before {
  z-index: -1;
  inset: -8%;
  background: conic-gradient(from 45deg, transparent, rgba(48, 215, 255, 0.5), transparent 36%, rgba(255, 191, 63, 0.44), transparent 66%, rgba(177, 92, 255, 0.4), transparent);
  filter: blur(32px);
  opacity: 0.42;
  animation: rotate-glow 18s linear infinite;
}

.portrait-shell::after {
  z-index: -2;
  inset: 15%;
  background: var(--blue);
  filter: blur(90px);
  opacity: 0.22;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  padding: 0.38rem;
  background: linear-gradient(135deg, rgba(255, 226, 112, 0.72), rgba(48, 215, 255, 0.46) 45%, rgba(177, 92, 255, 0.5));
  border-radius: 37% 37% 26% 26% / 31% 31% 20% 20%;
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 28%, transparent 72%, rgba(48, 215, 255, 0.12));
}

.portrait-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(37% - 0.2rem) calc(37% - 0.2rem) calc(26% - 0.2rem) calc(26% - 0.2rem) / calc(31% - 0.2rem) calc(31% - 0.2rem) calc(20% - 0.2rem) calc(20% - 0.2rem);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 11.5rem;
  padding: 0.75rem 0.85rem;
  background: rgba(8, 15, 29, 0.82);
  border: 1px solid rgba(150, 208, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.floating-card-top {
  top: 14%;
  left: -3rem;
  animation: float-card 6s ease-in-out infinite;
}

.floating-card-bottom {
  right: -2rem;
  bottom: 13%;
  animation: float-card 6s ease-in-out -3s infinite;
}

.floating-card > span:last-child {
  display: grid;
  line-height: 1.25;
}

.floating-card strong {
  font-size: 0.78rem;
}

.floating-card small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.63rem;
}

.floating-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  color: #06111a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 10px;
  font-size: 0.67rem;
  font-weight: 950;
}

.pulse-ring {
  width: 0.75rem;
  height: 0.75rem;
  margin: 0.75rem;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(95, 240, 173, 0.1), 0 0 20px rgba(95, 240, 173, 0.55);
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(92, 172, 255, 0.1);
  border-radius: 50%;
}

.hero-orbit-one {
  top: 3%;
  right: -22%;
  width: 50rem;
  height: 50rem;
}

.hero-orbit-two {
  top: 17%;
  right: -10%;
  width: 36rem;
  height: 36rem;
  border-color: rgba(255, 191, 63, 0.1);
}

.signal-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(5, 13, 27, 0.7);
}

.signal-strip p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3.5vw, 3rem);
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1rem 0;
  color: #8291a9;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.signal-strip i {
  width: 0.26rem;
  height: 0.26rem;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
}

.section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-heading {
  max-width: 47rem;
  margin-bottom: 2.5rem;
}

.section-kicker {
  margin-bottom: 0.8rem;
}

.section h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.manage-intro > p,
.closing-section > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.02rem;
}

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

.profile-link {
  position: relative;
  display: flex;
  min-height: 6.1rem;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, rgba(14, 26, 48, 0.82), rgba(8, 16, 31, 0.78));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.profile-link::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(100deg, rgba(48, 215, 255, 0.08), transparent 48%, rgba(177, 92, 255, 0.07));
  transition: opacity 180ms ease;
}

.profile-link:hover,
.profile-link:focus-visible {
  border-color: var(--line-bright);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24), 0 0 35px rgba(48, 215, 255, 0.05);
  transform: translateY(-4px);
}

.profile-link:hover::before,
.profile-link:focus-visible::before {
  opacity: 1;
}

.profile-link-featured {
  grid-column: 1 / -1;
  min-height: 7.2rem;
  background: linear-gradient(120deg, rgba(255, 191, 63, 0.09), rgba(14, 26, 48, 0.82) 35%, rgba(48, 215, 255, 0.07));
  border-color: rgba(255, 191, 63, 0.27);
}

.platform-icon {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 3.3rem;
  height: 3.3rem;
  color: white;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  font-size: 0.74rem;
  font-weight: 950;
}

.platform-linktree { background: linear-gradient(135deg, #48ef9f, #18aa68); color: #03190e; }
.platform-twitch { background: linear-gradient(135deg, #a879ff, #6441a5); }
.platform-youtube { background: linear-gradient(135deg, #ff5656, #cf1010); }
.platform-tiktok { background: linear-gradient(135deg, #16e6df, #111 48%, #f63877); }
.platform-threads { background: linear-gradient(135deg, #5d6573, #11151c); }
.platform-github { background: linear-gradient(135deg, #708097, #1f2733 55%, #0b0f15); }

.profile-copy {
  position: relative;
  z-index: 1;
  display: grid;
  line-height: 1.35;
}

.profile-copy strong {
  font-size: 1rem;
}

.profile-copy small {
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.profile-arrow {
  position: relative;
  z-index: 1;
  margin-left: auto;
  color: #b8c5d8;
  font-size: 1.1rem;
  transition: color 160ms ease, transform 160ms ease;
}

.profile-link:hover .profile-arrow {
  color: var(--cyan);
  transform: translate(3px, -3px);
}

.build-section {
  position: relative;
}

.build-section::before {
  position: absolute;
  z-index: -1;
  top: 20%;
  left: 50%;
  width: 80vw;
  height: 40rem;
  content: "";
  background: radial-gradient(ellipse, rgba(53, 106, 207, 0.1), transparent 68%);
  transform: translateX(-50%);
}

.ecosystem-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ecosystem-metrics > div {
  display: grid;
  min-height: 7.25rem;
  align-content: center;
  padding: 1rem 1.15rem;
  background: linear-gradient(145deg, rgba(15, 29, 52, 0.75), rgba(8, 16, 30, 0.72));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.ecosystem-metrics strong {
  color: transparent;
  background: linear-gradient(100deg, var(--gold-bright), var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.ecosystem-metrics span {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

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

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 21rem;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: rgba(10, 19, 36, 0.66);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.17);
  backdrop-filter: blur(10px);
  transition: border-color 180ms ease, transform 180ms ease;
}

.project-card::after {
  position: absolute;
  right: -20%;
  bottom: -35%;
  width: 15rem;
  height: 15rem;
  content: "";
  background: radial-gradient(circle, rgba(48, 215, 255, 0.11), transparent 68%);
  border-radius: 50%;
}

.project-card:hover {
  border-color: rgba(85, 174, 255, 0.35);
  transform: translateY(-4px);
}

.project-card-lead {
  grid-column: 1 / -1;
  min-height: 19rem;
  background:
    radial-gradient(circle at 95% 8%, rgba(255, 191, 63, 0.12), transparent 38%),
    linear-gradient(140deg, rgba(17, 36, 66, 0.9), rgba(8, 17, 33, 0.8));
  border-color: rgba(255, 191, 63, 0.22);
}

.project-card-lead > p:not(.project-type) {
  max-width: 48rem;
}

.project-number {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  color: rgba(180, 206, 239, 0.25);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.project-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 2.6rem;
  color: var(--cyan);
  background: rgba(48, 215, 255, 0.07);
  border: 1px solid rgba(48, 215, 255, 0.18);
  border-radius: 13px;
  box-shadow: inset 0 0 22px rgba(48, 215, 255, 0.05);
  font-size: 1.15rem;
}

.project-type {
  margin-bottom: 0.5rem;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.project-card h3,
.manage-item h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.project-card > p:not(.project-type),
.manage-item p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: auto 0 0;
  padding: 1.2rem 0 0;
  list-style: none;
}

.feature-list li {
  padding: 0.28rem 0.55rem;
  color: #b6c8e2;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
}

.manage-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 8rem);
}

.manage-intro {
  position: sticky;
  top: 7rem;
}

.manage-intro h2 {
  max-width: 8ch;
}

.manage-intro blockquote {
  margin: 2rem 0 0;
  padding: 1.2rem 1.3rem;
  color: #c9d6e8;
  background: linear-gradient(120deg, rgba(255, 191, 63, 0.07), rgba(48, 215, 255, 0.04));
  border: 1px solid rgba(255, 191, 63, 0.16);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.87rem;
  font-weight: 650;
}

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

.manage-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.1rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.manage-index {
  padding-top: 0.23rem;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.manage-item p {
  max-width: 36rem;
  margin-bottom: 0;
}

.closing-section {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  padding: clamp(3rem, 7vw, 6rem);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 191, 63, 0.055), transparent 30%),
    linear-gradient(145deg, rgba(15, 31, 58, 0.9), rgba(6, 14, 28, 0.86));
  border: 1px solid rgba(113, 188, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.closing-section h2 {
  position: relative;
  max-width: 15ch;
  margin-inline: auto;
}

.closing-section > p:not(.section-kicker) {
  position: relative;
  max-width: 43rem;
  margin: 0 auto 2rem;
}

.closing-actions {
  position: relative;
  justify-content: center;
}

.closing-glow {
  position: absolute;
  top: -60%;
  left: 50%;
  width: 40rem;
  height: 30rem;
  background: radial-gradient(ellipse, rgba(48, 215, 255, 0.19), transparent 65%);
  transform: translateX(-50%);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.5rem 0 2.5rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
}

.site-footer p {
  margin: 0;
}

.site-footer > p {
  text-align: center;
}

.site-footer > a {
  justify-self: end;
  color: #c7d4e8;
  font-weight: 750;
}

.brand-mark-small {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 9px;
  font-size: 0.64rem;
}

.toast {
  position: fixed;
  z-index: 200;
  bottom: 1.25rem;
  left: 50%;
  padding: 0.72rem 1rem;
  color: #06131b;
  background: var(--success);
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
  font-size: 0.78rem;
  font-weight: 850;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 1rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal[data-delay="1"] { transition-delay: 90ms; }
.js .reveal[data-delay="2"] { transition-delay: 180ms; }

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

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

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 920px) {
  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 5rem;
  }

  .hero-copy {
    max-width: 46rem;
    padding-top: 0;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .hero-visual {
    width: min(82vw, 32rem);
    margin: 1rem auto 0;
  }

  .portrait-shell {
    margin: 0 auto;
  }

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

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

  .project-card-lead {
    grid-column: auto;
  }

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

  .manage-section {
    grid-template-columns: 1fr;
  }

  .manage-intro {
    position: static;
  }

  .manage-intro h2 {
    max-width: none;
  }

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

  .site-footer > p {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(calc(100% - 1.4rem), var(--max-width));
  }

  .brand-mark {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 11px;
    font-size: 0.74rem;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    padding: 0.58rem 0.75rem;
  }

  .hero,
  .section,
  .site-footer {
    width: min(calc(100% - 1.4rem), var(--max-width));
  }

  .hero {
    gap: 3rem;
    padding-top: 3.5rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 12.4vw, 3.35rem);
    letter-spacing: -0.055em;
  }

  .gradient-text {
    overflow-wrap: anywhere;
  }

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

  .floating-card-top {
    top: 8%;
    left: -0.75rem;
  }

  .floating-card-bottom {
    right: -0.75rem;
    bottom: 8%;
  }

  .floating-card {
    min-width: 9.8rem;
    padding: 0.6rem;
  }

  .signal-strip p {
    justify-content: flex-start;
    overflow: hidden;
  }

  .signal-strip span:nth-of-type(4),
  .signal-strip i:nth-of-type(3) {
    display: none;
  }

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

  .profile-link-featured {
    grid-column: auto;
  }

  .section {
    padding-block: 5rem;
  }

  .section h2 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .profile-link {
    min-height: 5.6rem;
  }

  .project-card {
    padding: 1.4rem;
  }

  .ecosystem-metrics > div {
    min-height: 6.5rem;
    padding: 0.85rem;
  }

  .ecosystem-metrics strong {
    font-size: 1.65rem;
  }

  .manage-item {
    grid-template-columns: 2rem 1fr;
  }

  .closing-section {
    width: calc(100% - 1.4rem);
    padding: 3.5rem 1.25rem;
    border-radius: 24px;
  }

  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer > a {
    align-self: flex-end;
  }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-glow {
    display: none;
  }
}

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

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

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