:root {
  color-scheme: dark;
  --bg: #262626;
  --card: #303030;
  --raised: #363636;
  --accent: #ffe135;
  --accent-hover: #ffd91a;
  --text: #f7f7f2;
  --muted: #b7b7ae;
  --border: #474747;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 225, 53, 0.12), transparent 32rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

main {
  width: min(68rem, calc(100% - 2rem));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 3rem 0;
}

.hero {
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  font-weight: 750;
  letter-spacing: -0.03em;
}

.brand img {
  width: 2.75rem;
  height: 2.75rem;
}

h1 {
  max-width: 12ch;
  margin: 2rem 0 1rem;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

h1 span {
  color: var(--accent);
}

p {
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.card {
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: rgba(48, 48, 48, 0.86);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.28);
}

.signal {
  width: 100%;
  height: auto;
  display: block;
}

.pill {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.7rem 1rem;
  color: var(--bg);
  background: var(--accent);
  border-radius: 999px;
  font-weight: 750;
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .card {
    order: -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

