﻿:root {
  color-scheme: light;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: #f5f7f8;
  color: #111827;
  --surface: #ffffff;
  --border: #dbeafe;
  --accent: #2563eb;
  --muted: #64748b;
  --shadow: 0 28px 70px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(37,99,235,0.08), transparent 30%), #f5f7f8;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.landing-hero {
  width: min(100%, 960px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.02;
}

.lede {
  margin: 24px 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease;
}

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

.button.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
}

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

.contact-panel {
  padding: 32px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148,163,184,0.18);
  display: grid;
  gap: 16px;
}

.contact-panel p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.contact-panel a {
  font-weight: 700;
  color: var(--ink);
}

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

  .hero-actions {
    flex-direction: column;
  }
}
