body.public-site {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background: var(--fb-cream);
}

.public-site main {
  flex: 1;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.55rem;
  background: var(--fb-charcoal);
  color: var(--fb-white);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--fb-border);
  background: rgb(251 250 246 / 96%);
}

.site-header__inner {
  position: relative;
  display: flex;
  min-height: 5.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  width: clamp(10.5rem, 20vw, 14rem);
}

.site-brand img {
  width: 100%;
  height: auto;
}

.menu-toggle {
  min-height: 2.8rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--fb-border);
  border-radius: 0.7rem;
  background: var(--fb-white);
  color: var(--fb-green);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 1rem;
  left: 1rem;
  display: none;
  padding: 1rem;
  border: 1px solid var(--fb-border);
  border-radius: var(--fb-radius-md);
  background: var(--fb-white);
  box-shadow: var(--fb-shadow);
}

.site-nav[data-open] {
  display: grid;
  gap: 1rem;
}

.site-nav__links {
  display: grid;
}

.site-nav__link {
  padding: 0.75rem 0.25rem;
  color: var(--fb-charcoal);
  font-weight: 700;
  text-decoration: none;
}

.site-nav__link[aria-current='page'] {
  color: var(--fb-green);
  text-decoration: underline;
  text-decoration-color: var(--fb-gold);
  text-decoration-thickness: 0.18rem;
}

.site-nav__actions .button {
  width: 100%;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgb(95 163 173 / 15%), transparent 28rem),
    radial-gradient(circle at 88% 84%, rgb(212 160 53 / 12%), transparent 25rem),
    var(--fb-cream);
}

.page-hero h1 {
  max-width: 18ch;
  margin: 0 0 1.25rem;
  color: var(--fb-green);
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.page-hero .lead {
  max-width: 45rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.site-footer {
  padding-top: clamp(3rem, 6vw, 5rem);
  background: var(--fb-charcoal);
  color: rgb(255 255 255 / 78%);
}

.site-footer__grid {
  display: grid;
  gap: 2.25rem;
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  color: var(--fb-white);
  font-size: 1rem;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer ul {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a {
  color: rgb(255 255 255 / 86%);
}

.site-footer__brand {
  max-width: 28rem;
}

.site-footer__bottom {
  padding-block: 1.5rem;
  margin-top: 2.75rem;
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: 0.9rem;
}

@media (min-width: 46rem) {
  .site-footer__grid {
    grid-template-columns: minmax(16rem, 2fr) repeat(3, minmax(8rem, 1fr));
  }
}

@media (min-width: 68rem) {
  .site-header__inner {
    min-height: 6.25rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav,
  .site-nav[data-open] {
    position: static;
    display: flex;
    min-width: 0;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.8rem, 1.7vw, 1.5rem);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav__links {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: clamp(0.2rem, 0.65vw, 0.8rem);
  }

  .site-nav__link {
    padding: 0.5rem 0.35rem;
    white-space: nowrap;
    font-size: clamp(0.82rem, 1vw, 0.95rem);
  }

  .site-nav__actions {
    flex: 0 0 auto;
  }

  .site-nav__actions .button {
    width: auto;
    font-size: 0.9rem;
  }
}

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

/* Core marketing pages — v0.2.0-alpha.5 */
.section-heading {
  max-width: 49rem;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.section-heading h2,
.split-panel h2,
.two-column h2,
.cta-section h2,
.profile-grid h2 {
  margin-bottom: 1rem;
  color: var(--fb-green);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-heading p:last-child,
.split-panel p:last-child,
.two-column p:last-child {
  margin-bottom: 0;
}

.hero-grid,
.split-panel,
.two-column,
.profile-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
}

.hero-note {
  align-self: end;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--fb-border);
  border-radius: var(--fb-radius-lg);
  background: rgb(255 255 255 / 82%);
  box-shadow: var(--fb-shadow);
}

.hero-note__label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--fb-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--fb-charcoal);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
}

.hero-note p {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.content-card h3 {
  margin: 0 0 0.6rem;
  color: var(--fb-green);
  font-size: 1.12rem;
}

.content-card p {
  margin-bottom: 0.8rem;
}

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

.section-action {
  margin-top: 1.5rem;
}

.fine-print,
.profile-role {
  color: rgb(51 51 51 / 72%);
  font-size: 0.95rem;
}

.steps {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr;
  column-gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--fb-border);
  counter-increment: steps;
}

.steps li::before {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  grid-row: 1 / span 2;
  border-radius: 999px;
  background: var(--fb-green);
  color: var(--fb-white);
  content: counter(steps);
  font-weight: 800;
}

.steps strong {
  color: var(--fb-green);
}

.steps span {
  margin-top: 0.25rem;
  line-height: 1.55;
}

.profile-photo-placeholder {
  display: grid;
  min-height: 22rem;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 1px dashed rgb(31 91 58 / 45%);
  border-radius: var(--fb-radius-lg);
  background: var(--fb-mist);
  color: var(--fb-green);
  font-weight: 800;
  text-align: center;
}

.credential-panel {
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-left: 0.28rem solid var(--fb-gold);
  background: var(--fb-cream);
}

.credential-panel h3 {
  margin: 0 0 0.4rem;
  color: var(--fb-green);
}

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

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid var(--fb-border);
  border-radius: var(--fb-radius-md);
  background: var(--fb-white);
}

.faq-list summary {
  padding: 1.1rem 1.25rem;
  color: var(--fb-green);
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
}

.cta-section {
  background: var(--fb-green);
  color: rgb(255 255 255 / 88%);
}

.cta-section .eyebrow,
.cta-section h2 {
  color: var(--fb-white);
}

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

.cta-section .button--secondary {
  border-color: rgb(255 255 255 / 45%);
  background: transparent;
  color: var(--fb-white);
}

.notice--compact {
  margin-top: 1.5rem;
}

@media (min-width: 42rem) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 54rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(16rem, 0.8fr);
    align-items: center;
  }

  .split-panel,
  .two-column {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .profile-grid {
    grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
  }
}

@media (min-width: 68rem) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
