:root {
  --ff-primary: hsl(24.6, 95%, 53.1%);
  --ff-foreground: hsl(240, 3.33%, 11.8%);
  --ff-background: hsl(0, 0%, 100%);
  --ff-muted: hsl(60, 4.8%, 95.9%);
  --ff-muted-foreground: hsl(25, 5.3%, 44.7%);
  --ff-border: hsl(0, 0%, 90%);
  --ff-card: hsl(0, 0%, 100%);
  --ff-radius: 0.5rem;
  --ff-radius-xl: 0.75rem;
  --ff-radius-2xl: 1rem;
  --ff-shadow-section: 1px 4px 18px 0px rgba(0, 0, 0, 0.08);
  --ff-neutral-100: #f5f5f5;
  --ff-neutral-200: #e5e5e5;
  --ff-neutral-300: #d4d4d4;
  --ff-neutral-400: #a3a3a3;
  --ff-neutral-500: #737373;
  --ff-neutral-700: #404040;
  --ff-neutral-1000: #000;
}

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

.ff-page {
  background-color: var(--ff-neutral-100);
  color: var(--ff-foreground);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  line-height: 24px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.ff-page *,
.ff-page *::before,
.ff-page *::after {
  border-color: var(--ff-neutral-200);
}

/* ── NAV ── */
.ff-nav {
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2.5rem 1rem;
  background-color: var(--ff-background);
  border-bottom: 1px solid var(--ff-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

@media (min-width: 80rem) {
  .ff-nav {
    padding-inline: 2rem;
  }
}

.ff-nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.ff-nav__logo img {
  height: 2.25rem;
  width: auto;
}

@media (min-width: 48rem) {
  .ff-nav__logo img {
    height: 2.5rem;
  }
}

.ff-nav__links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

@media (min-width: 64rem) {
  .ff-nav__links {
    display: flex;
  }
}

.ff-nav__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding-bottom: 0.25rem;
  font-size: 14px;
  font-weight: 500;
  color: hsl(240 3.33% 11.8% / 0.5);
  text-decoration: none;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.ff-nav__links a:hover,
.ff-nav__links a.is-active {
  color: hsl(240, 3.33%, 11.8%);
}

.ff-nav__links a.is-active {
  font-weight: 600;
}

.ff-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

/* ── MAIN CONTENT ── */
.ff-main {
  flex: 1;
}

.ff-container {
  width: 100%;
  padding-inline: 1rem;
  margin-inline: auto;
  max-width: 75rem;
}

@media (min-width: 80rem) {
  .ff-container {
    padding-inline: 2rem;
  }
}

/* ── HERO SECTION ── */
.ff-hero {
  padding-block: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 40rem) {
  .ff-hero {
    padding-block: 2.5rem;
  }
}

.ff-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  color: var(--ff-neutral-500);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.ff-hero__breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ff-hero__breadcrumb li::after {
  content: "/";
  color: var(--ff-neutral-400);
}

.ff-hero__breadcrumb li:last-child::after {
  display: none;
}

.ff-hero__breadcrumb a {
  color: var(--ff-neutral-500);
  text-decoration: none;
  transition: color 0.15s;
}

.ff-hero__breadcrumb a:hover {
  color: hsl(24.6, 95%, 53.1%);
}

.ff-hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(24.6, 95%, 53.1%);
  margin: 0;
}

.ff-hero__title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin: 0;
  color: var(--ff-foreground);
}

@media (min-width: 40rem) {
  .ff-hero__title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.0075em;
  }
}

@media (min-width: 64rem) {
  .ff-hero__title {
    font-size: 48px;
    line-height: 54px;
    letter-spacing: -0.012em;
  }
}

.ff-hero__subtitle {
  font-size: 14px;
  line-height: 28px;
  color: var(--ff-neutral-500);
  max-width: 42rem;
  margin: 0;
}

@media (min-width: 40rem) {
  .ff-hero__subtitle {
    font-size: 16px;
  }
}

/* ── CARD ── */
.ff-card {
  background-color: var(--ff-card);
  border-radius: var(--ff-radius-xl);
  box-shadow: var(--ff-shadow-section);
  padding: 1.5rem;
}

@media (min-width: 40rem) {
  .ff-card {
    padding: 2rem;
  }
}

.ff-card + .ff-card {
  margin-top: 1rem;
}

.ff-card--flush {
  padding: 0;
  overflow: hidden;
}

.ff-card__header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ff-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ff-card__title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin: 0;
  color: var(--ff-foreground);
}

/* ── SECTION LAYOUT ── */
.ff-section {
  padding-block: 2rem;
}

@media (min-width: 40rem) {
  .ff-section {
    padding-block: 2.5rem;
  }
}

@media (min-width: 64rem) {
  .ff-section {
    padding-block: 3rem;
  }
}

.ff-section + .ff-section {
  border-top: 1px solid var(--ff-neutral-300);
}

.ff-section__title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--ff-foreground);
}

@media (min-width: 40rem) {
  .ff-section__title {
    font-size: 28px;
    line-height: 36px;
  }
}

.ff-section__lead {
  font-size: 14px;
  line-height: 28px;
  color: var(--ff-neutral-500);
  margin: 0 0 2rem;
  max-width: 48rem;
}

@media (min-width: 40rem) {
  .ff-section__lead {
    font-size: 16px;
  }
}

/* ── DIVIDER ── */
.ff-divider {
  height: 1px;
  background-color: var(--ff-neutral-300);
  border: none;
  margin-block: 1.5rem;
}

/* ── FAQ ITEMS ── */
.ff-faq {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.ff-faq__item {
  border-bottom: 1px solid var(--ff-neutral-300);
}

.ff-faq__question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  text-align: left;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: var(--ff-foreground);
  background: none;
  border: none;
  cursor: pointer;
  gap: 0.5rem;
  transition: color 0.15s;
}

.ff-faq__question:hover {
  text-decoration: underline;
  color: var(--ff-foreground);
}

.ff-faq__question:focus-visible {
  outline: 2px solid hsl(24.6, 95%, 53.1%);
  outline-offset: 2px;
  border-radius: 2px;
}

.ff-faq__icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--ff-neutral-400);
}

.ff-faq__item.is-open .ff-faq__icon {
  transform: rotate(180deg);
}

.ff-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s ease;
  opacity: 0;
}

.ff-faq__item.is-open .ff-faq__answer {
  max-height: 800px;
  opacity: 1;
}

.ff-faq__answer-inner {
  padding-bottom: 1rem;
  font-size: 14px;
  line-height: 24px;
  color: var(--ff-neutral-500);
}

.ff-faq__answer-inner p {
  margin: 0 0 0.5rem;
}

.ff-faq__answer-inner p:last-child {
  margin-bottom: 0;
}

.ff-faq__answer-inner a {
  color: hsl(24.6, 95%, 53.1%);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ff-faq__answer-inner a:hover {
  color: hsl(24.6, 95%, 45%);
}

/* ── ABOUT: FEATURE GRID ── */
.ff-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

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

.ff-feature-card {
  background-color: var(--ff-card);
  border-radius: var(--ff-radius-xl);
  box-shadow: var(--ff-shadow-section);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid transparent;
  transition: border-color 0.15s;
}

.ff-feature-card:hover {
  border-color: hsl(24.6, 95%, 53.1%);
}

.ff-feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: hsl(24.6 95% 53.1% / 0.1);
  flex-shrink: 0;
}

.ff-feature-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(24.6, 95%, 53.1%);
}

.ff-feature-card__title {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  margin: 0;
  color: var(--ff-foreground);
}

.ff-feature-card__text {
  font-size: 14px;
  line-height: 24px;
  color: var(--ff-neutral-500);
  margin: 0;
}

/* ── STAT GRID ── */
.ff-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 64rem) {
  .ff-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ff-stat-card {
  background-color: var(--ff-card);
  border-radius: var(--ff-radius-xl);
  box-shadow: var(--ff-shadow-section);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ff-stat-card__value {
  font-size: 28px;
  line-height: 36px;
  font-weight: 500;
  letter-spacing: -0.0075em;
  color: var(--ff-foreground);
  margin: 0;
}

.ff-stat-card__label {
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  color: var(--ff-neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* ── TEAM GRID ── */
.ff-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

@media (min-width: 64rem) {
  .ff-team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ff-team-card {
  background-color: var(--ff-card);
  border-radius: var(--ff-radius-xl);
  box-shadow: var(--ff-shadow-section);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.ff-team-card__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--ff-neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--ff-neutral-700);
  flex-shrink: 0;
}

.ff-team-card__name {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  margin: 0;
  color: var(--ff-foreground);
}

.ff-team-card__role {
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  color: var(--ff-neutral-500);
  margin: 0;
}

/* ── PROSE (long-form text) ── */
.ff-prose {
  max-width: 72ch;
  color: var(--ff-foreground);
}

.ff-prose h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--ff-foreground);
}

@media (min-width: 40rem) {
  .ff-prose h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

.ff-prose h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--ff-foreground);
}

.ff-prose p {
  font-size: 14px;
  line-height: 28px;
  color: var(--ff-neutral-500);
  margin: 0 0 1rem;
}

@media (min-width: 40rem) {
  .ff-prose p {
    font-size: 16px;
  }
}

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

.ff-prose ul,
.ff-prose ol {
  padding-left: 1.5rem;
  margin: 0 0 1rem;
  color: var(--ff-neutral-500);
  font-size: 14px;
  line-height: 28px;
}

@media (min-width: 40rem) {
  .ff-prose ul,
  .ff-prose ol {
    font-size: 16px;
  }
}

.ff-prose ul {
  list-style-type: disc;
}

.ff-prose ol {
  list-style-type: decimal;
}

.ff-prose li {
  margin-bottom: 0.25rem;
}

.ff-prose a {
  color: hsl(24.6, 95%, 53.1%);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.ff-prose a:hover {
  color: hsl(24.6, 95%, 45%);
}

.ff-prose strong {
  font-weight: 600;
  color: var(--ff-foreground);
}

.ff-prose blockquote {
  border-left: 3px solid hsl(24.6, 95%, 53.1%);
  padding-left: 1rem;
  margin: 1rem 0;
  color: var(--ff-neutral-500);
  font-style: italic;
}

.ff-prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    monospace;
  font-size: 0.875em;
  background-color: var(--ff-neutral-100);
  padding: 0.125em 0.25em;
  border-radius: 3px;
  color: hsl(24.6, 95%, 53.1%);
}

/* ── KNOWLEDGE: Q&A LIST ── */
.ff-qa-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ff-qa-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ff-qa-item__number {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(24.6, 95%, 53.1%);
}

.ff-qa-item__question {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin: 0;
  color: var(--ff-foreground);
}

@media (min-width: 40rem) {
  .ff-qa-item__question {
    font-size: 20px;
  }
}

.ff-qa-item__answer {
  font-size: 14px;
  line-height: 28px;
  color: var(--ff-neutral-500);
  margin: 0;
}

@media (min-width: 40rem) {
  .ff-qa-item__answer {
    font-size: 16px;
  }
}

.ff-qa-item__answer p {
  margin: 0 0 0.75rem;
}

.ff-qa-item__answer p:last-child {
  margin-bottom: 0;
}

.ff-qa-item__answer a {
  color: hsl(24.6, 95%, 53.1%);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ff-qa-item__answer a:hover {
  color: hsl(24.6, 95%, 45%);
}

.ff-qa-separator {
  height: 1px;
  background-color: var(--ff-neutral-200);
  border: none;
  margin: 0;
}

/* ── BADGE ── */
.ff-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.ff-badge--primary {
  background-color: hsl(24.6 95% 53.1% / 0.1);
  color: hsl(24.6, 95%, 53.1%);
}

.ff-badge--green {
  background-color: #ecfdf5;
  color: #059669;
}

.ff-badge--blue {
  background-color: #eff6ff;
  color: #3b82f6;
}

.ff-badge--neutral {
  background-color: var(--ff-neutral-100);
  color: var(--ff-neutral-500);
}

/* ── BUTTONS ── */
.ff-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: calc(var(--ff-radius));
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
  height: 2.5rem;
}

.ff-btn:focus-visible {
  outline: 2px solid hsl(24.6, 95%, 53.1%);
  outline-offset: 2px;
}

.ff-btn--primary {
  background-color: var(--ff-foreground);
  color: var(--ff-background);
}

.ff-btn--primary:hover {
  background-color: hsl(240 3.33% 11.8% / 0.9);
  color: var(--ff-background);
}

.ff-btn--outline {
  border: 1px solid hsl(24.6, 95%, 53.1%);
  color: hsl(24.6, 95%, 53.1%);
  background-color: transparent;
}

.ff-btn--outline:hover {
  background-color: hsl(24.6 95% 53.1% / 0.1);
  color: hsl(24.6, 95%, 53.1%);
}

.ff-btn--ghost {
  background-color: transparent;
  color: var(--ff-neutral-500);
  border: 1px solid var(--ff-neutral-300);
}

.ff-btn--ghost:hover {
  background-color: var(--ff-neutral-100);
  color: var(--ff-foreground);
}

.ff-btn--sm {
  height: 2rem;
  padding: 0.25rem 0.75rem;
  font-size: 12px;
}

.ff-btn--lg {
  height: 3rem;
  padding: 0.75rem 2rem;
  font-size: 14px;
  font-weight: 500;
}

.ff-btn-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── HOME BACK BUTTON SECTION ── */
.ff-back-section {
  padding-block: 2rem;
  border-top: 1px solid var(--ff-neutral-300);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* ── INLINE LINK ── */
.ff-link {
  color: hsl(24.6, 95%, 53.1%);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.ff-link:hover {
  color: hsl(24.6, 95%, 45%);
}

/* ── CALLOUT BOX ── */
.ff-callout {
  border-radius: var(--ff-radius-xl);
  padding: 1rem 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.ff-callout--info {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
}

.ff-callout--warning {
  background-color: #fff7ed;
  border: 1px solid hsl(24.6 95% 53.1% / 0.3);
}

.ff-callout--success {
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.ff-callout__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
}

.ff-callout__content {
  font-size: 14px;
  line-height: 24px;
  color: var(--ff-neutral-700);
}

.ff-callout__content p {
  margin: 0;
}

/* ── TABLE ── */
.ff-table-wrap {
  overflow-x: auto;
  border-radius: var(--ff-radius-xl);
  box-shadow: var(--ff-shadow-section);
  background-color: var(--ff-card);
}

.ff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.ff-table thead tr {
  border-bottom: 1px solid var(--ff-border);
}

.ff-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  color: var(--ff-neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.ff-table td {
  padding: 0.875rem 1rem;
  color: var(--ff-foreground);
  line-height: 24px;
  border-bottom: 1px solid var(--ff-border);
}

.ff-table tr:last-child td {
  border-bottom: none;
}

.ff-table tbody tr:hover td {
  background-color: hsl(60 4.8% 95.9% / 0.5);
}

/* ── FOOTER ── */
.ff-footer {
  border-top: 1px solid var(--ff-border);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  margin-inline: 1rem;
}

@media (min-width: 80rem) {
  .ff-footer {
    margin-inline: 2rem;
  }
}

.ff-footer__inner {
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 64rem) {
  .ff-footer__inner {
    flex-direction: row;
    gap: 0;
  }
}

.ff-footer__copy {
  font-size: 12px;
  color: hsl(25 5.3% 44.7%);
  order: 3;
}

@media (min-width: 64rem) {
  .ff-footer__copy {
    order: 1;
  }
}

.ff-footer__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  order: 1;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 64rem) {
  .ff-footer__nav {
    order: 3;
  }
}

.ff-footer__nav a {
  font-size: 12px;
  color: hsl(25 5.3% 44.7%);
  text-decoration: none;
  transition: color 0.15s;
}

.ff-footer__nav a:hover {
  color: hsl(240, 3.33%, 11.8%);
}

.ff-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  order: 2;
}

@media (min-width: 64rem) {
  .ff-footer__social {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.ff-footer__social a {
  color: hsl(25 5.3% 44.7%);
  text-decoration: none;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ff-footer__social a:hover {
  color: hsl(24.6, 95%, 53.1%);
}

.ff-footer__social svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ── PAGE HEADER BANNER ── */
.ff-page-banner {
  border-radius: var(--ff-radius-xl);
  position: relative;
  overflow: hidden;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--ff-background);
  padding: 0.5rem 1rem;
  min-height: 3rem;
}

@media (min-width: 64rem) {
  .ff-page-banner {
    display: flex;
  }
}

.ff-page-banner__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.ff-page-banner__text {
  font-size: 16px;
  line-height: 28px;
  margin: 0;
}

/* ── KNOWLEDGE PAGE SPECIFIC ── */
.ff-knowledge-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 48rem) {
  .ff-knowledge-layout {
    padding-block: 2.5rem 3rem;
    gap: 2rem;
  }
}

.ff-knowledge-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 1rem;
}

@media (min-width: 40rem) {
  .ff-knowledge-header {
    padding-block: 2.5rem;
  }
}

.ff-knowledge-intro {
  background-color: var(--ff-card);
  border-radius: var(--ff-radius-xl);
  box-shadow: var(--ff-shadow-section);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 40rem) {
  .ff-knowledge-intro {
    padding: 2rem;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}

.ff-knowledge-intro__image {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0 auto;
}

@media (min-width: 40rem) {
  .ff-knowledge-intro__image {
    width: 6.875rem;
    height: 6.875rem;
    margin: 0;
  }
}

.ff-knowledge-intro__content {
  flex: 1;
  min-width: 0;
}

.ff-knowledge-intro__title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

@media (min-width: 40rem) {
  .ff-knowledge-intro__title {
    font-size: 28px;
    line-height: 36px;
  }
}

.ff-knowledge-intro__text {
  font-size: 14px;
  line-height: 24px;
  color: var(--ff-neutral-500);
  margin: 0;
}

@media (min-width: 40rem) {
  .ff-knowledge-intro__text {
    font-size: 16px;
    line-height: 28px;
  }
}

/* ── ABOUT PAGE SPECIFIC ── */
.ff-about-layout {
  padding-block: 1rem;
}

@media (min-width: 40rem) {
  .ff-about-layout {
    padding-block: 2.5rem 3rem;
  }
}

.ff-about-mission {
  background-color: var(--ff-card);
  border-radius: var(--ff-radius-xl);
  box-shadow: var(--ff-shadow-section);
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 40rem) {
  .ff-about-mission {
    padding: 2rem;
  }
}

@media (min-width: 64rem) {
  .ff-about-mission {
    flex-direction: row;
    gap: 3rem;
    align-items: center;
  }
}

.ff-about-mission__content {
  flex: 1;
}

.ff-about-mission__graphic {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ff-about-mission__graphic img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}

@media (min-width: 64rem) {
  .ff-about-mission__graphic img {
    width: 6.875rem;
    height: 6.875rem;
  }
}

.ff-about-section {
  padding-block: 2rem;
}

.ff-about-section + .ff-about-section {
  border-top: 1px solid var(--ff-neutral-300);
}

.ff-about-section__title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin: 0 0 1rem;
}

@media (min-width: 40rem) {
  .ff-about-section__title {
    font-size: 28px;
    line-height: 36px;
  }
}

/* ── STEP LIST (How it works) ── */
.ff-step-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  counter-reset: ff-step;
}

.ff-step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ff-step-item__number {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: hsl(24.6 95% 53.1% / 0.1);
  color: hsl(24.6, 95%, 53.1%);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
  counter-increment: ff-step;
}

.ff-step-item__content {
  flex: 1;
  min-width: 0;
}

.ff-step-item__title {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--ff-foreground);
}

.ff-step-item__text {
  font-size: 14px;
  line-height: 24px;
  color: var(--ff-neutral-500);
  margin: 0;
}

/* ── INLINE NAV (section tabs) ── */
.ff-tab-nav {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  border-bottom: 1px solid var(--ff-neutral-300);
  overflow-x: auto;
}

.ff-tab-nav__item a,
.ff-tab-nav__item button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--ff-neutral-500);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.ff-tab-nav__item a:hover,
.ff-tab-nav__item button:hover {
  color: var(--ff-foreground);
}

.ff-tab-nav__item a.is-active,
.ff-tab-nav__item button.is-active {
  color: var(--ff-foreground);
  border-bottom-color: hsl(24.6, 95%, 53.1%);
  font-weight: 600;
}

/* ── UTILITY ── */
.ff-text-center {
  text-align: center;
}

.ff-text-primary {
  color: hsl(24.6, 95%, 53.1%);
}

.ff-text-muted {
  color: var(--ff-neutral-500);
}

.ff-font-semibold {
  font-weight: 600;
}

.ff-mt-2 {
  margin-top: 0.5rem;
}

.ff-mt-4 {
  margin-top: 1rem;
}

.ff-mt-6 {
  margin-top: 1.5rem;
}

.ff-mt-8 {
  margin-top: 2rem;
}

.ff-mb-4 {
  margin-bottom: 1rem;
}

.ff-mb-6 {
  margin-bottom: 1.5rem;
}

.ff-mb-8 {
  margin-bottom: 2rem;
}

.ff-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border-width: 0;
}

.ff-flex {
  display: flex;
}

.ff-flex-col {
  flex-direction: column;
}

.ff-items-center {
  align-items: center;
}

.ff-justify-between {
  justify-content: space-between;
}

.ff-gap-2 {
  gap: 0.5rem;
}

.ff-gap-4 {
  gap: 1rem;
}

.ff-w-full {
  width: 100%;
}

.ff-max-w-xl {
  max-width: 36rem;
}

.ff-max-w-2xl {
  max-width: 42rem;
}

.ff-mx-auto {
  margin-inline: auto;
}

.ff-hidden {
  display: none;
}

@media (min-width: 64rem) {
  .ff-lg-block {
    display: block;
  }

  .ff-lg-hidden {
    display: none;
  }
}

/* ── COOKIE BANNER ── */
.ff-cookie-banner {
  position: fixed;
  inset-x: 0;
  bottom: 0;
  z-index: 50;
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #000;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  gap: 0.75rem;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}

@media (min-width: 64rem) {
  .ff-cookie-banner {
    gap: 2rem;
  }
}

.ff-cookie-banner__text {
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}

.ff-cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 1.5rem;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  background-color: #fff;
  color: #000;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s;
}

.ff-cookie-banner__btn:hover {
  background-color: #f5f5f5;
}

/* ── SKIP LINK (a11y) ── */
.ff-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}

.ff-skip-link:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  width: auto;
  height: auto;
  overflow: visible;
  z-index: 999;
  padding: 0.5rem 1rem;
  background-color: #fff;
  color: hsl(24.6, 95%, 53.1%);
  font-weight: 600;
  border-radius: var(--ff-radius);
  box-shadow: var(--ff-shadow-section);
  text-decoration: none;
}