/* Shared site chrome: design tokens, the page stage and the footer.
   Loaded by the app shell and by every server-rendered page. Edit here only. */

@font-face {
  font-family: "Jost Nexarq";
  src: url("/fonts/jost-nexarq.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --page: #f2f2e9;
  --paper: #fbfbf5;
  --surface: #ffffff;
  --ink: #11130f;
  --muted: #65675f;
  --quiet: #989b91;
  --line: #d9dbd1;
  --blue: #1958ff;
  --blue-deep: #0d3fd4;
  --orange: #ff5c35;
  --green: #0e9f6e;
  --cyan: #5de1e6;
  --lime: #dfff65;
  --shadow: 0 30px 80px rgba(18, 30, 50, 0.25), 0 5px 18px rgba(10, 18, 32, 0.14);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}
.page-stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(20px, 4vw, 54px);
  background: linear-gradient(90deg, var(--blue) 0 31%, var(--page) 31% 100%);
}
.stage-grid {
  position: absolute;
  inset: 0 auto 0 0;
  width: 31%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.backdrop-mark {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  font-family: "Arial Narrow", "Avenir Next Condensed", sans-serif;
  font-weight: 900;
  line-height: 0.8;
}
.backdrop-mark--left {
  top: -20px;
  left: -8px;
  color: rgba(255, 255, 255, 0.13);
  font-size: clamp(220px, 29vw, 430px);
  letter-spacing: -0.18em;
}
.backdrop-mark--right {
  right: -50px;
  bottom: 10px;
  color: rgba(17, 19, 15, 0.04);
  font-size: clamp(130px, 17vw, 250px);
  letter-spacing: -0.1em;
}
.eyebrow,
.content-eyebrow {
  margin: 0 0 17px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  font-family: "Arial Narrow", "Avenir Next Condensed", Impact, sans-serif;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 22px 28px;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-nav a {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.footer {
  display: grid;
  gap: 15px;
  padding: 18px 28px;
  background: var(--paper);
  color: var(--quiet);
  font-size: 9px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 24px;
}
.footer-identity {
  display: grid;
  justify-items: start;
  gap: 3px;
}
.footer-aside {
  display: grid;
  justify-items: end;
  gap: 6px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.footer-bottom > span {
  min-width: 0;
  flex: 1 1 240px;
}
.footer-bottom .maker-credit {
  flex: 0 0 auto;
}
.footer strong {
  color: var(--ink);
  font-size: 11px;
}
.footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 3px;
  color: var(--ink);
  text-decoration: none;
}
.footer-brand-mark {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 3px;
  background: var(--blue);
}
.footer-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}
.footer-brand-name {
  letter-spacing: -0.04em;
  text-transform: lowercase;
}
.footer-brand-name span {
  color: var(--blue);
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
.footer a {
  color: var(--muted);
  text-decoration: none;
}

.content-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.content-brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 4px;
  background: var(--blue);
  color: white;
}
.content-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}
.content-brand-name {
  font-weight: 700;
  text-transform: lowercase;
}
.content-brand-name span {
  color: var(--blue);
}
.footer .content-brand-mark {
  width: 22px;
  height: 22px;
}

.footer p {
  margin: 0;
}

.footer nav a:hover {
  color: var(--blue);
}
.cloudflare-build {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 8px 3px 9px;
  color: var(--quiet);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 140ms ease, color 140ms ease, transform 140ms ease;
}
.cloudflare-build-label {
  margin-right: -0.12em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cloudflare-build img {
  display: block;
  width: 15px;
  height: 15px;
  margin-top: -1px;
}
.cloudflare-build:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}
.cloudflare-build:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.maker-credit {
  display: flex !important;
  align-items: center;
  gap: 7px !important;
  color: var(--quiet);
  font-size: 8px;
  letter-spacing: 0.015em;
}
.maker-credit-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.maker-credit-separator {
  color: var(--line);
}
.nexarq-credit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nexarq-credit img {
  display: block;
  width: 11px;
  height: 11px;
}
.maker-credit a {
  color: var(--ink);
  font-size: inherit;
  font-weight: 700;
}
.maker-credit .nexarq-credit {
  text-decoration: none;
}
.maker-credit .nexarq-credit:hover strong {
  color: var(--blue);
}
.maker-credit .nexarq-credit:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
.maker-credit .nexarq-credit strong {
  margin-right: -0.16em;
  color: var(--ink);
  font-family: "Jost Nexarq", Jost, "Avenir Next", Avenir, sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: lowercase;
}
.maker-credit a:hover {
  color: var(--blue);
}
.maker-credit a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
@media (max-width: 940px) {
  .site-nav {
    display: none;
  }

  .page-stage {
    padding: 18px;
    background: linear-gradient(180deg, var(--blue) 0 260px, var(--page) 260px 100%);
  }

  .stage-grid {
    width: 100%;
    height: 260px;
  }
}

@media (max-width: 640px) {
  .page-stage {
    padding: 10px;
  }

  .footer {
    padding: 16px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-aside {
    justify-items: start;
  }

  .footer nav {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom > span {
    flex: 0 0 auto;
  }

  .maker-credit {
    flex-wrap: wrap;
  }
}
