:root {
  color-scheme: light;
  --fb-green: #1f5b3a;
  --fb-gold: #d4a035;
  --fb-teal: #5fa3ad;
  --fb-charcoal: #333333;
  --fb-white: #ffffff;
  --fb-cream: #fbfaf6;
  --fb-mist: #eef5f3;
  --fb-border: rgb(31 91 58 / 16%);
  --fb-shadow: 0 1.25rem 3.5rem rgb(24 55 43 / 12%);
  --fb-radius-lg: 1.5rem;
  --fb-radius-md: 1rem;
  --fb-content: 72rem;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

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

html {
  min-height: 100%;
  background: var(--fb-cream);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--fb-charcoal);
  background: var(--fb-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
p {
  margin-top: 0;
}

p {
  line-height: 1.65;
}

.site-shell {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.site-frame {
  width: min(100%, var(--fb-content));
  margin-inline: auto;
}

.brand-mark {
  height: auto;
}

.brand-mark--full {
  width: min(100%, 47rem);
}

.brand-mark--round {
  width: clamp(5.5rem, 12vw, 8rem);
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--fb-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-title {
  margin-bottom: 1rem;
  color: var(--fb-green);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 46rem;
  margin-bottom: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.status-line {
  margin: 0;
  color: rgb(51 51 51 / 72%);
  font-size: 0.9rem;
}

.brand-rule {
  width: 4.5rem;
  height: 0.22rem;
  margin: 1.35rem 0;
  border: 0;
  border-radius: 999px;
  background: var(--fb-gold);
}

.surface-card {
  border: 1px solid var(--fb-border);
  border-radius: var(--fb-radius-lg);
  background: rgb(255 255 255 / 94%);
  box-shadow: var(--fb-shadow);
}

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

@media (max-width: 40rem) {
  .site-shell {
    align-items: start;
  }
}

/* Shared public-site foundation — v0.2.0-alpha.4 */
a {
  color: var(--fb-green);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 0.13em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 0.2rem solid var(--fb-teal);
  outline-offset: 0.2rem;
}

.container {
  width: min(100% - 2rem, var(--fb-content));
  margin-inline: auto;
}

.container--narrow {
  max-width: 52rem;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.section--muted {
  background: var(--fb-mist);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  font: inherit;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button--primary {
  border-color: var(--fb-green);
  background: var(--fb-green);
  color: var(--fb-white);
}

.button--primary:hover {
  background: #17472d;
}

.button--secondary {
  border-color: rgb(31 91 58 / 30%);
  background: var(--fb-white);
  color: var(--fb-green);
}

.button--secondary:hover {
  background: var(--fb-mist);
}

.text-link {
  font-weight: 750;
}

.notice {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--fb-border);
  border-radius: var(--fb-radius-md);
  background: var(--fb-white);
}

.notice h2 {
  margin-bottom: 0.5rem;
  color: var(--fb-green);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

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