:root {
  --canvas: #fdfcfc;
  --sand: #f5f3f1;
  --ink: #000000;
  --driftwood: #777169;
  --fog: #a59f97;
  --border: #e5e5e5;
  --white: #ffffff;
  --violet: #0447ff;
  --orange: #ff4704;
  --ring: rgba(0, 0, 0, 0.06) 0 0 0 1px, rgba(0, 0, 0, 0.04) 0 1px 2px 0;
  --edge: rgba(0, 0, 0, 0.4) 0 0 1px 0, rgba(0, 0, 0, 0.04) 0 1px 1px 0, rgba(0, 0, 0, 0.04) 0 2px 4px 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(229, 229, 229, 0.8);
  background: rgba(253, 252, 252, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-mark {
  font-weight: 700;
  letter-spacing: -0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-links a {
  color: var(--driftwood);
}

.nav-links a:hover {
  color: var(--ink);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
}

.button-secondary {
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border);
  box-shadow: var(--ring);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--sand);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(0.92) brightness(0.72);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.05)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 12vh;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--fog);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

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

h1,
h2 {
  font-family: "Figtree", "Inter", sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

p {
  color: var(--driftwood);
  font-size: 16px;
  line-height: 1.6;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.stats {
  width: min(1200px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -48px auto 0;
  position: relative;
  z-index: 4;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--border);
  box-shadow: var(--edge);
}

.stats article {
  min-height: 128px;
  padding: 24px;
  background: var(--white);
}

.metric {
  display: block;
  margin-bottom: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 22px;
}

.label {
  color: var(--driftwood);
  font-size: 14px;
}

.section {
  width: min(1200px, calc(100% - 32px));
  margin: 112px auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading.narrow {
  max-width: 720px;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card,
.status-card {
  border-radius: 20px;
  background: var(--sand);
}

.feature-card {
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card div {
  padding: 28px;
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 28px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background: var(--white);
  color: var(--driftwood);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.media-panel,
.copy-panel {
  border-radius: 24px;
  background: var(--sand);
}

.media-panel {
  overflow: hidden;
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.copy-panel {
  padding: clamp(28px, 5vw, 56px);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 0;
  border-top: 1px solid var(--border);
  color: var(--ink);
  font-size: 15px;
}

.status-section {
  margin-bottom: 64px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.status-card {
  padding: 28px;
  min-height: 220px;
  border: 1px solid transparent;
}

.status-card span {
  display: inline-flex;
  margin-bottom: 56px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background: var(--canvas);
  color: var(--driftwood);
  font-size: 13px;
  font-weight: 500;
}

.status-card.complete span {
  color: var(--ink);
}

.status-card.active {
  background:
    linear-gradient(135deg, rgba(4, 71, 255, 0.08), rgba(255, 71, 4, 0.08)),
    var(--sand);
  border-color: rgba(0, 0, 0, 0.06);
}

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

  .hero {
    min-height: 760px;
  }

  .stats,
  .build-grid,
  .split-section,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: -24px;
  }

  .media-panel img {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .brand {
    font-size: 12px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-bottom: 10vh;
  }

  .section {
    margin: 80px auto;
  }

  .stats article,
  .feature-card div,
  .status-card {
    padding: 22px;
  }
}
