:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f8fb;
  color: #152238;
}

* { box-sizing: border-box; }

body { margin: 0; min-height: 100vh; }

main {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 6vw, 72px);
  background:
    radial-gradient(circle at 82% 18%, rgba(85, 113, 255, .18), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(80, 210, 190, .12), transparent 30%);
}

.brand { display: flex; align-items: center; gap: 11px; }
.brand > span:last-child { display: flex; flex-direction: column; }
.brand strong { font-size: 24px; letter-spacing: -.8px; }
.brand small { color: #64748b; font-size: 10px; font-weight: 700; }

.mark {
  align-items: center;
  background: #5267d9;
  border-radius: 10px;
  display: flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.mark i {
  background: white;
  border-radius: 3px;
  display: block;
  height: 14px;
  transform: rotate(-18deg);
  width: 5px;
}
.mark i + i { margin-left: -1px; }
.mark i:nth-child(2) { background: #b9efc6; height: 20px; }
.mark i:nth-child(3) { height: 10px; }

section { margin: auto 0; max-width: 820px; padding: 12vh 0; }
.eyebrow { color: #5267d9; font-size: 12px; font-weight: 900; letter-spacing: 2px; }
h1 { font-size: clamp(44px, 8vw, 92px); letter-spacing: -.055em; line-height: .98; margin: 20px 0 28px; }
.copy { color: #64748b; font-size: clamp(17px, 2vw, 21px); margin: 0; }

@media (max-width: 600px) {
  main { padding: 28px 22px; }
  section { padding: 10vh 0; }
  h1 { font-size: 46px; }
}
