:root {
  color-scheme: light;
  --slate-950: #0f172a;
  --slate-800: #1e293b;
  --slate-600: #475569;
  --slate-300: #cbd5e1;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate-950);
  background:
    radial-gradient(circle at top left, rgba(219, 234, 254, 0.9), transparent 34rem),
    linear-gradient(135deg, var(--white) 0%, var(--blue-50) 56%, #f8fafc 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(100%, 68rem);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  display: grid;
  align-content: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.hero,
.services,
.footer {
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.hero {
  padding: clamp(2rem, 6vw, 4.75rem);
  border-radius: 8px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--slate-600);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(3.5rem, 13vw, 8.5rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: 0;
}

.tagline {
  margin-bottom: 1.5rem;
  color: var(--slate-800);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 650;
}

.statement {
  margin-bottom: 1rem;
  color: var(--slate-950);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  line-height: 1.08;
  font-weight: 760;
}

.intro {
  max-width: 48rem;
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.services {
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 8px;
}

.services h2 {
  margin-bottom: 1rem;
  color: var(--slate-800);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services li {
  position: relative;
  min-height: 2.75rem;
  padding: 0.7rem 0.9rem 0.7rem 2.2rem;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.78);
  color: var(--slate-800);
  font-weight: 650;
}

.services li::before {
  content: "";
  position: absolute;
  top: 1.08rem;
  left: 0.95rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.12);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 8px;
  color: var(--slate-600);
}

.footer p {
  margin-bottom: 0;
  font-weight: 700;
}

.footer a {
  color: var(--slate-950);
  font-weight: 800;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .page-shell {
    align-content: start;
  }

  .services ul {
    grid-template-columns: 1fr;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
