:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #17202a;
  background: #f7f8fb;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #d7dde6;
  background: rgba(247, 248, 251, 0.92);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1120px);
  min-height: 64px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: #111827;
  font-family: "SF Pro Rounded", "Avenir Next", ui-rounded, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  text-decoration: none;
}

.site-header__logo {
  display: block;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
}

.site-main {
  flex: 1;
}

.site-footer {
  border-top: 1px solid #d7dde6;
  background: #ffffff;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 1120px);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  color: #a7b1c0;
  font-size: 0.7rem;
  font-weight: 500;
}

.home {
  display: grid;
  min-height: calc(100vh - 137px);
  place-items: center;
  padding: 32px;
}

.intro {
  width: min(100%, 720px);
  text-align: center;
}

.intro__image {
  display: block;
  width: min(100%, 560px);
  height: auto;
  margin: 0 auto 40px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #3566a5;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 0.95;
}

.lead {
  margin: 24px 0 0;
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.8;
}

@media (max-width: 640px) {
  .site-header__inner {
    min-height: 56px;
    padding: 0 16px;
  }

  .site-header__brand {
    font-size: 1rem;
  }

  .site-header__logo {
    width: 24px;
    height: 24px;
  }

  .home {
    min-height: calc(100vh - 129px);
    padding: 24px 16px;
  }

  .intro__image {
    margin-bottom: 32px;
  }

  .site-footer__inner {
    min-height: 72px;
    padding: 0 16px;
    font-size: 12px;
  }
}
