:root {
  color-scheme: light;
  --background: #f7f9fc;
  --foreground: #0f2540;
  --card: #ffffff;
  --primary: #0b2f5b;
  --primary-foreground: #f8fafc;
  --muted: #eef2f8;
  --muted-foreground: #5b6b80;
  --border: #dbe3ee;
  --gold: #f5a623;
  --radius: 0.625rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--background);
}

.header-inner,
.footer-inner {
  width: min(100% - 3rem, 72rem);
  margin-inline: auto;
}

.header-inner {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  border-radius: 0.2rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand span,
footer strong span {
  color: var(--gold);
}

.button {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease, transform 150ms ease;
}

.button-small {
  padding-inline: 1rem;
}

.button:hover {
  background: #123f72;
}

.button:active {
  transform: translateY(1px);
}

a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.hero {
  width: min(100% - 3rem, 72rem);
  margin-inline: auto;
  display: grid;
  align-items: center;
  gap: 3rem;
  padding-block: 4rem;
}

.eyebrow,
.process h2 {
  margin: 0;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Avenir Next", Avenir, ui-sans-serif, system-ui, sans-serif;
}

h1 {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.introduction {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
}

.hero-action {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-action > p {
  max-width: 20rem;
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.55;
}

.process {
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--card);
  padding: 1.75rem;
  box-shadow: 0 14px 40px rgba(15, 37, 64, 0.07);
}

.process ol {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.process li {
  display: flex;
  gap: 1rem;
  padding-block: 1rem;
}

.process li + li {
  border-top: 1px solid var(--border);
}

.step-number {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 700;
}

.process h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.process li p {
  margin: 0.35rem 0 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

footer {
  border-top: 1px solid var(--border);
  background: var(--muted);
}

.footer-inner {
  min-height: 5.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner strong,
.footer-inner a {
  color: var(--foreground);
}

.footer-inner a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  border-radius: 0.2rem;
  font-weight: 600;
  text-underline-offset: 4px;
}

@media (min-width: 64rem) {
  .hero {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    padding-block: 6rem;
  }
}

@media (max-width: 40rem) {
  .header-inner,
  .footer-inner,
  .hero {
    width: min(100% - 2rem, 72rem);
  }

  .button-small {
    max-width: 12rem;
    padding-inline: 0.8rem;
  }

  .hero {
    gap: 2.5rem;
    padding-block: 3rem;
  }

  .hero-action,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-action .button {
    width: 100%;
  }

  .process {
    border-radius: 1.5rem;
    padding: 1.25rem;
  }

  .footer-inner {
    justify-content: center;
    padding-block: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
