@font-face {
  font-family: Manrope;
  src: url("assets/manrope-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("assets/manrope-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family: Manrope, system-ui, sans-serif;
  color: #202a25;
  background: #fafbf9;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
body { margin: 0; }
::selection { background: #dce9df; }

.page {
  width: min(100%, 1200px);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
}

.header {
  min-height: 104px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e8e3;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.7px;
  text-decoration: none;
}

.brand:focus-visible { outline: 2px solid #143e31; outline-offset: 6px; }
.brand-light { font-weight: 400; }

main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 80px 0;
}

.intro { width: 100%; text-align: center; }
.accent { display: block; width: 32px; height: 3px; margin: 0 auto 28px; background: #143e31; }
h1 { margin: 0 0 20px; font-size: clamp(38px, 6vw, 64px); line-height: 1.15; font-weight: 700; letter-spacing: -.05em; }
.intro p { margin: 0; color: #626a64; font-size: 16px; line-height: 1.85; }
footer { padding: 26px 0; border-top: 1px solid #e5e8e3; color: #626a64; font-size: 12px; }

@media (max-width: 600px) {
  .page { padding: 0 24px; }
  .header { min-height: 84px; }
  .brand { font-size: 18px; }
  .intro p { font-size: 14px; }
  footer { padding: 22px 0; font-size: 11px; }
}
