:root {
  color-scheme: light;
  --background: #ffffff;
  --text: #111111;
  --muted: #242424;
  --surface-muted: #f3f4f6;
  --button-border: #1c1c1c;
  --button-primary: #121212;
  --button-primary-hover: #2a2a2a;
  --focus: #4776d0;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family:
    Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}

a {
  color: inherit;
}

.landing {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.hero {
  width: min(100%, 760px);
  margin-top: clamp(-24px, -3vh, 0px);
  text-align: center;
}

.logo {
  width: clamp(74px, 8vw, 104px);
  aspect-ratio: 1;
  margin: 0 auto 22px;
  overflow: hidden;
  background: #ffffff;
  border: 5px solid #000000;
  border-radius: 10px;
}

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

h1 {
  margin: 0;
  font-size: 72px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2.5px;
}

.tagline {
  margin: 32px auto 0;
  color: #000000;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -1px;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 52px auto 0;
  max-width: 320px;
}

.button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border: 2px solid var(--button-border);
  border-radius: 999px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 4px;
}

.button-secondary {
  background: transparent;
  color: var(--muted);
}

.button-secondary:hover {
  background: var(--surface-muted);
}

.button-primary {
  background: var(--button-primary);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--button-primary-hover);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.metadata {
  display: grid;
  gap: 2px;
  margin: 40px 0 0;
  color: #111111;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.metadata strong {
  font-weight: 900;
}

@media (max-width: 680px) {
  .landing {
    padding: 32px 18px;
  }

  .hero {
    margin-top: 0;
  }

  h1 {
    font-size: 48px;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}