:root {
  --navy: #0b1b32;
  --blue: #1d4ed8;
  --muted: #64748b;
  --page: #f8fafc;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display: 'Outfit', 'Inter', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font);
  background:
    radial-gradient(circle at top, #eff6ff 0%, var(--page) 42%);
  color: var(--navy);
}

.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}

.logo {
  width: min(220px, 70vw);
  height: auto;
  margin-bottom: 1.75rem;
}

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

h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.detail {
  margin: 0 auto 0.75rem;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #475569;
}

.meta {
  margin: 0 auto 2rem;
  max-width: 36rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.website-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-width: 220px;
  padding: 0.95rem 1.75rem;
  background: var(--blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.9rem;
  box-shadow: 0 16px 32px -18px rgb(29 78 216 / 0.8);
  transition: background 0.2s ease, transform 0.2s ease;
}

.website-btn:hover {
  background: #1e40af;
  transform: translateY(-1px);
}

.website-btn svg {
  width: 18px;
  height: 18px;
}
