@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@500;600;700&display=swap");

:root {
  --font-geist-sans: "Inter";
  --font-geist-mono: "JetBrains Mono";
  --ink: #0b0910;
  --ink-soft: #15111d;
  --paper: #f4f1ed;
  --paper-bright: #fffdf9;
  --muted: #6f6878;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --line: rgba(11, 9, 16, 0.13);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  overflow-x: hidden;
  background-image:
    radial-gradient(
      circle at 8% 10%,
      rgba(124, 58, 237, 0.08),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 34%,
      rgba(167, 139, 250, 0.1),
      transparent 23%
    );
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.scroll-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #5b21b6, #a78bfa, #f0abfc);
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.65);
}
.pointer-glow {
  --pointer-x: 50vw;
  --pointer-y: 50vh;
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    280px circle at var(--pointer-x) var(--pointer-y),
    rgba(139, 92, 246, 0.08),
    transparent 70%
  );
  mix-blend-mode: multiply;
}

.nav {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.72);
  padding-inline: 18px;
  border-radius: 17px;
  position: sticky;
  top: 14px;
  z-index: 100;
  margin-top: 14px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 12px 35px rgba(28, 17, 42, 0.08);
  backdrop-filter: blur(18px) saturate(1.2);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}
.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  border-radius: 9px;
  font-size: 15px;
  box-shadow: 4px 4px 0 var(--purple-light);
}
.nav-links {
  display: flex;
  gap: 34px;
  font-size: 14px;
  color: #514a59;
}
.nav-links a,
.footer a,
.contact-actions > a:not(.button) {
  transition: color 0.2s ease;
}
.nav-links a:hover,
.footer a:hover,
.contact-actions > a:not(.button):hover {
  color: var(--purple);
}
.nav-cta {
  padding: 11px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s ease;
}
.nav-cta:hover {
  background: var(--ink);
  color: white;
  transform: translateY(-2px);
}
.signal-bar {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.34);
}
.signal-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 27px;
  padding-block: 11px;
  animation: marquee 24s linear infinite;
  color: #5f5867;
  font:
    700 9px/1 var(--font-geist-mono),
    monospace;
  letter-spacing: 0.16em;
}
.signal-track i {
  color: var(--purple);
  font-style: normal;
  font-size: 12px;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
  padding-block: 72px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -30%;
  top: 8%;
  width: 70%;
  height: 82%;
  background-image:
    linear-gradient(rgba(20, 15, 28, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 15, 28, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, black, transparent);
  transform: perspective(600px) rotateY(8deg);
}
.eyebrow {
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font:
    700 11px/1 var(--font-geist-mono),
    monospace;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 0 5px rgba(61, 220, 132, 0.13);
}
.eyebrow.purple {
  color: var(--purple);
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 6.1vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 760;
}
.hero h1 em {
  display: block;
  color: transparent;
  background: linear-gradient(
    100deg,
    #5b21b6 5%,
    #8b5cf6 45%,
    #c084fc 75%,
    #6d28d9
  );
  background-size: 180% 100%;
  background-clip: text;
  font-style: normal;
  font-family: Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.055em;
  animation: text-shift 4s ease-in-out infinite alternate;
}
@keyframes text-shift {
  to {
    background-position: 100% center;
  }
}
.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 15px 20px;
  border-radius: 12px;
  font-weight: 750;
  font-size: 14px;
  transition: 0.2s ease;
}
.button.primary {
  background: var(--ink);
  color: white;
  box-shadow: 6px 6px 0 var(--purple-light);
}
.button:hover {
  transform: translate(-2px, -2px);
}
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-weight: 700;
  font-size: 14px;
}
.text-link span,
.button span,
.nav-cta span {
  transition: transform 0.2s ease;
}
.text-link:hover span,
.button:hover span,
.nav-cta:hover span {
  transform: translate(3px, -3px);
}
.hero-trust {
  margin-top: 45px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar-stack {
  display: flex;
  padding-left: 8px;
}
.avatar-stack span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #211a2c, #7c3aed);
  font-size: 10px;
  font-weight: 800;
}
.avatar-stack span:nth-child(2) {
  background: linear-gradient(135deg, #9333ea, #312e81);
}
.avatar-stack span:nth-child(3) {
  background: linear-gradient(135deg, #111827, #a78bfa);
}
.hero-trust p {
  margin: 0;
}
.hero-trust strong,
.hero-trust p span {
  display: block;
}
.hero-trust strong {
  font-size: 11px;
}
.hero-trust p span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.hero-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  width: 340px;
  height: 340px;
  border-radius: 50%;
  position: absolute;
  background: var(--purple);
  filter: saturate(0.85);
  z-index: -2;
  box-shadow: 0 0 90px rgba(124, 58, 237, 0.32);
  animation: visual-pulse 5s ease-in-out infinite;
}
.hero-visual::after {
  content: "";
  width: 210px;
  height: 420px;
  border-radius: 200px;
  position: absolute;
  background: linear-gradient(#c4b5fd, #6d28d9);
  transform: rotate(33deg);
  z-index: -1;
  opacity: 0.55;
}
.portrait-wrap {
  width: 280px;
  height: 360px;
  overflow: hidden;
  border: 8px solid var(--paper-bright);
  border-radius: 150px 150px 30px 30px;
  box-shadow: 0 26px 70px rgba(35, 17, 69, 0.26);
  transform: rotate(2deg);
  animation: portrait-float 5s ease-in-out infinite;
}
.portrait-image {
  width: 100%;
  height: 100%;
  background: url("images/profile.jpg") center 30% / cover no-repeat;
  filter: saturate(0.85) contrast(1.03);
}
.orbit {
  position: absolute;
  border: 1px solid rgba(65, 34, 110, 0.3);
  border-radius: 50%;
  z-index: -3;
}
.orbit-one {
  width: 430px;
  height: 430px;
  animation: orbit-spin 22s linear infinite;
}
.orbit-one::after {
  content: "";
  position: absolute;
  left: 48px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 17px var(--purple);
}
.orbit-two {
  width: 500px;
  height: 320px;
  transform: rotate(-18deg);
  animation: orbit-wobble 9s ease-in-out infinite alternate;
}
.floating-card {
  position: absolute;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 45px rgba(30, 16, 51, 0.16);
  backdrop-filter: blur(14px);
}
.floating-card.years {
  left: 2%;
  top: 13%;
  padding: 18px;
  border-radius: 18px;
  transform: rotate(-5deg);
}
.floating-card.years strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--purple);
}
.floating-card.years span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.floating-card.status {
  right: -2%;
  bottom: 14%;
  padding: 14px 17px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.floating-card.status strong,
.floating-card.status span {
  display: block;
}
.floating-card.status strong {
  font-size: 12px;
}
.floating-card.status span {
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 0 5px rgba(61, 220, 132, 0.14);
}
.code-card {
  position: absolute;
  left: -5%;
  bottom: 1%;
  width: 228px;
  padding: 13px 15px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(12, 9, 17, 0.92);
  color: #ddd6e8;
  box-shadow: 0 18px 45px rgba(15, 8, 23, 0.27);
  backdrop-filter: blur(16px);
  transform: rotate(2deg);
  animation: code-float 6s ease-in-out infinite reverse;
}
.code-card-top {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 10px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.code-card-top span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fb7185;
}
.code-card-top span:nth-child(2) {
  background: #fbbf24;
}
.code-card-top span:nth-child(3) {
  background: #4ade80;
}
.code-card-top b {
  margin-left: auto;
  color: #6f6779;
  font:
    500 8px var(--font-geist-mono),
    monospace;
}
.code-card code {
  display: block;
  font:
    500 9px/1.8 var(--font-geist-mono),
    monospace;
}
.code-card code i {
  color: #c084fc;
  font-style: normal;
}
.code-card code em {
  color: #86efac;
  font-style: normal;
}
.code-card code strong {
  color: #f0abfc;
}
@keyframes portrait-float {
  50% {
    transform: rotate(-1deg) translateY(-9px);
  }
}
@keyframes code-float {
  50% {
    transform: rotate(-1deg) translateY(-7px);
  }
}
@keyframes visual-pulse {
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 125px rgba(124, 58, 237, 0.44);
  }
}
@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes orbit-wobble {
  to {
    transform: rotate(6deg) scale(1.06);
  }
}

.proof {
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 28px;
}
.proof > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.proof > div:first-child {
  padding-left: 0;
  border: 0;
}
.proof strong {
  font-size: 26px;
  letter-spacing: -0.04em;
}
.proof span {
  color: var(--muted);
  font-size: 12px;
}

.fan12-feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 70px;
  padding: 72px;
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 87% 18%,
      rgba(196, 181, 253, 0.22),
      transparent 25%
    ),
    linear-gradient(135deg, #0d0914 0%, #191023 52%, #25103e 100%);
  color: white;
  box-shadow: 0 35px 90px rgba(30, 14, 52, 0.22);
}
.fan12-feature::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 29px;
}
.fan12-feature::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 440px;
  height: 440px;
  right: -130px;
  bottom: -230px;
  border: 1px solid rgba(196, 181, 253, 0.19);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(196, 181, 253, 0.025),
    0 0 0 110px rgba(196, 181, 253, 0.018);
}
.fan12-noise {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.28;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.16) 0.55px,
    transparent 0.55px
  );
  background-size: 7px 7px;
  mask-image: linear-gradient(90deg, transparent, black);
}
.fan12-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
  color: #c4b5fd;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font:
    700 10px/1 var(--font-geist-mono),
    monospace;
}
.fan12-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow:
    0 0 0 6px rgba(167, 139, 250, 0.12),
    0 0 24px #8b5cf6;
}
.fan12-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 80px;
}
.fan12-label {
  margin: 0 0 18px;
  color: #8e83a1;
  font:
    700 11px var(--font-geist-mono),
    monospace;
  letter-spacing: 0.12em;
}
.fan12-copy h2 {
  margin: 0;
  font-size: clamp(58px, 7vw, 100px);
  line-height: 0.82;
  letter-spacing: -0.075em;
}
.fan12-copy h2 em {
  color: #b69aff;
  font-family: Georgia, serif;
  font-weight: 400;
}
.fan12-summary {
  max-width: 640px;
  margin: 34px 0 0;
  color: #bbb3c6;
  font-size: 17px;
  line-height: 1.7;
}
.fan12-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  overflow: hidden;
}
.fan12-stats div {
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.035);
}
.fan12-stats strong,
.fan12-stats span {
  display: block;
}
.fan12-stats strong {
  color: #ddd6fe;
  font-size: 17px;
}
.fan12-stats span {
  margin-top: 4px;
  color: #837a8d;
  font-size: 10px;
}
.fan12-actions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 30px;
}
.fan12-button {
  background: white;
  color: #100b18;
  box-shadow: 6px 6px 0 #7c3aed;
}
.fan12-disclaimer {
  max-width: 260px;
  margin: 0;
  color: #756d80;
  font:
    500 8px/1.5 var(--font-geist-mono),
    monospace;
}
.fan12-emblem {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 181, 253, 0.16);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.18),
    transparent 65%
  );
}
.fan12-emblem strong {
  position: relative;
  z-index: 2;
  font-size: 84px;
  letter-spacing: -0.13em;
  text-shadow: 0 0 35px rgba(167, 139, 250, 0.42);
}
.fan12-emblem strong span {
  color: #a78bfa;
}
.fan12-emblem small {
  position: absolute;
  bottom: 74px;
  color: #81778e;
  font:
    700 8px var(--font-geist-mono),
    monospace;
  letter-spacing: 0.22em;
}
.fan12-ring {
  position: absolute;
  border: 1px solid rgba(167, 139, 250, 0.18);
  border-radius: 50%;
}
.fan12-ring.ring-a {
  inset: 28px;
}
.fan12-ring.ring-b {
  inset: 62px;
  border-style: dashed;
  animation: orbit-spin 24s linear infinite reverse;
}
.fan12-shape {
  position: absolute;
  z-index: 1;
  width: 25px;
  height: 25px;
  border: 2px solid #a78bfa;
  opacity: 0.7;
}
.fan12-shape.circle {
  top: 45px;
  left: 68px;
  border-radius: 50%;
}
.fan12-shape.triangle {
  top: 62px;
  right: 57px;
  width: 0;
  height: 0;
  border: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 25px solid #a78bfa;
  opacity: 0.45;
}
.fan12-shape.square {
  right: 50px;
  bottom: 78px;
  transform: rotate(12deg);
}

.section {
  padding-block: 120px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}
.section-heading h2,
.about h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.section-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.project-card {
  position: relative;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(167, 139, 250, 0.12),
    transparent 65%
  );
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}
.project-card:hover {
  transform: translateY(-8px) scale(1.008);
  border-color: rgba(124, 58, 237, 0.42);
  box-shadow: 0 28px 70px rgba(45, 25, 69, 0.16);
}
.project-card:hover::after {
  transform: translateX(100%);
}
.project-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
}
.project-media {
  position: relative;
  min-height: 275px;
  background: #17121f;
  overflow: hidden;
}
.featured .project-media {
  min-height: 420px;
}
.project-video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
  background: #17121f;
}
.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(9, 6, 13, 0.35));
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.project-card:hover .project-media::after {
  opacity: 0;
}
.project-category {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(10, 8, 13, 0.8);
  backdrop-filter: blur(8px);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 9px;
  font-weight: 800;
  pointer-events: none;
}
.project-play {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.91);
  color: var(--ink);
  font:
    800 9px var(--font-geist-mono),
    monospace;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  transform: scale(0.75) rotate(-8deg);
  opacity: 0;
  transition: 0.28s ease;
}
.project-card:hover .project-play {
  opacity: 1;
  transform: scale(1) rotate(0);
}
.project-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
}
.project-number {
  display: block;
  margin-bottom: 15px;
  color: var(--purple);
  font:
    700 10px var(--font-geist-mono),
    monospace;
}
.project-body h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.project-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: #4d4655;
  font:
    600 10px/1 var(--font-geist-mono),
    monospace;
}
.impact-strip {
  position: relative;
  overflow: hidden;
  background: var(--purple);
  color: white;
}
.impact-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.23) 1px,
    transparent 0
  );
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}
.impact-inner {
  min-height: 350px;
  padding-block: 74px;
  display: grid;
  grid-template-columns: 160px 1fr 145px;
  align-items: center;
  gap: 45px;
  position: relative;
}
.impact-inner > p {
  margin: 0;
  align-self: start;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font:
    700 10px var(--font-geist-mono),
    monospace;
  color: rgba(255, 255, 255, 0.65);
}
.impact-inner h2 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.impact-inner h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.impact-stamp {
  width: 132px;
  height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(8deg);
  animation: stamp-spin 18s linear infinite;
}
.impact-stamp span {
  font:
    700 8px var(--font-geist-mono),
    monospace;
  letter-spacing: 0.13em;
}
.impact-stamp strong {
  font-size: 27px;
  line-height: 1.1;
}
@keyframes stamp-spin {
  to {
    transform: rotate(368deg);
  }
}

.expertise-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
  padding-block: 120px;
}
.expertise-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 75% 10%,
      rgba(124, 58, 237, 0.28),
      transparent 32%
    ),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size:
    auto,
    42px 42px,
    42px 42px;
}
.expertise-section > .shell {
  position: relative;
}
.section-heading.light > p {
  color: #aaa3b2;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.capability {
  padding: 34px 25px 36px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.capability:not(:first-child) {
  padding-left: 25px;
}
.capability:last-child {
  border: 0;
}
.capability > span {
  color: var(--purple-light);
  font:
    600 11px var(--font-geist-mono),
    monospace;
}
.capability h3 {
  margin: 65px 0 13px;
  font-size: 18px;
}
.capability p {
  margin: 0;
  color: #aaa3b2;
  font-size: 13px;
  line-height: 1.7;
}
.capability:hover {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.13), transparent);
  transform: translateY(-4px);
}
.capability:hover h3 {
  color: #c4b5fd;
}
.stack-row {
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  color: #8e8698;
  font:
    600 12px var(--font-geist-mono),
    monospace;
}
.process {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}
.process-heading h2 {
  margin: 0;
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 1;
  letter-spacing: -0.06em;
}
.process-flow {
  position: relative;
}
.process-flow::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 35px;
  bottom: 35px;
  width: 1px;
  background: linear-gradient(var(--purple), rgba(124, 58, 237, 0.12));
}
.process-flow article {
  position: relative;
  padding: 28px 30px 28px 80px;
  border-bottom: 1px solid var(--line);
  transition: 0.3s ease;
}
.process-flow article:hover {
  padding-left: 88px;
  background: rgba(255, 255, 255, 0.48);
  border-radius: 18px;
}
.process-flow article > span {
  position: absolute;
  left: 10px;
  top: 31px;
  z-index: 1;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--purple);
  color: var(--purple);
  font:
    700 9px var(--font-geist-mono),
    monospace;
}
.process-icon {
  float: right;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--ink);
  color: #c4b5fd;
  font:
    700 16px var(--font-geist-mono),
    monospace;
  transform: rotate(4deg);
}
.process-flow h3 {
  margin: 0 0 9px;
  font-size: 20px;
}
.process-flow p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
}
.about-copy {
  padding-top: 34px;
}
.about-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 20px;
}
.about-copy .text-link {
  margin-top: 10px;
}
.about-badges {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.about-badges span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.5);
  color: #4c4653;
  font-size: 10px;
  font-weight: 650;
}
.about-badges b {
  color: var(--purple);
  margin-right: 5px;
}
.vouches-section {
  padding-block: 120px;
  background: #e9e4ee;
  border-block: 1px solid rgba(11, 9, 16, 0.09);
}
.vouch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.vouch-card {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 9, 16, 0.12);
  border-radius: 20px;
  background: var(--paper-bright);
  color: var(--ink);
  text-align: left;
  cursor: zoom-in;
  box-shadow: 0 12px 35px rgba(24, 15, 36, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.vouch-card-wide {
  grid-column: 1 / -1;
}
.vouch-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 25px 55px rgba(42, 24, 63, 0.14);
}
.vouch-image-wrap {
  display: block;
  height: 270px;
  overflow: hidden;
  background: #0d0b17;
}
.vouch-card-wide .vouch-image-wrap {
  height: 340px;
}
.vouch-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.vouch-card:hover img {
  transform: scale(1.025);
}
.vouch-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
}
.vouch-info > span,
.vouch-info b,
.vouch-info small {
  display: block;
}
.vouch-info b {
  font-size: 14px;
}
.vouch-info small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}
.vouch-info i {
  color: var(--purple);
  font:
    700 9px var(--font-geist-mono),
    monospace;
  font-style: normal;
}
.vouch-note {
  max-width: 690px;
  margin: 22px 0 0;
  color: #817988;
  font:
    500 9px/1.65 var(--font-geist-mono),
    monospace;
}
.vouch-modal {
  width: min(1100px, calc(100% - 30px));
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #0c0911;
  color: white;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.62);
}
.vouch-modal::backdrop {
  background: rgba(9, 6, 13, 0.82);
  backdrop-filter: blur(12px);
}
.vouch-modal img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 100px);
  object-fit: contain;
  border-radius: 17px 17px 0 0;
}
.vouch-modal p {
  margin: 0;
  padding: 15px 18px;
  color: #8f8798;
  font:
    600 9px var(--font-geist-mono),
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.vouch-close {
  position: absolute;
  z-index: 2;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #17111f;
  color: white;
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
}
.contact {
  margin-bottom: 38px;
  background: var(--purple);
  color: white;
  min-height: 340px;
  padding: 62px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -100px;
  top: -150px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(255, 255, 255, 0.04),
    0 0 0 100px rgba(255, 255, 255, 0.03);
}
.contact::after {
  content: "G";
  position: absolute;
  right: 2%;
  top: -38%;
  color: rgba(255, 255, 255, 0.07);
  font-size: 440px;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}
.contact h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}
.contact p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.75);
}
.contact-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.button.white {
  background: white;
  color: var(--ink);
  box-shadow: 6px 6px 0 rgba(15, 8, 25, 0.35);
}
.contact-actions > a:not(.button) {
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 3px;
}
.contact-actions > a:not(.button):hover {
  color: white;
  border-color: white;
}
.footer {
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.footer .brand {
  color: var(--ink);
}

@supports (animation-timeline: view()) {
  .project-card,
  .capability,
  .process-flow article,
  .about-intro,
  .about-copy {
    animation: reveal-up linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 28%;
  }
  @keyframes reveal-up {
    from {
      opacity: 0;
      transform: translateY(35px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy .eyebrow,
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }
  .hero-lead {
    margin-inline: auto;
  }
  .hero-visual {
    min-height: 450px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
  .project-card.featured {
    display: block;
  }
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .capability:nth-child(2) {
    border-right: 0;
  }
  .capability:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  .about {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .impact-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .impact-stamp {
    position: absolute;
    right: 0;
    top: 35px;
    width: 105px;
    height: 105px;
  }
  .process {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .fan12-feature {
    padding: 52px;
  }
  .fan12-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .fan12-emblem {
    width: 320px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }
  .nav {
    height: 60px;
    top: 8px;
    margin-top: 8px;
  }
  .nav-links {
    display: none;
  }
  .brand > span:last-child {
    display: none;
  }
  .nav-cta {
    padding: 10px 13px;
  }
  .hero {
    min-height: 0;
    padding-block: 68px 48px;
    gap: 28px;
  }
  .hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 22px;
  }
  .hero-trust {
    margin-top: 34px;
  }
  .hero-visual {
    min-height: 400px;
    transform: scale(0.9);
    margin-inline: -20px;
  }
  .portrait-wrap {
    width: 240px;
    height: 320px;
  }
  .hero-visual::before {
    width: 300px;
    height: 300px;
  }
  .orbit-one {
    width: 350px;
    height: 350px;
  }
  .orbit-two {
    width: 390px;
  }
  .floating-card.years {
    left: 0;
  }
  .floating-card.status {
    right: 0;
  }
  .code-card {
    left: -2%;
    bottom: -3%;
    width: 205px;
  }
  .proof {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
  }
  .proof > div,
  .proof > div:first-child {
    padding: 0 12px;
    border-left: 1px solid var(--line);
  }
  .proof > div:nth-child(odd) {
    border: 0;
    padding-left: 0;
  }
  .section,
  .expertise-section {
    padding-block: 82px;
  }
  .section-heading {
    margin-bottom: 34px;
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project-card.featured {
    grid-column: auto;
  }
  .project-media,
  .featured .project-media {
    min-height: 240px;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .capability,
  .capability:not(:first-child) {
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 26px 0;
  }
  .capability h3 {
    margin-top: 28px;
  }
  .stack-row {
    justify-content: flex-start;
  }
  .about-copy {
    padding-top: 10px;
  }
  .contact {
    width: calc(100% - 30px);
    min-height: 0;
    padding: 38px 25px;
    border-radius: 22px;
  }
  .contact::after {
    font-size: 280px;
    top: 5%;
  }
  .impact-inner {
    min-height: 430px;
    padding-block: 65px;
  }
  .impact-inner h2 {
    padding-top: 25px;
  }
  .impact-stamp {
    top: 25px;
    right: -18px;
    width: 88px;
    height: 88px;
  }
  .impact-stamp strong {
    font-size: 20px;
  }
  .process-flow article {
    padding-left: 65px;
    padding-right: 8px;
  }
  .process-flow article:hover {
    padding-left: 65px;
  }
  .process-icon {
    width: 40px;
    height: 40px;
  }
  .footer {
    height: auto;
    padding-block: 32px;
    flex-direction: column;
    gap: 20px;
  }
  .pointer-glow {
    display: none;
  }
  .fan12-feature {
    width: calc(100% - 30px);
    margin-top: 48px;
    padding: 38px 24px;
    border-radius: 22px;
  }
  .fan12-kicker {
    margin-bottom: 34px;
  }
  .fan12-copy h2 {
    font-size: clamp(52px, 18vw, 72px);
  }
  .fan12-summary {
    font-size: 15px;
  }
  .fan12-stats {
    grid-template-columns: 1fr;
  }
  .fan12-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .fan12-emblem {
    width: min(100%, 280px);
  }
  .fan12-emblem strong {
    font-size: 66px;
  }
  .vouches-section {
    padding-block: 82px;
  }
  .vouch-grid {
    grid-template-columns: 1fr;
  }
  .vouch-card-wide {
    grid-column: auto;
  }
  .vouch-image-wrap,
  .vouch-card-wide .vouch-image-wrap {
    height: 220px;
  }
  .vouch-info {
    padding: 17px;
  }
  .vouch-close {
    top: 8px;
    right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
  .signal-track,
  .portrait-wrap,
  .code-card,
  .orbit,
  .hero-visual::before,
  .impact-stamp,
  .hero h1 em,
  .fan12-ring {
    animation: none !important;
  }
}
