:root {
  --background: #faf9f8;
  --foreground: #26232a;
  --muted-foreground: #6f7480;
  --border: #e2e5ea;
  --accent-ruby: #891248;
  --surface-muted: #f1efee;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(100%, 1152px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-header {
  border-bottom: 1px solid rgba(226, 229, 234, 0.6);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}

.logo {
  display: block;
  width: auto;
  height: 32px;
  color: var(--accent-ruby);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}

.nav-links a {
  color: var(--muted-foreground);
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--accent-ruby);
}

.hero-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--muted-foreground);
  font-size: 12px;
  letter-spacing: 0.3em;
}

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

h1 {
  max-width: 768px;
  margin-bottom: 0;
  font-size: clamp(40px, 7vw, 60px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.hero-copy {
  max-width: 672px;
  margin-top: 32px;
  margin-bottom: 0;
  color: var(--muted-foreground);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 16px;
  row-gap: 8px;
  margin-top: 40px;
  margin-bottom: 0;
  color: var(--muted-foreground);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.dot {
  color: var(--accent-ruby);
}

.muted-section {
  background: var(--surface-muted);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.vision-grid img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.vision-content h2,
.build-section h2 {
  font-size: clamp(30px, 4.5vw, 40px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.vision-content p {
  margin-top: 24px;
  margin-bottom: 0;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.vision-content p + p {
  margin-top: 16px;
}

.build-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.build-section h2 {
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.ruby-line {
  width: 40px;
  height: 1px;
  margin-bottom: 20px;
  background: var(--accent-ruby);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.7;
}

.reach-content {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.reach-content .eyebrow {
  margin-bottom: 16px;
}

.reach-content > p:last-child {
  max-width: 768px;
  margin: 0 auto;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 300;
  line-height: 1.35;
}

.site-footer {
  border-top: 1px solid var(--border);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 48px;
  padding-bottom: 48px;
  color: var(--muted-foreground);
  font-size: 14px;
}

.footer-logo {
  display: block;
  width: auto;
  height: 24px;
  margin-bottom: 12px;
  color: var(--accent-ruby);
}

.footer-wrap p {
  margin-bottom: 0;
}

.footer-contact p + p {
  margin-top: 4px;
}

@media (max-width: 768px) {
  .nav-wrap {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .nav-links {
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero-section,
  .vision-grid,
  .build-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .vision-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
  }
}
