@font-face {
  font-family: Inter;
  src: url('/fonts/InterVariable-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Season Mix';
  src: url('/fonts/SeasonMix-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #faf9f7;
  --ink: #26232a;
  --muted: #69636d;
  --line: #e3dfe5;
  --surface: #ffffff;
  --surface-subtle: #f3f0f5;
  --accent-soft: #f5eaf3;
  --accent-line: #dcbdd5;
  --code: #713b7d;
  --shadow: 0 8px 30px rgb(45 28 49 / 5%);
  --accent: #913774;
  --plum: #913774;
  --plum-soft: #f5eaf3;
  --plum-line: #dcbdd5;
  --blue: #2f5fa8;
  --blue-soft: #ebf0fa;
  --blue-line: #c2d2ed;
  --amber: #9a5f16;
  --amber-soft: #fbf0e0;
  --amber-line: #e8d1a9;
  --teal: #1c7168;
  --teal-soft: #e3f1ef;
  --teal-line: #b2d8d2;
  --green: #2f7048;
  --green-soft: #e7f2eb;
  --green-line: #bcdcc7;
  --op: var(--plum);
  --op-soft: var(--plum-soft);
  --op-line: var(--plum-line);
  --brand-gradient: linear-gradient(61deg, #fb45e4 10.75%, #ff111a 59.79%, #5a0175 93%);
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: radial-gradient(ellipse at 85% 0%, rgb(221 193 220 / 16%), transparent 48%), var(--paper);
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:hover {
  text-decoration: underline;
}
a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 5px;
}
.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.6px;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark span:last-child {
  color: var(--muted);
}
.wordmark img {
  display: block;
  width: 123px;
  height: auto;
  filter: brightness(0) saturate(100%);
}
.wordmark:hover {
  text-decoration: none;
}
.wordmark-divider {
  color: var(--muted);
  font-weight: 400;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}
nav a {
  text-decoration: none;
}
nav a[aria-current] {
  text-decoration: underline;
}
.nav-contact:hover {
  background: var(--surface-subtle);
  text-decoration: none;
}
.nav-contact {
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 8px;
}
main {
  flex: 1;
}
.hero {
  padding: 94px 0 100px;
}
.eyebrow,
.number {
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.eyebrow {
  color: var(--muted);
}
h1 {
  font-family: 'Season Mix', Georgia, serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 28px 0;
}
.intro {
  color: var(--muted);
  max-width: 540px;
  font-size: 19px;
  line-height: 1.6;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  gap: 32px;
  align-items: center;
  color: #ffffff;
  background: linear-gradient(rgb(0 0 0 / 22%), rgb(0 0 0 / 22%)), var(--brand-gradient);
  border: 1px solid rgb(90 1 117 / 12%);
  box-shadow: 0 4px 12px rgb(145 55 116 / 12%);
  border-radius: 8px;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.button:hover {
  filter: brightness(1.08);
  text-decoration: none;
}
.text-link {
  font-size: 14px;
}
.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 24px;
}
h2 {
  font-family: 'Season Mix', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.7px;
}
.section-heading h2 {
  margin: 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.grid article {
  padding: 28px 24px 24px 0;
}
.grid article + article {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.number {
  color: var(--accent);
}
h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.4px;
}
p {
  line-height: 1.6;
}
.grid p,
.document p {
  color: var(--muted);
  font-size: 15px;
}
.grid .placeholder {
  font-size: 12px;
  margin-top: 28px;
}
.capabilities {
  margin-bottom: 70px;
}
.page-heading {
  padding: 72px 0 32px;
}
.page-heading h1 {
  font-size: clamp(48px, 7vw, 72px);
}
.document {
  border-top: 1px solid var(--line);
  max-width: 760px;
  padding: 32px 0 80px;
}
.document > p {
  max-width: 580px;
}
.badge {
  display: inline-block;
  border: 1px solid var(--line);
  padding: 6px 10px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 12px;
  border-radius: 4px;
}
.stub-list {
  margin: 28px 0;
}
.stub-list > div {
  border-top: 1px solid var(--line);
  padding: 4px 0 14px;
}
.stub-list p {
  margin-top: -6px;
}
footer {
  border-top: 1px solid var(--line);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}
.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  padding: 12px;
  background: var(--accent);
  color: var(--paper);
  z-index: 1;
}
.skip-link:focus {
  top: 12px;
}
@media (max-width: 640px) {
  .shell {
    padding: 0 22px;
  }
  header {
    flex-wrap: wrap;
    padding: 24px 0;
    gap: 22px;
  }
  .wordmark {
    font-size: 18px;
    gap: 14px;
  }
  .wordmark img {
    width: 104px;
  }
  nav {
    width: 100%;
    gap: 24px;
  }
  .nav-contact {
    margin-left: auto;
    padding: 9px 12px;
  }
  .hero {
    padding: 58px 0 64px;
  }
  .intro {
    font-size: 17px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .grid article,
  .grid article + article {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .grid .placeholder {
    margin-top: 16px;
  }
  .page-heading {
    padding-top: 46px;
  }
  footer {
    flex-wrap: wrap;
  }
}
