@font-face {
  font-family: "Pagella";
  src: url("/assets/shared/fonts/texgyrepagella-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Pagella";
  src: url("/assets/shared/fonts/texgyrepagella-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Pagella";
  src: url("/assets/shared/fonts/texgyrepagella-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("/assets/shared/fonts/lato-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("/assets/shared/fonts/lato-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --black: #000;
  --onyx: #1a1a1a;
  --soot: #2a2826;
  --ash: #6b6760;
  --linen: #c9c4b8;
  --ivory: #f1ede5;
  --brass: #b2a27e;
  --gold: #d8b46f;
  --azure: #2e74b5;
  --white: #fff;
  --bg: var(--black);
  --text: var(--ivory);
  --heading: var(--brass);
  --muted: var(--ash);
  --subtle: var(--linen);
  --surface: var(--soot);
  --link: #5b9bd5;
  --quiet: #948e84;
  --line: rgba(241, 237, 229, 0.09);
  --line-strong: rgba(241, 237, 229, 0.16);
  --panel: #0b0b0a;
  --serif: "Pagella", Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif;
  --wrap: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(circle at 1px 1px, rgba(241, 237, 229, 0.14) 1px, transparent 0);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 75%);
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

avartha-masthead {
  display: block;
  position: sticky;
  top: 0;
  z-index: 40;
}

p {
  max-width: 66ch;
  margin-block: 0 1em;
  color: var(--subtle);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--link);
  border-bottom: 1px solid rgba(91, 155, 213, 0.4);
  text-decoration: none;
  transition-property: color, border-color;
  transition-duration: 250ms;
}

a:hover {
  color: var(--link);
}

em {
  font-style: italic;
}

sup {
  color: var(--brass);
  font-size: 0.62em;
  vertical-align: super;
}

a.fn {
  position: relative;
  margin-left: 0.12em;
  border-bottom: 0;
  color: var(--brass);
}

a.fn::after {
  position: absolute;
  inset: -12px -10px;
  content: "";
}

a.fn:hover {
  color: var(--gold);
}

code {
  color: var(--brass);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
}

.skip {
  position: absolute;
  top: 0;
  left: -9999px;
  z-index: 100;
  padding: 0.7em 1.1em;
  color: var(--ivory);
  background: var(--soot);
}

.skip:focus {
  top: 8px;
  left: 8px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 32px;
}

.anchor {
  position: relative;
  display: block;
  visibility: hidden;
}

.masthead {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.masthead-in {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 0.55em;
}

.brand {
  min-height: 44px;
  border-bottom: 0;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand:hover {
  color: var(--gold);
}

.dot {
  color: var(--quiet);
}

.mast-meta {
  color: var(--quiet);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mast-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.7em;
}

.mast-nav a,
.mast-nav button {
  min-height: 44px;
  border-bottom: 0;
  color: var(--subtle);
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1;
}

.mast-nav a:hover,
.mast-nav button:hover {
  color: var(--ivory);
}

.mast-nav button:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

.mast-nav button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.mast-nav .mast-cta {
  padding: 0.5em 1.1em;
  border-radius: 2px;
  color: var(--black);
  background: var(--brass);
  font-size: 0.76rem;
  font-weight: 700;
}

.mast-nav .mast-cta:hover {
  color: var(--black);
  background: var(--gold);
}

.mast-nav a[aria-current="page"] {
  border-bottom: 1px solid rgba(216, 180, 111, 0.5);
  color: var(--gold);
}

@media (max-width: 680px) {
  .masthead .dot,
  .mast-meta {
    display: none;
  }

  .mast-nav {
    gap: 0.8em;
  }

  .mast-nav a {
    font-size: 0.7rem;
  }

  .mast-nav button {
    font-size: 0.7rem;
  }

  .mast-nav .mast-cta {
    padding: 0.45em 0.8em;
    font-size: 0.7rem;
  }
}

@media (max-width: 640px) {
  .wrap {
    padding-inline: 16px;
  }
}

@media (max-width: 560px) {
  .mast-nav .mast-product {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
