:root {
  --ink: #09090b;
  --pearl: #eeeae4;
  --violet: #7557ff;
  --muted: #5e5e64;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--pearl);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.hero {
  display: grid;
  min-height: 100svh;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0;
  grid-template-rows: 1fr auto;
}

.content {
  display: flex;
  max-width: 900px;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(52px, 9vh, 88px);
}

.status {
  margin: 0 0 34px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--violet);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(62px, 10vw, 132px);
  font-weight: 620;
  line-height: 0.86;
  letter-spacing: -0.07em;
}

h1 em {
  color: var(--violet);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.intro {
  max-width: 700px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.65;
}

.details {
  display: grid;
  padding-top: 26px;
  grid-template-columns: 0.8fr 1.2fr 2fr;
  gap: 28px;
  align-items: start;
  border-top: 1px solid rgba(9, 9, 11, 0.18);
}

.details p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.details strong {
  color: var(--ink);
}

@media (max-width: 760px) {
  .hero {
    width: min(100% - 32px, 1180px);
    padding-top: 20px;
  }

  .content {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(58px, 18vw, 92px);
  }

  .details {
    margin-top: 72px;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
