:root {
  color-scheme: light;
  --ink: #0a0a0a;
  --muted: #3f4a59;
  --surface: #f2f5f9;
  --surface-strong: #ffffff;
  --accent: #1f4ed8;
  --accent-dark: #1539a3;
  --pill: #e7edf6;
  --shadow: 0 28px 50px rgba(6, 20, 45, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Archivo", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #ffffff 0%, #f4f7fb 55%, #edf1f7 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.page {
  width: min(1100px, 92vw);
  padding: 56px 0 80px;
  display: grid;
  gap: 28px;
}

.hero {
  padding: 48px clamp(28px, 6vw, 64px);
  background: var(--surface-strong);
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: lift-in 700ms ease both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -120px -80px auto auto;
  width: 320px;
  height: 320px;
  background: conic-gradient(from 210deg, #b9c8ef, #ffffff, #dfe7f7, #b9c8ef);
  border-radius: 50%;
  opacity: 0.45;
}

.hero__eyebrow {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-size: 0.78rem;
}

.hero__title {
  font-family: "Domine", "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.12;
  margin: 18px 0 18px;
  max-width: 18ch;
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 52ch;
}

.hero__cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
}

.hero__note {
  font-size: 0.9rem;
  color: var(--muted);
}

.panel {
  background: var(--surface-strong);
  border-radius: 24px;
  padding: 36px clamp(24px, 5vw, 56px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  animation: fade-in 700ms ease both;
}

.panel--alt {
  background: var(--surface);
}

.panel--contact {
  background: linear-gradient(135deg, #f7f9fd 0%, #eef2f9 60%, #e6edf8 100%);
  animation-delay: 140ms;
}

.panel__content {
  display: grid;
  gap: 18px;
}

.panel:nth-of-type(1) {
  animation-delay: 80ms;
}

.panel:nth-of-type(2) {
  animation-delay: 160ms;
}

h2 {
  font-size: 1.6rem;
  font-weight: 600;
}

p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-row span {
  background: var(--pill);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.founders {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.founders h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 12px 24px rgba(31, 78, 216, 0.22);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(31, 78, 216, 0.28);
}

.button--ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid rgba(141, 52, 18, 0.3);
  box-shadow: none;
}

@media (max-width: 720px) {
  .page {
    padding-top: 36px;
  }

  .hero {
    padding: 36px 24px;
  }

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

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .hero,
  .panel {
    animation: none !important;
  }
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
