:root {
  --ink: #171717;
  --muted: #666;
  --line: #ebebeb;
  --blue: #0a72ef;
  --pink: #de1d8d;
  --red: #ff5b4f;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Geist, Inter, ui-sans-serif, system-ui;
  letter-spacing: -0.015em;
}
.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #ffffffdd;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px #ebebeb;
}
.navin {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mark {
  font-weight: 600;
}
.links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.links a,
a {
  color: inherit;
  text-decoration: none;
}
.nav a:hover {
  text-decoration: underline;
}
.btn {
  border: 0;
  background: #171717;
  color: #fff;
  border-radius: 7px;
  padding: 11px 16px;
  font-weight: 500;
  cursor: pointer;
}
.hero {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 64px;
  padding: 92px 0;
}
.kicker {
  font:
    500 12px/1.4 ui-monospace,
    monospace;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(48px, 7.5vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.072em;
  margin: 16px 0 24px;
  max-width: 800px;
}
.lead {
  font-size: 20px;
  line-height: 1.6;
  color: #4d4d4d;
  max-width: 630px;
}
.portrait {
  aspect-ratio: 4/5;
  border-radius: 18px;
  background: linear-gradient(145deg, #f4f4f4, #fff);
  box-shadow:
    0 0 0 1px #e8e8e8,
    0 30px 80px #0000000d;
  position: relative;
  overflow: hidden;
}
.portrait:before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50% 50% 44% 44%;
  background: linear-gradient(145deg, #171717, #6b6b6b);
}
.portrait:after {
  content: "Available for focused builds";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  padding: 13px;
  border-radius: 9px;
  box-shadow: 0 0 0 1px #e8e8e8;
  font:
    500 12px ui-monospace,
    monospace;
}
.section {
  padding: 90px 0;
  border-top: 1px solid var(--line);
}
.sectionhead {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 38px;
}
.section h2 {
  font-size: 40px;
  letter-spacing: -0.055em;
  margin: 0;
}
.sectionhead p {
  color: var(--muted);
  max-width: 470px;
  margin: 0;
}
.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.project {
  border-radius: 13px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 2px 2px rgba(0, 0, 0, 0.04),
    0 12px 30px -20px #000;
  padding: 14px;
  transition: 0.2s;
}
.project:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.14),
    0 18px 35px -25px #000;
}
.visual {
  height: 300px;
  border-radius: 9px;
  background: #f4f4f4;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.visual.orbit {
  background:
    radial-gradient(circle at 50% 50%, #92bfff 0 3%, transparent 4%),
    radial-gradient(
      circle at 50% 50%,
      transparent 0 31%,
      #cddfff 32% 33%,
      transparent 34%
    ),
    #f4f8ff;
}
.visual.dash {
  background: linear-gradient(135deg, #f7f7f7 50%, #ecf1ff);
}
.miniui {
  width: 72%;
  height: 62%;
  background: white;
  border-radius: 10px;
  box-shadow:
    0 0 0 1px #ddd,
    0 18px 30px #0001;
  display: grid;
  grid-template-columns: 28% 1fr;
  gap: 10px;
  padding: 12px;
}
.miniui i {
  background: #f1f1f1;
  border-radius: 5px;
}
.project h3 {
  font-size: 24px;
  margin: 20px 4px 4px;
  letter-spacing: -0.04em;
}
.meta {
  color: var(--muted);
  margin: 0 4px 8px;
}
.pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  box-shadow: 0 0 0 1px var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.step {
  background: #fff;
  padding: 28px;
}
.step b {
  display: block;
  font:
    500 12px ui-monospace,
    monospace;
  text-transform: uppercase;
  margin-bottom: 38px;
}
.step:nth-child(1)b {
  color: var(--blue);
}
.step:nth-child(2)b {
  color: var(--pink);
}
.step:nth-child(3)b {
  color: var(--red);
}
.step h3 {
  font-size: 24px;
  margin: 0 0 10px;
}
.step p {
  color: var(--muted);
  margin: 0;
}
.contactgrid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.contactgrid h2 {
  font-size: 48px;
}
.form {
  display: grid;
  gap: 14px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 7px;
}
.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 13px 14px;
  box-shadow: 0 0 0 1px #d9d9d9;
  font: inherit;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: 2px solid #0a72ef;
  outline-offset: 1px;
}
.feedback {
  min-height: 24px;
  color: #176b38;
}
.foot {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  color: var(--muted);
  font-size: 13px;
}
.subhero {
  padding: 100px 0 60px;
}
.subhero h1 {
  font-size: clamp(46px, 7vw, 78px);
  letter-spacing: -0.065em;
  line-height: 0.97;
  margin: 12px 0;
}
.prose {
  max-width: 760px;
  font-size: 19px;
  line-height: 1.7;
  color: #3f3f3f;
}
.back {
  display: inline-block;
  margin-top: 32px;
  color: #0072f5;
}
.tag {
  display: inline-block;
  background: #ebf5ff;
  color: #0068d6;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
}
@media (max-width: 780px) {
  .links a:not(.btn) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 0;
  }
  .portrait {
    max-height: 430px;
  }
  .projects,
  .pipeline,
  .contactgrid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .sectionhead {
    display: block;
  }
  .sectionhead p {
    margin-top: 14px;
  }
  .visual {
    height: 220px;
  }
}
