@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --ink: #051931;
  --muted: #455466;
  --blue: #0e4cf3;
  --background: #f8f7f3;
  --line: #dedbd3;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--background); }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent calc(50% - .5px), rgba(5, 25, 49, .035) 50%, transparent calc(50% + .5px));
}
a { color: inherit; }
.shell {
  min-height: 100svh;
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
header { padding: 42px 0 24px; }
.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  min-height: 44px;
}
.brand img { display: block; width: 100%; height: auto; }
main { display: flex; align-items: center; padding: 70px 0 82px; }
.content { width: min(100%, 880px); }
h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(52px, 6.2vw, 88px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.052em;
  text-wrap: balance;
}
.intro {
  max-width: 720px;
  margin-top: 44px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.58;
  letter-spacing: -.018em;
}
.intro p { margin: 0; }
.intro p + p { margin-top: 8px; }
.cta {
  display: inline-flex;
  min-height: 52px;
  margin-top: 40px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(14, 76, 243, .15);
  color: white;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}
.cta::after { content: "↗"; font-size: 1.03em; transform: translateY(-1px); }
.cta:hover {
  transform: translateY(-1px);
  background: #093fd4;
  box-shadow: 0 10px 26px rgba(14, 76, 243, .2);
}
.cta:active { transform: translateY(0); }
.cta:focus-visible,
footer a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(14, 76, 243, .26);
  outline-offset: 4px;
}
footer {
  display: flex;
  padding: 24px 0 30px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  color: #637083;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .035em;
}
footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-decoration-color: #9ba6b3;
  text-underline-offset: 4px;
}
.reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 36px, 1120px); }
  header { padding-top: 26px; }
  .brand { width: 156px; }
  main { padding: 54px 0 62px; align-items: flex-start; }
  h1 {
    font-size: clamp(43px, 13.2vw, 60px);
    line-height: 1.01;
    letter-spacing: -.047em;
  }
  .intro { margin-top: 32px; font-size: 16px; line-height: 1.55; }
  .intro p + p { margin-top: 10px; }
  .cta { width: 100%; min-height: 54px; margin-top: 32px; }
  footer { padding-bottom: 24px; align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-height: 700px) and (min-width: 641px) {
  header { padding: 24px 0 10px; }
  main { padding: 16px 0 24px; align-items: flex-start; }
  h1 { font-size: 72px; }
  .intro { margin-top: 30px; font-size: 17px; line-height: 1.5; }
  .cta { margin-top: 26px; }
  footer { padding: 16px 0; }
}
