/* macadress.com: "Signal Orange" design system */

/* Self-hosted (not loaded from Google Fonts): no third-party request on
   the font path, no dependency on fonts.gstatic.com's CORS policy. Latin
   subset only, matches the site's English-only content. */
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/static/fonts/bricolage-grotesque-500.woff2") format("woff2");
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/static/fonts/bricolage-grotesque-700.woff2") format("woff2");
}
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/fonts/public-sans-400.woff2") format("woff2");
}
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/static/fonts/public-sans-500.woff2") format("woff2");
}
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/static/fonts/public-sans-600.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/fonts/ibm-plex-mono-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/static/fonts/ibm-plex-mono-500.woff2") format("woff2");
}

:root {
  --paper: #F7F3EC;
  --card: #FFFDF9;
  --ink: #1B2430;
  --ink-soft: #3C4654;
  --muted: #7A7267;
  --signal: #FF5A1F;
  --ok: #1F7A5C;
  --line: #E4DCCC;
  --radius: 3px;
  --content-w: 46rem;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #1B1815;
    --card: #24211D;
    --ink: #F2EDE4;
    --ink-soft: #D2CABA;
    --muted: #A8A093;
    --signal: #FF6B35;
    --ok: #34A37D;
    --line: #35312B;
  }
}

/* explicit choice from the header theme toggle wins over prefers-color-scheme either way */
:root[data-theme="dark"] {
  --paper: #1B1815;
  --card: #24211D;
  --ink: #F2EDE4;
  --ink-soft: #D2CABA;
  --muted: #A8A093;
  --signal: #FF6B35;
  --ok: #34A37D;
  --line: #35312B;
}
:root[data-theme="light"] {
  --paper: #F7F3EC;
  --card: #FFFDF9;
  --ink: #1B2430;
  --ink-soft: #3C4654;
  --muted: #7A7267;
  --signal: #FF5A1F;
  --ok: #1F7A5C;
  --line: #E4DCCC;
}

* { box-sizing: border-box; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Public Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}

::selection {
  background: var(--signal);
  color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  a, button { transition: filter 0.12s ease, border-color 0.12s ease; }
}

.mono {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;
}

.eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* -- shell -- */

.shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrap {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header.site {
  padding: 1.75rem 0;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Bricolage Grotesque", ui-sans-serif, sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  text-decoration: none;
  letter-spacing: -0.015em;
}
.wordmark-text span { color: var(--signal); }
.wordmark .mark {
  width: 2.15rem;
  height: 2.15rem;
  flex: none;
  border-radius: 20%;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links > a:not(.api-link) {
  font-family: "Public Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink-soft);
}
.nav-links > a:not(.api-link):hover { color: var(--signal); }
.api-link {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  text-decoration: none;
  color: var(--muted);
  border-bottom: 1px solid transparent;
}
.api-link:hover { color: var(--ink); border-color: var(--signal); }

.theme-toggle svg { width: 1.15rem; height: 1.15rem; }

/* Compound selector, not .nav-toggle alone: .icon-btn (defined later in
   this file, same specificity) sets display: inline-flex, and source order
   would otherwise let it win over a plain .nav-toggle rule regardless of
   which one looks like the more specific override here. */
.icon-btn.nav-toggle { display: none; }
.nav-toggle svg { width: 1.4rem; height: 1.4rem; }

/* The browser's default [hidden] rule doesn't reliably suppress display on
   inline <svg> elements (unlike ordinary HTML elements), so the icon-swap
   toggles (theme sun/moon, nav menu/close) need it stated explicitly. */
[hidden] { display: none !important; }

main { flex: 1; }

/* Below this width the nav links overflow their available space (six
   items plus the wordmark don't fit one row), so they collapse into a
   dropdown panel triggered by .nav-toggle instead of wrapping or
   shrinking to the point of being unreadable. */
@media (max-width: 700px) {
  header.site .wrap { position: relative; }
  .icon-btn.nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.25rem 1.5rem 1.25rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.nav-open { display: flex; }
  .nav-links > a:not(.api-link) {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-links > .api-link { padding: 0.85rem 0; }
  .theme-toggle { order: -1; align-self: flex-end; margin: 0.25rem 0 0; }
  .nav-cta { text-align: center; }
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 1.5rem 0 0;
  font-size: 0.82rem;
}
.breadcrumbs a {
  text-decoration: none;
  color: var(--muted);
  max-width: 20rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumbs a:hover { color: var(--signal); }
.breadcrumbs [aria-current] {
  color: var(--ink-soft);
  max-width: 20rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumbs .sep { color: var(--line); }

footer.site {
  padding: 2.5rem 0 3rem;
  margin-top: 4rem;
  border-top: 1px solid var(--line);
}
footer.site .wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
footer.site p {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}
footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--signal); }

/* -- hero -- */

.hero {
  padding: 2.5rem 0 3.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-copy > .eyebrow { margin: 0 0 0.7rem; }
.hero h1 {
  font-family: "Bricolage Grotesque", ui-sans-serif, sans-serif;
  font-weight: 700;
  font-size: clamp(2.3rem, 5.4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.015em;
  margin: 0 0 1.1rem;
  text-wrap: balance;
  max-width: 22ch;
}
.hero h1 em { font-style: normal; color: var(--signal); }
.hero p.lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.55;
  margin: 0 0 2rem;
}

/* -- lookup form -- */

.lookup-form {
  display: flex;
  gap: 0.6rem;
  max-width: 32rem;
  flex-wrap: wrap;
}
.lookup-form input[type="text"] {
  flex: 1;
  min-width: 14rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink);
}
.lookup-form input[type="text"]::placeholder { color: var(--muted); }
.lookup-form button {
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  background: var(--signal);
  color: #fff;
  cursor: pointer;
}
.lookup-form button:hover { filter: brightness(1.06); }

.lookup-form.compact {
  max-width: 34rem;
  margin: 0 0 2.5rem;
}
.lookup-form.compact input[type="text"] { padding: 0.65rem 0.85rem; font-size: 0.92rem; }
.lookup-form.compact button { padding: 0.65rem 1.1rem; font-size: 0.88rem; }

.extract-hint {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 2rem 0 0;
}
.extract-hint a { color: var(--ink-soft); }
.extract-hint a:hover { color: var(--signal); }

.vendor-search { max-width: 42rem; }
.vendor-search select {
  font-family: "Public Sans", sans-serif;
  font-size: 0.92rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink);
  max-width: 14rem;
}

.form-note {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

/* -- hero: API preview panel -- */

.api-preview {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
}
.browser-dots {
  display: flex;
  gap: 0.3rem;
  flex: none;
}
.browser-dots span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--line);
}
.browser-url {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--paper);
  border-radius: 2px;
  padding: 0.3rem 0.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}
.browser-body {
  margin: 0;
  padding: 1.1rem 1.3rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  line-height: 1.65;
  overflow-x: auto;
}
.browser-body .k { color: var(--muted); }
.browser-body .s { color: var(--ok); }
.browser-body .b { color: var(--signal); }
.browser-body .p { color: var(--ink-soft); }
.browser-cta {
  display: block;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  color: var(--signal);
  text-decoration: none;
  padding: 0.85rem 1.3rem;
  border-top: 1px solid var(--line);
}
.browser-cta:hover { text-decoration: underline; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .api-preview { max-width: 32rem; }
}

/* -- value props -- */

.props {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 4rem;
}
.prop {
  background: var(--card);
  padding: 1.6rem 1.75rem;
}
.prop-icon {
  width: 2rem;
  height: 2rem;
  color: var(--signal);
  margin: 0 0 1rem;
}
.prop .eyebrow { margin: 0 0 0.6rem; }
.prop h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}
.prop p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .props { grid-template-columns: 1fr; }
}

/* -- pull statement -- */

.statement {
  padding: 1rem 0 4rem;
}
.statement p {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.3;
  max-width: 34ch;
  margin: 0;
  color: var(--ink-soft);
  text-wrap: balance;
}
.statement strong { color: var(--ink); font-weight: 700; }

/* -- datasheet result card -- */

.datasheet {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}
.datasheet .head {
  background: var(--signal);
  color: #fff;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.datasheet .head .org {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-wrap: balance;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.datasheet .head a.org:hover { text-decoration: underline; }
.datasheet .head .pill {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  white-space: nowrap;
}
.datasheet .explain {
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.status-dot {
  flex: none;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  margin-top: 0.5rem;
  background: var(--muted);
}
.status-dot.ok { background: var(--ok); }
.status-dot.signal { background: var(--signal); }

.datasheet .row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.datasheet .row:last-child { border-bottom: none; }
.datasheet .row .k {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.datasheet .row .v {
  text-align: right;
  font-size: 0.95rem;
  color: var(--ink);
}
.datasheet .row .v a { text-decoration: none; border-bottom: 1px solid var(--line); }
.datasheet .row .v a:hover { color: var(--signal); border-color: var(--signal); }
.datasheet .row .v button.as-link {
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
}
.datasheet .row .v button.as-link:hover { color: var(--signal); border-color: var(--signal); }
.datasheet .row .v .sub {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}
.datasheet .row .v.mono {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.section-title {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2.5rem 0 0.9rem;
}
.section-title:first-child { margin-top: 0; }

/* -- error / not-found state -- */

.error-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  margin-bottom: 2.5rem;
}
.error-card h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.4rem;
  margin: 0 0 0.6rem;
}
.error-card p {
  margin: 0 0 0.4rem;
  color: var(--ink-soft);
}
.error-card .examples {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.9rem;
}

.back-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.back-link:hover { color: var(--signal); border-color: var(--signal); }

/* -- pricing -- */

.page-head {
  padding: 2.5rem 0 2.5rem;
}
.page-head h1 {
  font-family: "Bricolage Grotesque", ui-sans-serif, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0.6rem 0 1rem;
  text-wrap: balance;
  max-width: 20ch;
}
.page-head .lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.55;
  margin: 0;
}

.notice {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--signal);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 2.5rem;
}
.notice strong { color: var(--ink); }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 0 0 3rem;
}
.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan.featured {
  border-color: var(--signal);
  box-shadow: 0 0 0 1px var(--signal);
}
.plan-badge {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--signal);
  padding: 0.25rem 0.55rem;
  border-radius: 2px;
  align-self: flex-start;
  margin: 0 0 0.9rem;
}
.plan-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}
.plan-price {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.plan-price span {
  font-family: "Public Sans", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
}
.plan-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0 0 1.3rem;
  min-height: 2.6em;
}
.plan-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}
.plan-features li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 0.5rem 0;
  border-top: 1px solid var(--line);
  padding-left: 1.1rem;
  position: relative;
}
.plan-features li:first-child { border-top: none; }
.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--signal);
}
.plan-cta {
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.plan-cta:hover { border-color: var(--signal); color: var(--signal); }
.plan.featured .plan-cta {
  background: var(--signal);
  border-color: var(--signal);
  color: #fff;
}
.plan.featured .plan-cta:hover { filter: brightness(1.06); color: #fff; }
button.plan-cta {
  width: 100%;
  background: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  appearance: none;
}
.plan-current {
  text-align: center;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.6rem;
}
.plan-cta.light {
  /* Pairs with the fixed-navy .self-hosted surface above, so it stays
     literal rather than following the theme-swapping tokens. */
  background: #F7F3EC;
  border-color: #F7F3EC;
  color: #1B2430;
}
.plan-cta.light:hover { filter: brightness(0.96); color: #1B2430; }

.self-hosted {
  /* Fixed brand-navy surface, deliberately not theme-reactive (same
     rationale as the logo mark): swapping --ink/--paper here would
     invert the card in dark mode and make its own text illegible. */
  background: #1B2430;
  border-radius: calc(var(--radius) * 2);
  padding: 2.5rem;
  margin: 0 0 3rem;
}
.self-hosted-copy { max-width: 40rem; }
.self-hosted .eyebrow { color: rgba(247, 243, 236, 0.55); }
.self-hosted h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  line-height: 1.2;
  color: #F7F3EC;
  margin: 0.6rem 0 1rem;
  text-wrap: balance;
}
.self-hosted > .self-hosted-copy > p {
  color: rgba(247, 243, 236, 0.82);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0 0 1.3rem;
}
.self-hosted code {
  background: rgba(247, 243, 236, 0.12);
  color: #F7F3EC;
  padding: 0.1rem 0.35rem;
  border-radius: 2px;
  font-size: 0.9em;
}
.self-hosted-features {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
}
.self-hosted-features li {
  color: rgba(247, 243, 236, 0.82);
  font-size: 0.92rem;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(247, 243, 236, 0.14);
  padding-left: 1.1rem;
  position: relative;
}
.self-hosted-features li:first-child { border-top: none; }
.self-hosted-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--signal);
}
.self-hosted-note {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  color: rgba(247, 243, 236, 0.55);
  margin: 1rem 0 0;
  line-height: 1.5;
}

.props.cols-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 860px) {
  .plans { grid-template-columns: 1fr; }
  .props.cols-3 { grid-template-columns: 1fr; }
}

/* -- vendor page -- */

.example-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0.6rem;
  margin: 0 0 2.5rem;
}
.example-addr {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem;
}
.example-addr:hover { border-color: var(--signal); color: var(--signal); }

.sibling-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 2.5rem;
}
.sibling {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--card);
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
}
.sibling:hover { color: var(--signal); }

.pill-sm {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
  white-space: nowrap;
}

/* -- vendor directory -- */

.vendor-table {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2rem 0 1.5rem;
}
.vendor-row {
  display: grid;
  grid-template-columns: 1fr 11rem 5rem;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--card);
  text-decoration: none;
  color: var(--ink);
}
a.vendor-row:hover { background: var(--paper); }
.vendor-row-head {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.vendor-org {
  font-size: 0.92rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vendor-row .mono { font-size: 0.82rem; color: var(--ink-soft); }
@media (max-width: 640px) {
  .vendor-row { grid-template-columns: 1fr auto; }
  .vendor-row .pill-sm { display: none; }
}

.pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 3rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.85rem;
}
.pager a { text-decoration: none; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.pager a:hover { color: var(--signal); border-color: var(--signal); }

/* -- extract tool -- */

.extract-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 40rem;
  margin: 0 0 2rem;
}
.extract-form textarea {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink);
  resize: vertical;
  min-height: 9rem;
}
.extract-form textarea::placeholder { color: var(--muted); }
.extract-form button {
  align-self: flex-start;
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  background: var(--signal);
  color: #fff;
  cursor: pointer;
}
.extract-form button:hover { filter: brightness(1.06); }

.extract-summary {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 1rem;
}
.extract-results {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 3rem;
}
.extract-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--card);
  text-decoration: none;
  color: var(--ink);
}
a.extract-card:hover { background: var(--paper); }
.extract-mac { font-size: 0.85rem; flex: none; width: 11rem; }
.extract-org {
  font-size: 0.9rem;
  flex: 1 1 10rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .extract-mac { width: auto; }
  .extract-card .pill-sm { display: none; }
}
.pager-status { color: var(--muted); }

/* -- homepage: live example -- */

.example-section, .offer-section { padding: 0 0 3rem; }
.example-section h2, .offer-section h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  line-height: 1.15;
  margin: 0.6rem 0 0.7rem;
  letter-spacing: -0.01em;
}
.example-section .section-lede, .offer-section .section-lede {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 46ch;
  margin: 0 0 1.6rem;
}
.example-section .datasheet { margin-bottom: 1.1rem; }
.offer-section .props { margin: 0; }

.reveal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin: 0 0 4rem;
}
.reveal-col h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0 0 0.9rem;
}
.reveal-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.reveal-col li {
  position: relative;
  padding-left: 1.5rem;
  margin: 0 0 0.6rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}
.reveal-col.can li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 700;
}
.reveal-col.cant li::before {
  content: "\2715";
  position: absolute;
  left: 0;
  color: var(--muted);
  font-weight: 700;
}
@media (max-width: 640px) {
  .reveal-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* -- homepage: FAQ -- */

.faq { padding: 0 0 4rem; }
.faq h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  line-height: 1.15;
  margin: 0.6rem 0 1.4rem;
  letter-spacing: -0.01em;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: var(--muted);
  flex: none;
  font-size: 1.1rem;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 60ch;
}

/* -- homepage: stats strip -- */

.stats-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  text-decoration: none;
  color: var(--ink-soft);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  margin: 0 0 4rem;
  font-size: 0.88rem;
}
.stats-strip:hover { border-color: var(--signal); }
.stats-strip .stat { white-space: nowrap; }
.stats-strip .stat strong {
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--ink);
  font-weight: 700;
}
.stats-strip .stats-cta {
  margin-left: auto;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  color: var(--signal);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .stats-strip .stats-cta { margin-left: 0; }
}

/* -- auth: signup / login / account -- */

.nav-cta {
  background: var(--signal);
  color: #fff !important;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-cta:hover { filter: brightness(1.06); color: #fff; }

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 24rem;
  margin: 0 0 1.5rem;
}
.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.auth-form input {
  font-family: "Public Sans", sans-serif;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink);
}
.auth-form button {
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  background: var(--signal);
  color: #fff;
  cursor: pointer;
}
.auth-form button:hover { filter: brightness(1.06); }

.key-cell {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  min-width: 0;
  max-width: 100%;
}
.key-cell .icon-btn { flex: none; }
#api-key-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 3.5rem;
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-radius: 2px;
}
.icon-btn:hover { color: var(--signal); }
.icon-btn svg { width: 1.1rem; height: 1.1rem; }
.copy-confirm {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  color: var(--ok);
}

button.back-link.as-button {
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0;
  cursor: pointer;
}

/* -- auth pages: two-column layout with an info aside -- */

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 25rem) minmax(19rem, 22rem);
  gap: 3.5rem;
  align-items: start;
  padding: 0.5rem 0 3rem;
}
.auth-aside {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 2);
  padding: 2rem 2.1rem 2.2rem;
}
.auth-aside .eyebrow { margin: 0 0 0.3rem; }
.auth-aside-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.auth-aside-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.auth-aside-list svg {
  flex: none;
  width: 1.4rem;
  height: 1.4rem;
  color: var(--signal);
  margin-top: 0.15rem;
}
.auth-aside-list strong {
  display: block;
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0 0 0.3rem;
}
.auth-aside-list span {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 800px) {
  .auth-layout { grid-template-columns: 1fr; gap: 2rem; }
  .auth-aside { max-width: 26rem; }
}

/* -- docs -- */

p code, li code {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.1rem 0.35rem;
  border-radius: 2px;
  font-size: 0.88em;
}

.endpoint {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.75rem;
  margin: 0 0 2rem;
}
.endpoint-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.9rem;
  flex-wrap: wrap;
}
.method-badge {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.55rem;
  border-radius: 2px;
  color: #fff;
}
.method-badge.get { background: var(--ok); }
.method-badge.post { background: var(--signal); }
.endpoint-path {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.98rem;
  color: var(--ink);
  background: none;
  border: none;
  padding: 0;
}
.endpoint > p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}
.endpoint-label {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 1.2rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.endpoint-label:first-of-type { margin-top: 0; }

.code-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  overflow-x: auto;
  margin: 0 0 1.3rem;
}
.code-block code {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ink);
  background: none;
  border: none;
  padding: 0;
  white-space: pre;
}
.endpoint .code-block:last-child { margin-bottom: 0; }

.field-table-wrap {
  overflow-x: auto;
  margin: 0 0 3rem;
}
.field-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.field-table th, .field-table td {
  text-align: left;
  padding: 0.6rem 0.9rem 0.6rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.field-table th {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.field-table td:first-child {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.82rem;
  color: var(--ink);
  white-space: nowrap;
}
.field-table td:last-child { color: var(--ink-soft); }

/* -- legal (privacy, terms) -- */

.legal {
  max-width: var(--content-w);
  padding-bottom: 3rem;
}
.legal p { color: var(--ink-soft); line-height: 1.6; margin: 0 0 1rem; }
.legal p.section-title:first-child, .legal h2.section-title:first-child { margin-top: 0; }
.legal ul, .legal ol { color: var(--ink-soft); line-height: 1.6; margin: 0 0 1.3rem; padding-left: 1.4rem; }
.legal li { margin: 0 0 0.4rem; }
.legal li:last-child { margin-bottom: 0; }
.legal strong { color: var(--ink); }

/* -- learn guides -- */

.guide-search { max-width: 32rem; margin: 0 0 2.5rem; }
.guide-search input[type="search"] {
  width: 100%;
  font-family: "Public Sans", sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink);
}
.guide-search input[type="search"]::placeholder { color: var(--muted); }

.guide-section { margin: 0 0 1rem; }
.guide-section[hidden] { display: none; }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 0 0 3rem;
}
.guide-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
a.guide-card:hover { border-color: var(--signal); }
.guide-card[hidden] { display: none; }
.guide-card h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
  margin: 0;
}
.guide-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}
.guide-card .guide-cta {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.3rem;
}
a.guide-card:hover .guide-cta { color: var(--signal); }
@media (max-width: 640px) {
  .guide-grid { grid-template-columns: 1fr; }
}

.guide-related {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 2.5rem;
}
.guide-related-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.9rem 1.1rem;
  background: var(--card);
  text-decoration: none;
  color: var(--ink);
}
a.guide-related-item:hover { background: var(--paper); }
.guide-related-item strong { font-size: 0.92rem; }
.guide-related-item span { font-size: 0.82rem; color: var(--muted); }

/* -- admin -- */

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 2.5rem;
}
.admin-stat {
  background: var(--card);
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.admin-stat .n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
}
.admin-stat .l {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.admin-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0 0 2.5rem;
}
.admin-links a {
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink);
  text-decoration: none;
}
.admin-links a:hover { border-color: var(--signal); color: var(--signal); }

.admin-table {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2rem 0 1.5rem;
}
.admin-row {
  display: grid;
  grid-template-columns: 1fr 6rem 5rem 8rem 7rem;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--card);
  text-decoration: none;
  color: var(--ink);
}
a.admin-row:hover { background: var(--paper); }
.admin-row-head {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.admin-row .email {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-row.purchases { grid-template-columns: 1fr 6rem 8rem 8rem; }
.admin-row.contact { grid-template-columns: 1.5rem 1fr 8rem 10rem; }

.admin-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  max-width: 42rem;
}
.admin-filters select {
  font-family: "Public Sans", sans-serif;
  font-size: 0.92rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 2.5rem;
}
.admin-actions form { display: flex; gap: 0.5rem; align-items: center; }
.admin-actions select {
  font-family: "Public Sans", sans-serif;
  font-size: 0.9rem;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink);
}
.admin-actions button {
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
}
.admin-actions button:hover { border-color: var(--signal); color: var(--signal); }
.admin-actions .note { font-size: 0.82rem; color: var(--muted); flex-basis: 100%; margin: -0.4rem 0 0; }

/* -- contact form -- */

.contact-form { max-width: 34rem; }
.contact-form select, .contact-form textarea {
  font-family: "Public Sans", sans-serif;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink);
}
.contact-form textarea { resize: vertical; min-height: 8rem; font-family: inherit; }

/* Off-screen, not display:none: a display:none field is invisible to
   some bots' form-fill scripts too, but position-hidden fields still get
   filled by simple ones, which is exactly what this needs to catch. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.message-body {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 0 0 2rem;
  color: var(--ink-soft);
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}
