*, *::before, *::after { box-sizing: border-box; }
:root {
  --navy: #0F1C32;
  --tan: #F4ECDC;
  --black: #111111;
  --muted: #5c6573;
  --white: #ffffff;
  --line: rgba(15, 28, 50, 0.12);
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 8px; background: var(--navy); color: #fff; padding: 8px 12px; z-index: 80; }
.shell { width: min(920px, calc(100% - 40px)); margin-inline: auto; }
.shell.narrow { width: min(640px, calc(100% - 40px)); }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: var(--navy);
  color: #fff;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; min-width: 0; }
.brand img { width: 28px; height: 28px; flex-shrink: 0; filter: brightness(0) invert(1); }
.brand span { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { color: rgba(255,255,255,0.86); text-decoration: none; font-size: 13px; padding: 6px 10px; }
.nav a:hover { color: #fff; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: var(--navy) !important;
  font-size: 13px; font-weight: 600; padding: 8px 14px;
  border-radius: 2px; text-decoration: none;
}
.btn:hover { background: var(--tan); }
.btn-lg { padding: 12px 20px; font-size: 14px; background: var(--navy); color: #fff !important; }
.btn-lg:hover { background: #24344d; }

.hero { padding: 72px 0 28px; text-align: center; background: var(--white); }
.lockup-img { width: min(640px, 100%); margin: 0 auto 28px; }
.tagline {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--navy);
  letter-spacing: 0.02em;
}

.about { padding: 8px 0 56px; text-align: center; }
.lede { margin: 0; font-size: 1.05rem; color: var(--black); line-height: 1.55; }
.markets-line {
  display: flex; justify-content: center; gap: 28px;
  margin: 28px 0 0; padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy);
}
.markets-line span + span { position: relative; }
.markets-line span + span::before {
  content: ""; position: absolute; left: -16px; top: 50%;
  width: 4px; height: 4px; border-radius: 50%; background: var(--tan);
  transform: translateY(-50%);
}

.contact {
  background: var(--navy); color: #fff;
  padding: 36px 0;
  text-align: center;
  display: block;
}
.contact .shell { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 28px; }
.email {
  color: #fff; font-weight: 600; font-size: 1.05rem;
  text-decoration: none; letter-spacing: -0.02em;
}
.email:hover { text-decoration: underline; text-underline-offset: 4px; }
.contact .btn-lg { background: #fff; color: var(--navy) !important; }
.contact .btn-lg:hover { background: var(--tan); }

.site-footer {
  padding: 22px 0 28px; text-align: center;
  font-size: 12px; color: var(--muted);
  border-top: 3px solid var(--tan);
}
.site-footer p { margin: 0; }

@media (max-width: 640px) {
  .brand span { display: none; }
  .hero { padding: 48px 0 20px; }
  .contact .shell { flex-direction: column; }
}
