:root {
  --bg: #050505;
  --fg: #fafafa;
  --muted: #a1a1aa;
  --line: #27272a;
  --card: #0a0a0a;
  --soft: #18181b;
  --radius: 14px;
}
body {
  --mouse-x: 50vw;
  --mouse-y: 50vh;
}
body:before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    430px circle at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.085),
    rgba(255, 255, 255, 0.022) 34%,
    transparent 72%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
}
body.spotlight-active:before {
  opacity: 1;
}
body > * {
  position: relative;
  z-index: 1;
}
.spotlight-copy {
  --spotlight-strength: 0;
  filter: brightness(calc(1 + var(--spotlight-strength) * 0.3));
  text-shadow: 0 0 calc(var(--spotlight-strength) * 16px)
    rgba(255, 255, 255, 0.13);
  transition:
    filter 0.16s linear,
    text-shadow 0.16s linear;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(39, 39, 42, 0.8);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}
.nav-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-weight: 700;
  letter-spacing: -0.04em;
}
.brand span {
  color: #71717a;
}
.links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #a1a1aa;
  font-size: 0.9rem;
}
.links a:hover {
  color: #fff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 9px;
  background: #fafafa;
  color: #09090b;
  font-weight: 650;
  font-size: 0.92rem;
  border: 1px solid #fafafa;
  transition: 0.2s;
}
.btn:hover {
  background: #d4d4d8;
  border-color: #d4d4d8;
  transform: translateY(-1px);
}
.btn.outline {
  background: transparent;
  color: #fafafa;
  border-color: #3f3f46;
}
.btn.outline:hover {
  background: #18181b;
}
.hero {
  min-height: 78vh;
  display: grid;
  align-content: center;
  padding: 100px 0 80px;
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 78% 35%,
    rgba(255, 255, 255, 0.075),
    transparent 27%
  );
  pointer-events: none;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d4d4d8;
  font-size: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
  width: max-content;
  background: #09090b;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.65);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.65);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
  max-width: 970px;
  margin: 30px 0;
}
.hero h1 span {
  color: #71717a;
}
.hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}
.hero p {
  max-width: 560px;
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0;
}
.actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.section {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.eyebrow {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #71717a;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 42px;
}
.section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin: 0;
  max-width: 650px;
}
.section-head p {
  color: var(--muted);
  max-width: 380px;
  margin: 0;
}
.projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.project {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, #111, #080808);
  min-height: 360px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: 0.25s;
}
.project:hover {
  border-color: #52525b;
  transform: translateY(-3px);
}
.project:after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid #27272a;
  border-radius: 50%;
  right: -70px;
  top: -70px;
  box-shadow:
    0 0 0 30px rgba(255, 255, 255, 0.018),
    0 0 0 60px rgba(255, 255, 255, 0.012);
}
.project small {
  color: #71717a;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.project h3 {
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  margin: 0 0 8px;
}
.project p {
  color: var(--muted);
  margin: 0;
  max-width: 430px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}
.tag {
  border: 1px solid #303036;
  padding: 4px 8px;
  border-radius: 6px;
  color: #a1a1aa;
  font-size: 0.76rem;
}
.arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  font-size: 1.3rem;
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.service {
  padding: 30px;
  min-height: 230px;
  background: var(--card);
}
.service + .service {
  border-left: 1px solid var(--line);
}
.num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #52525b;
  font-size: 0.82rem;
}
.service h3 {
  font-size: 1.25rem;
  margin: 46px 0 10px;
  letter-spacing: -0.03em;
}
.service p {
  color: var(--muted);
  margin: 0;
}
.process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.steps {
  border-top: 1px solid var(--line);
}
.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.step b {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #52525b;
  font-size: 0.82rem;
}
.step h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}
.step p {
  margin: 0;
  color: var(--muted);
}
.cta {
  padding: 100px 0 40px;
}
.cta-box {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(32px, 6vw, 70px);
  background: linear-gradient(135deg, #111, #050505);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.cta h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin: 0;
}
.cta p {
  color: var(--muted);
  max-width: 460px;
  margin: 20px 0 0;
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0;
  color: #71717a;
  font-size: 0.85rem;
}
.mobile {
  display: none;
}
@media (max-width: 800px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }
  .links {
    display: none;
  }
  .mobile {
    display: inline-flex;
  }
  .hero {
    min-height: auto;
    padding: 90px 0 70px;
  }
  .hero h1 {
    font-size: clamp(3rem, 17vw, 5.3rem);
    margin: 24px 0;
  }
  .hero-bottom,
  .section-head,
  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
  .actions {
    width: 100%;
  }
  .actions .btn {
    flex: 1;
  }
  .section {
    padding: 72px 0;
  }
  .projects {
    grid-template-columns: 1fr;
  }
  .project {
    min-height: 320px;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .service {
    min-height: 190px;
  }
  .service + .service {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .process {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .cta {
    padding-top: 72px;
  }
  .footer {
    flex-direction: column;
  }
  .section-head p {
    max-width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}

.profile {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--fg);
  text-decoration: none;
  flex-shrink: 0;
}

.profile-photo-wrap {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: #111;
  border: 1px solid #27272a;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.025),
    0 4px 14px rgba(0, 0, 0, 0.35);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.profile-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.profile:hover .profile-photo-wrap {
  transform: scale(1.05);
  border-color: #52525b;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.04),
    0 5px 18px rgba(0, 0, 0, 0.45);
}

.profile-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}

.profile-info strong {
  color: #fafafa;
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.profile-info span {
  color: #71717a;
  font-size: 0.72rem;
  margin-top: 4px;
  white-space: nowrap;
}
