/* Self-hosted webfonts. Propshaft rewrites the url() references to digested
 * asset paths.
 *
 * Public Sans (SIL Open Font License 1.1, see public-sans-OFL.txt) sets the
 * text. Geomanist sets the headings, and it cannot set the text: its lowercase
 * "l" and its capital "I" are the same bare stem, and its "i" is that stem
 * with a dot, so "Illinois", "pilot" and "It" become a row of identical
 * strokes at reading size. Public Sans gives the lowercase "l" a tail, which
 * separates the three letters. A heading is large enough for the difference to
 * stop mattering, so the brand face keeps the headings.
 *
 * One variable file carries every weight from 100 to 900. The browser fetches
 * the latin-ext file only for a character that the latin file does not hold,
 * for example a name that somebody types into a form. */
@font-face {
  font-family: "Public Sans";
  src: url("/assets/public-sans-latin-webfont-dca702d4.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  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: "Public Sans";
  src: url("/assets/public-sans-latin-ext-webfont-fcd1369e.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  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: "Geomanist";
  src: url("/assets/geomanist-regular-webfont-517e81f4.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geomanist";
  src: url("/assets/geomanist-medium-webfont-086fa3f4.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geomanist";
  src: url("/assets/geomanist-bold-webfont-4a658087.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geomanist";
  src: url("/assets/geomanist-black-webfont-e4aca289.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Subtle dot grid used on navy sections, echoing the datasheet cover. */
.bg-dots {
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
  background-size: 34px 34px;
}

/* FAQ accordion (native details/summary, no JavaScript). */
.faq-item summary {
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .faq-marker {
  transition: transform 150ms ease;
}

.faq-item[open] .faq-marker {
  transform: rotate(45deg);
}

/* Long-form article text (blog posts, privacy policy). */
.prose-site {
  color: var(--color-ink);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.prose-site > * + * {
  margin-top: 1.1em;
}

.prose-site h2 {
  margin-top: 2em;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.3;
}

.prose-site h3 {
  margin-top: 1.6em;
  font-size: 1.15rem;
  font-weight: 700;
}

.prose-site ul,
.prose-site ol {
  padding-left: 1.4em;
}

.prose-site ul {
  list-style: disc;
}

.prose-site ol {
  list-style: decimal;
}

.prose-site li + li {
  margin-top: 0.45em;
}

.prose-site a {
  color: var(--color-lime-forest);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--color-lime-deep);
  text-underline-offset: 3px;
}

.prose-site a:hover {
  color: var(--color-lime-dark);
}

.prose-site strong {
  font-weight: 700;
}

.prose-site table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.prose-site th,
.prose-site td {
  border-bottom: 1px solid var(--color-line);
  padding: 0.6em 0.9em;
  text-align: left;
  vertical-align: top;
}

.prose-site th {
  color: var(--color-ink);
  font-weight: 700;
}

.prose-site td {
  color: var(--color-ink-muted);
}

.prose-site .table-scroll {
  overflow-x: auto;
}

.prose-site blockquote {
  border-left: 3px solid var(--color-lime-deep);
  padding-left: 1.1em;
  color: var(--color-ink-muted);
  font-weight: 500;
}

.prose-site code {
  border: 1px solid var(--color-line);
  border-radius: 0.35em;
  background: var(--color-paper);
  padding: 0.15em 0.45em;
  font-size: 0.9em;
}
