:root {
  color-scheme: light;
  --paper: #faf9f7;
  --ink: #172b3d;
  --ink-soft: #52606b;
  --rule: rgba(23, 43, 61, 0.18);
  --accent: #d88272;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  width: min(100% - 64px, 1080px);
  margin-inline: auto;
  padding: 56px 0 72px;
}

.hero {
  text-align: center;
}

.brand-logo {
  display: block;
  width: min(440px, 78vw);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.tagline {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 400;
  letter-spacing: 0.018em;
}

.tagline::after {
  display: block;
  width: 42px;
  height: 2px;
  margin: 27px auto 0;
  background: var(--accent);
  content: "";
}

.strategy {
  max-width: 820px;
  margin: 41px auto 0;
  font-size: clamp(1.05rem, 1.82vw, 1.26rem);
  line-height: 1.6;
  letter-spacing: -0.012em;
}

.strategy p {
  margin: 0;
}

.strategy p + p {
  margin-top: 24px;
  color: var(--ink-soft);
}

.founders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  margin-top: 94px;
}

.founder h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0.105em;
  line-height: 1.35;
}

.role {
  min-height: 1.7em;
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.contact-links {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 21px 0 0;
  font-size: 0.92rem;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--ink);
  text-decoration: none;
}

.linkedin-icon {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

a {
  color: var(--ink);
  text-decoration-color: rgba(23, 43, 61, 0.34);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

a:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.location {
  margin-top: 63px;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.19em;
  line-height: 1.4;
}

address {
  color: var(--ink-soft);
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal {
  margin-top: 39px;
  padding-top: 45px;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.7;
}

.legal p {
  max-width: 960px;
  margin: 0;
}

.legal p + p {
  margin-top: 15px;
}

.legal .copyright {
  margin-top: 31px;
  color: var(--ink);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 40px, 1080px);
    padding: 36px 0 48px;
  }

  .brand-logo {
    width: min(360px, 82vw);
  }

  .tagline {
    margin-top: 20px;
  }

  .strategy {
    margin-top: 30px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .strategy p + p {
    margin-top: 20px;
  }

  .founders {
    grid-template-columns: 1fr;
    gap: 55px;
    margin-top: 68px;
  }

  .role {
    min-height: 0;
  }

  .location {
    margin-top: 49px;
  }

  .legal {
    margin-top: 30px;
    padding-top: 35px;
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  a {
    transition: none;
  }
}
