:root {
  color-scheme: light;
  --ink: #0a3256;
  --muted: #65727e;
  --blue: #078ed1;
  --line: #dce3e8;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #f4f7f9;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 8%, rgba(7, 142, 209, 0.1), transparent 31rem),
    radial-gradient(circle at 4% 94%, rgba(241, 90, 40, 0.055), transparent 25rem),
    #f4f7f9;
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 1280px);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: 38px clamp(24px, 6vw, 84px) 30px;
}

.site-header {
  display: flex;
  align-items: center;
}

.logo {
  display: block;
  width: 210px;
  height: auto;
}

.hero {
  align-self: center;
  width: min(100%, 710px);
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.intro {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

.contact-block {
  margin-top: 34px;
}

.contact-block a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 5px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease, border-color 150ms ease;
}

.contact-block svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 150ms ease;
}

.contact-block a:hover,
.contact-block a:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
}

.contact-block a:hover svg,
.contact-block a:focus-visible svg {
  transform: translateX(3px);
}

.contact-block a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 6px;
}

.site-footer {
  padding-top: 20px;
  color: #8a949c;
  border-top: 1px solid rgba(10, 50, 86, 0.1);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 600px) {
  .page-shell {
    padding: 24px 22px 22px;
  }

  .logo {
    width: 170px;
  }

  .hero {
    padding: 54px 0;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .intro {
    margin-top: 23px;
  }
}
