:root {
  color-scheme: dark;
  font-family: "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --ink: #f1f0eb;
  --muted: #a4a29b;
  --surface: #11110f;
}

* { box-sizing: border-box; }

html { min-width: 320px; background: var(--surface); }

body { margin: 0; color: var(--ink); }

a { color: inherit; }

.landing {
  width: min(100%, 1360px);
  min-height: 100dvh;
  margin-inline: auto;
  padding: 0 clamp(22px, 5.4vw, 86px);
  display: flex;
  flex-direction: column;
}

.topbar {
  position: relative;
  z-index: 1;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -1.5px;
  text-decoration: none;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 12px;
  text-decoration-color: rgb(241 240 235 / 45%);
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1.75;
  overflow: hidden;
  border-radius: 12px;
  background: #238cf0;
}

.hero-image {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image { object-fit: cover; object-position: center; }

.message {
  padding: 24px 4px 38px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}

.message h1 { max-width: 640px; margin: 0; font-size: clamp(22px, 3vw, 36px); font-weight: 500; letter-spacing: -.045em; line-height: 1.12; }
.message p { max-width: 340px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

@media (max-width: 700px) {
  .landing { padding-inline: 12px; }
  .topbar { height: 64px; padding-inline: 8px; }
  .topbar-link { font-size: 11px; }
  .hero { aspect-ratio: 1.55; }
  .hero-image { object-position: center; }
  .message { align-items: flex-start; flex-direction: column; gap: 10px; padding: 20px 8px 32px; }
  .message h1 { max-width: 470px; font-size: clamp(22px, 7vw, 29px); }
  .message p { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
