/* Shared by the same-origin stylesheet and the self-contained admin pages. */
:root {
  color-scheme: light;
  --brand: #FC4505;
  --brand-ink: #a82d00;
  --brand-hover: #c73500;
  --brand-soft: #fff1eb;
  --brand-border: #efb6a2;
  --canvas: #f7f9fb;
  --surface: #ffffff;
  --surface-soft: #f2f4f6;
  --ink: #191c1e;
  --muted: #59616d;
  --border: #dfe3e6;
  --success: #177a53;
  --success-soft: #eaf8f1;
  --warning: #8a5a00;
  --warning-soft: #fff8e6;
  --error: #b42318;
  --error-soft: #fff1f0;
  --focus: #9d2a00;
  --shadow: 0 2px 4px rgb(25 28 30 / 3%), 0 12px 28px rgb(25 28 30 / 5%);
  --shadow-raised: 0 4px 8px rgb(25 28 30 / 5%), 0 14px 24px rgb(25 28 30 / 12%);
  --radius: 20px;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/theme-assets/fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/theme-assets/fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/theme-assets/fonts/montserrat-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/theme-assets/fonts/montserrat-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.7px;
  line-height: 1;
  white-space: nowrap;
}
.brand-lockup img, .brand-lockup svg {
  display: block;
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
}
.brand-lockup .brand-wordmark { color: var(--ink); }
.brand-lockup .brand-wordmark > .brand-wordmark__hive { color: #000; }
.brand-lockup .brand-wordmark > .brand-wordmark__reach { color: var(--brand); }
h1, h2, h3, h4 { font-family: var(--font-heading); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }