:root {
  color-scheme: light;
  --ink: #1f2937;
  --muted: #5f6b7a;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --blue: #1f6feb;
  --background: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 2rem;
}

.shell {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: min(100%, 68rem);
  margin: 0 auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
}

.status {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

main {
  display: grid;
  flex: 1;
  place-items: center;
  padding: 5rem 0;
}

.hero {
  width: min(100%, 48rem);
  text-align: center;
}

.hero-logo {
  width: clamp(8.5rem, 19vw, 11.5rem);
  height: auto;
  margin-bottom: 2rem;
}

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

h1 {
  max-width: 13ch;
  margin: 0 auto;
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: -0.065em;
  line-height: 1;
}

.headline-accent {
  color: var(--blue);
}

.intro {
  max-width: 38rem;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.65;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  text-align: left;
}

.card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: #ffffff;
}

.card-icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.9rem;
  place-items: center;
  border-radius: 0.45rem;
  background: var(--soft);
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
}

.card h2 {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.made-with {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-logo {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

@media (max-width: 40rem) {
  .page {
    padding: 1.35rem;
  }

  main {
    padding: 3.75rem 0;
  }

  .hero-logo {
    width: clamp(8rem, 39vw, 10rem);
    margin-bottom: 1.5rem;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.5rem, 11.5vw, 3.7rem);
  }

  .cards {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }
}

@media (max-width: 30rem) {
  .page {
    padding: 1.1rem;
  }

  .status {
    display: none;
  }

  .intro {
    line-height: 1.58;
  }

  .card {
    padding: 1rem;
  }
}
