html {
  scroll-behavior: smooth;
}

:root {
  --spectre-bg: #f4efe4;
  --spectre-panel: #fffaf0;
  --spectre-line: #ded4c4;
  --spectre-line-strong: #d8cebe;
  --spectre-text: #14110d;
  --spectre-muted: #665b4d;
  --spectre-faint: #786d60;
  --spectre-green: #0f3f2e;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

main,
header,
footer {
  max-width: 100vw;
  overflow-x: clip;
}

table {
  max-width: 100%;
}

td,
th,
dd,
p,
li {
  overflow-wrap: anywhere;
}

.spectre-wordmark,
.brand {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  width: fit-content;
  color: #0f3f2e !important;
  font-weight: 850 !important;
  font-style: normal !important;
  line-height: 0.92;
  letter-spacing: -0.035em !important;
  text-transform: lowercase;
  font-feature-settings: "ss01" 1, "kern" 1;
  text-decoration: none !important;
}

.spectre-wordmark::after,
.brand::after {
  content: "";
  position: absolute;
  right: 18.5%;
  top: 0.05em;
  width: 0.08em;
  height: 0.34em;
  border-radius: 999px;
  background: #f4efe4;
  opacity: 0.95;
  transform: rotate(16deg);
}

.spectre-wordmark--display {
  font-size: clamp(3rem, 12vw, 7rem) !important;
  opacity: 0.12 !important;
}

.spectre-wordmark--small {
  font-size: 1rem;
}

.spectre-reference {
  color: #0f3f2e;
  font-weight: 750;
  text-decoration-line: underline;
  text-decoration-color: rgba(15, 63, 46, 0.34);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  background: linear-gradient(180deg, transparent 64%, rgba(15, 63, 46, 0.09) 64%);
  border-radius: 0.18em;
  padding: 0 0.03em;
}

.static-site-header,
.static-site-footer {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.static-site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  width: 100% !important;
  min-height: 5rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--spectre-line) !important;
  background: rgba(244, 239, 228, 0.92) !important;
  color: var(--spectre-text) !important;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.static-site-header__inner {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.static-site-brand,
.static-site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--spectre-green) !important;
  text-decoration: none !important;
}

.static-site-logo {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: var(--spectre-green);
  color: #fffaf0;
  box-shadow: 0 18px 36px rgba(15, 63, 46, 0.16);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.static-site-brand:hover .static-site-logo,
.static-site-footer__brand:hover .static-site-logo {
  transform: translateY(-1px) rotate(3deg);
}

.static-site-logo svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fffaf0 !important;
}

.static-site-brand .spectre-wordmark {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem) !important;
}

.static-site-footer__brand .spectre-wordmark,
.spectre-wordmark--footer {
  font-size: 1.5rem !important;
}

.static-site-nav {
  display: none;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.5rem);
}

.static-site-nav a,
.static-site-header__launch,
.static-site-footer a,
.static-site-footer button {
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.static-site-nav a {
  color: #7c7367 !important;
}

.static-site-nav a:hover {
  color: var(--spectre-green) !important;
}

.static-site-header__launch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.75rem 1.35rem;
  border-radius: 0.75rem;
  background: var(--spectre-green);
  color: #fffaf0 !important;
  border: 1px solid var(--spectre-green);
  box-shadow: 0 14px 28px rgba(15, 63, 46, 0.14);
}

.static-site-header__launch:hover {
  background: #143f31;
  transform: translateY(-1px);
}

.static-site-footer {
  width: 100%;
  max-width: 100% !important;
  margin-top: auto;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
  border-top: 1px solid var(--spectre-line) !important;
  background: var(--spectre-bg) !important;
  color: var(--spectre-muted) !important;
}

.static-site-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1rem 3rem;
}

.static-site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
}

.static-site-footer__intro {
  max-width: 28rem;
}

.static-site-footer__tagline {
  margin: 1rem 0 0 !important;
  max-width: 28rem;
  color: var(--spectre-muted) !important;
  font-size: 0.875rem !important;
  line-height: 1.625 !important;
  font-weight: 500 !important;
}

.static-site-footer__columns {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}

.static-site-footer h2 {
  margin: 0 !important;
  color: var(--spectre-green) !important;
  font-size: 0.6875rem !important;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal !important;
}

.static-site-footer__links {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.5rem;
}

.static-site-footer a {
  color: var(--spectre-muted) !important;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
  font-weight: 600 !important;
  font-style: normal !important;
}

.static-site-footer a:hover {
  color: var(--spectre-green) !important;
}

.static-site-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--spectre-line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--spectre-faint);
  font-size: 0.75rem !important;
  line-height: 1rem !important;
  font-weight: 600;
}

.static-site-footer__disclaimer {
  max-width: 42rem;
  line-height: 1.55;
}

.static-site-footer__badges {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.static-site-footer__badges span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--spectre-line-strong);
  border-radius: 0.375rem;
  background: rgba(255, 250, 240, 0.7);
  padding: 0.25rem 0.625rem;
  color: var(--spectre-green);
  font-size: 0.625rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.static-site-footer__copyright {
  font-weight: 600;
}

@media (min-width: 640px) {
  .static-site-header__inner,
  .static-site-footer__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .static-site-header__launch {
    display: inline-flex;
  }

  .static-site-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .static-site-header__inner,
  .static-site-footer__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .static-site-nav {
    display: flex;
  }

  .static-site-footer__grid {
    grid-template-columns: 1.15fr 2fr;
    gap: 4rem;
    align-items: start;
  }

  .static-site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .static-site-footer__disclaimer {
    text-align: right;
  }
}

@media (max-width: 520px) {
  .static-site-header {
    min-height: 4.4rem;
  }

  .static-site-header__launch {
    display: none;
  }

  .static-site-logo {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.75rem;
  }
}

.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    border-color 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease;
  will-change: opacity, transform;
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

main :is(section, article, aside, div[class*="rounded"][class*="border"]):hover {
  border-color: #c7b8a3 !important;
  box-shadow: 0 18px 42px rgba(43, 35, 24, 0.11);
}

:is(button, a)[class*="transition"]:hover,
a[class*="bg-"]:hover {
  transform: translateY(-1px);
}

svg {
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), color 220ms ease;
}

:is(button, a, .group):hover svg {
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 640px) {
  .legal-card dl,
  dl {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }
}
