@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  src: url("/fonts/Manrope-VariableFont_wght.ttf") format("truetype");
}

:root {
  color-scheme: dark;
  --ink: #f4f4f5;
  --muted: #a1a1aa;
  --line: #27272a;
  --paper: #09090b;
  --field: #18181b;
  --panel: #111113;
  --accent: #e4e4e7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--paper), var(--field));
  color: var(--ink);
  font-family:
    "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.page {
  min-height: 100vh;
}

.hero {
  display: grid;
  min-height: 72vh;
  padding: clamp(2rem, 5vw, 5rem);
  align-items: center;
  justify-items: center;
}

.content {
  max-width: 760px;
  text-align: center;
}

.hero-logo {
  display: block;
  width: min(100%, 720px);
  height: auto;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 600;
  line-height: 0.9;
}

.lede {
  max-width: 640px;
  margin-bottom: 2rem;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 244, 245, 0.18);
  border-radius: 999px;
  padding: 0 1.25rem;
  background: var(--ink);
  color: #09090b;
  font-weight: 700;
  text-decoration: none;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.details > div {
  min-height: 220px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(17, 17, 19, 0.92);
}

h2 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.details p {
  max-width: 28rem;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: clamp(1.5rem, 5vw, 5rem);
}

.feature-tile {
  display: grid;
  min-height: 260px;
  align-content: end;
  border: 1px solid rgba(244, 244, 245, 0.1);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(135deg, #18181b, #0b0b0d);
  color: #fff;
  text-decoration: none;
}

.feature-label {
  margin-bottom: 0.9rem;
  color: rgba(244, 244, 245, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-logo {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin-bottom: 0.7rem;
  filter: invert(1) brightness(1.8);
}

.company-name {
  margin-bottom: 0.7rem;
  color: #f4f4f5;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 0.95;
}

.feature-copy {
  max-width: 620px;
  color: rgba(244, 244, 245, 0.7);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.55;
}

.feature-action {
  margin-top: 1.5rem;
  color: #f4f4f5;
  font-weight: 700;
}

@media (max-width: 760px) {
  .hero {
    min-height: 64vh;
  }

  .details {
    grid-template-columns: 1fr;
  }

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

  .details > div {
    min-height: auto;
  }
}
