

:root {
  --depth-900: #0B0D0F;
  --depth-800: #141820;
  --depth-700: #1C2330;
  --depth-600: #252E40;
  --depth-400: #3D4D66;
  --surface-light: #F4F5F7;
  --surface-white: #FFFFFF;
  --surface-warm: #F0EDE8;
  --ink-primary: #F0F2F5;
  --ink-secondary: #C8D0DE;
  --ink-muted: #8892A4;
  --ink-dark-primary: #1A2035;
  --ink-dark-secondary: #3A4565;
  --accent-teal: #00D4C8;
  --accent-teal-dim: #00A89E;
  --accent-copper: #C06A2B;
  --accent-copper-dim: #8A4D1F;
  --accent-green: #22C55E;
  --accent-red: #EF4444;
  --radius-card: 4px;
  --radius-inline: 2px;
  --radius-pill: 999px;
  --container-max: 1200px;
  --section-py: 80px;
  --section-py-sm: 60px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'IBM Plex Sans', Inter, system-ui, -apple-system, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-dark-primary);
  background: var(--surface-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.fpw-display {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.fpw-h1 {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.fpw-h2 {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.fpw-h3 {
  font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.4;
}

.fpw-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

.fpw-body-md {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.65;
}

.fpw-caption {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
}

.fpw-mono {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
}

.fpw-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-container--narrow {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
}

.fpw-btn--primary {
  background: var(--accent-teal);
  color: var(--depth-900);
  border: 2px solid var(--accent-teal);
}

.fpw-btn--primary:hover {
  background: #00bdb2;
  border-color: #00bdb2;
  color: var(--depth-900);
}

.fpw-btn--outline-dark {
  background: transparent;
  color: var(--ink-primary);
  border: 2px solid var(--depth-400);
}

.fpw-btn--outline-dark:hover {
  border-color: var(--ink-primary);
  color: var(--ink-primary);
}

.fpw-btn--outline-light {
  background: transparent;
  color: var(--ink-dark-primary);
  border: 2px solid var(--ink-dark-secondary);
}

.fpw-btn--outline-light:hover {
  border-color: var(--ink-dark-primary);
  color: var(--ink-dark-primary);
}

.fpw-btn--ghost-on-dark {
  background: transparent;
  color: var(--ink-primary);
  border: 2px solid transparent;
  padding: 0.625rem 1rem;
}

.fpw-btn--ghost-on-dark:hover {
  color: var(--accent-teal);
}

.fpw-btn--ghost-on-light {
  background: transparent;
  color: var(--ink-dark-primary);
  border: 2px solid transparent;
  padding: 0.625rem 1rem;
}

.fpw-btn--ghost-on-light:hover {
  color: var(--accent-teal-dim);
}

.fpw-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.fpw-btn--lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.fpw-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.fpw-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  height: 64px;
}

.fpw-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.fpw-nav__logo img {
  height: 30px;
  width: auto;
}

.fpw-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.fpw-nav__link {
  font-size: 0.9375rem;
  font-weight: 400;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-inline);
  transition: color 0.15s ease;
  display: block;
}

.fpw-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.fpw-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: var(--radius-inline);
  background: none;
  border: none;
  cursor: pointer;
}

.fpw-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.fpw-nav__mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  padding: 1rem 0 1.5rem;
  z-index: 999;
}

.fpw-nav__mobile-links {
  list-style: none;
  padding: 0;
}

.fpw-nav__mobile-link {
  display: block;
  padding: 0.75rem clamp(1rem, 4vw, 2rem);
  font-size: 1rem;
  font-weight: 400;
}

.fpw-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem clamp(1rem, 4vw, 2rem) 0;
}

.fpw-nav__mobile.is-open {
  display: block;
}

.fpw-nav.is-open .fpw-nav__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.fpw-nav.is-open .fpw-nav__hamburger span:nth-child(2) {
  opacity: 0;
}

.fpw-nav.is-open .fpw-nav__hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.fpw-page--dark-top .fpw-nav {
  background: transparent;
}

.fpw-page--dark-top .fpw-nav.is-scrolled {
  background: var(--depth-800);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.fpw-page--dark-top .fpw-nav__link {
  color: var(--ink-secondary);
}

.fpw-page--dark-top .fpw-nav__link:hover {
  color: var(--ink-primary);
}

.fpw-page--dark-top .fpw-nav__hamburger span {
  background: var(--ink-secondary);
}

.fpw-page--dark-top .fpw-nav__mobile {
  background: var(--depth-800);
}

.fpw-page--dark-top .fpw-nav__mobile-link {
  color: var(--ink-secondary);
}

.fpw-page--dark-top .fpw-nav__mobile-link:hover {
  color: var(--ink-primary);
}

.fpw-page--light-top .fpw-nav {
  background: var(--surface-light);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.fpw-page--light-top .fpw-nav__link {
  color: var(--ink-dark-secondary);
}

.fpw-page--light-top .fpw-nav__link:hover {
  color: var(--ink-dark-primary);
}

.fpw-page--light-top .fpw-nav__hamburger span {
  background: var(--ink-dark-secondary);
}

.fpw-page--light-top .fpw-nav__mobile {
  background: var(--surface-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.fpw-page--light-top .fpw-nav__mobile-link {
  color: var(--ink-dark-secondary);
}

.fpw-page--light-top .fpw-nav__mobile-link:hover {
  color: var(--ink-dark-primary);
}

.fpw-page--light-top .fpw-btn--ghost-on-dark {
  color: var(--ink-dark-secondary);
  border-color: transparent;
}

.fpw-page--light-top .fpw-btn--ghost-on-dark:hover {
  color: var(--accent-teal-dim);
}

.fpw-footer {
  background: var(--depth-900);
  padding: 64px 0 32px;
}

.fpw-footer__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.fpw-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fpw-footer__logo img {
  height: 28px;
  width: auto;
}

.fpw-footer__tagline {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 260px;
}

.fpw-footer__col-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.fpw-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
}

.fpw-footer__col-link {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-secondary);
  transition: color 0.15s ease;
}

.fpw-footer__col-link:hover {
  color: var(--accent-teal);
}

.fpw-footer__divider {
  border: none;
  border-top: 1px solid var(--depth-600);
  margin-bottom: 1.5rem;
}

.fpw-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.fpw-footer__copy {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--ink-muted);
}

.fpw-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.fpw-footer__legal-link {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--ink-muted);
  transition: color 0.15s ease;
}

.fpw-footer__legal-link:hover {
  color: var(--accent-teal);
}

.fpw-section--dark {
  background: var(--depth-900);
}

.fpw-section--dark-alt {
  background: var(--depth-800);
}

.fpw-section--light {
  background: var(--surface-light);
}

.fpw-section--white {
  background: var(--surface-white);
}

.fpw-section--warm {
  background: var(--surface-warm);
}

.fpw-section--brand {
  background: var(--depth-700);
  border-top: 1px solid var(--depth-600);
  border-bottom: 1px solid var(--depth-600);
}

.fpw-hero {
  background: var(--depth-900);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.fpw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(0,212,200,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(192,106,43,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.fpw-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.fpw-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fpw-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fpw-hero__label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-teal);
  border-radius: 50%;
  animation: fpw-pulse 2s ease-in-out infinite;
}

@keyframes fpw-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.fpw-hero__h1 {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-primary);
}

.fpw-hero__h1 em {
  font-style: normal;
  color: var(--accent-teal);
}

.fpw-hero__subhead {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--ink-secondary);
  line-height: 1.7;
  max-width: 520px;
}

.fpw-hero__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.fpw-hero__media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fpw-hero__waveform {
  background: var(--depth-800);
  border: 1px solid var(--depth-600);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  overflow: hidden;
}

.fpw-hero__screenshot {
  border-radius: var(--radius-card);
  border: 1px solid var(--depth-600);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.fpw-hero__screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.fpw-social-proof {
  background: var(--depth-800);
  padding: 32px 0;
  border-top: 1px solid var(--depth-600);
  border-bottom: 1px solid var(--depth-600);
}

.fpw-social-proof__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.fpw-social-proof__label {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fpw-social-proof__logos {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.fpw-social-proof__logo-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.fpw-problem {
  padding: var(--section-py) 0;
  background: var(--depth-900);
}

.fpw-problem__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-problem__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  color: var(--ink-primary);
  max-width: 640px;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.fpw-problem__body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-secondary);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 3rem;
}

.fpw-problem__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fpw-stat {
  background: var(--depth-800);
  border: 1px solid var(--depth-600);
  border-radius: var(--radius-card);
  padding: 1.75rem;
}

.fpw-stat__value {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--accent-teal);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.fpw-stat__label {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ink-secondary);
  line-height: 1.5;
  display: block;
}

.fpw-problem__note {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--ink-muted);
  font-style: italic;
}

.fpw-hiw {
  padding: var(--section-py) 0;
  background: var(--surface-light);
}

.fpw-hiw__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-hiw__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  color: var(--ink-dark-primary);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.fpw-hiw__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.fpw-hiw-step {
  background: var(--surface-white);
  border: 1px solid rgba(26,32,53,0.1);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  position: relative;
}

.fpw-hiw-step__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--accent-teal-dim);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
}

.fpw-hiw-step__title {
  font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--ink-dark-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.fpw-hiw-step__body {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.65;
}

.fpw-features {
  padding: var(--section-py) 0;
  background: var(--surface-white);
}

.fpw-features__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-features__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  color: var(--ink-dark-primary);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.fpw-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fpw-feature-card {
  background: var(--surface-light);
  border: 1px solid rgba(26,32,53,0.08);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fpw-feature-card:hover {
  border-color: rgba(0,212,200,0.3);
  box-shadow: 0 4px 16px rgba(0,212,200,0.06);
}

.fpw-feature-card__icon {
  width: 40px;
  height: 40px;
  background: var(--depth-800);
  border-radius: var(--radius-inline);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-teal);
  font-size: 1rem;
}

.fpw-feature-card__title {
  font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink-dark-primary);
  margin-bottom: 0.625rem;
  line-height: 1.4;
}

.fpw-feature-card__body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.65;
}

.fpw-deep-dive {
  padding: var(--section-py) 0;
  background: var(--depth-900);
}

.fpw-deep-dive__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.fpw-deep-dive-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fpw-deep-dive-panel--reverse {
  direction: rtl;
}

.fpw-deep-dive-panel--reverse .fpw-deep-dive-panel__content,
.fpw-deep-dive-panel--reverse .fpw-deep-dive-panel__visual {
  direction: ltr;
}

.fpw-deep-dive-panel__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fpw-deep-dive-panel__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  color: var(--ink-primary);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.fpw-deep-dive-panel__body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-secondary);
  line-height: 1.7;
}

.fpw-deep-dive-panel__visual {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--depth-800);
  border: 1px solid var(--depth-600);
}

.fpw-deep-dive-panel__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.fpw-deep-dive-panel__mock {
  padding: 1.5rem;
}

.fpw-pr-comment {
  background: var(--depth-700);
  border: 1px solid var(--depth-600);
  border-radius: var(--radius-card);
  overflow: hidden;
  font-family: 'IBM Plex Mono', monospace;
}

.fpw-pr-comment__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--depth-800);
  border-bottom: 1px solid var(--depth-600);
}

.fpw-pr-comment__bot-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--depth-900);
  font-size: 0.65rem;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  flex-shrink: 0;
}

.fpw-pr-comment__bot-name {
  font-size: 0.8125rem;
  color: var(--ink-secondary);
}

.fpw-pr-comment__body {
  padding: 1rem;
}

.fpw-pr-comment__diff-line {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--ink-muted);
}

.fpw-pr-comment__diff-line--removed {
  color: #f87171;
  background: rgba(248,113,113,0.08);
  padding: 0 4px;
  margin: 0 -4px;
}

.fpw-pr-comment__diff-line--added {
  color: #4ade80;
  background: rgba(74,222,128,0.08);
  padding: 0 4px;
  margin: 0 -4px;
}

.fpw-pr-comment__annotation {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: rgba(0,212,200,0.08);
  border-left: 3px solid var(--accent-teal);
  border-radius: 0 var(--radius-inline) var(--radius-inline) 0;
}

.fpw-pr-comment__annotation-text {
  font-size: 0.8125rem;
  color: var(--accent-teal);
  font-family: 'IBM Plex Mono', monospace;
}

.fpw-pr-comment__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--accent-red);
  margin-bottom: 0.5rem;
}

.fpw-testimonials {
  padding: var(--section-py) 0;
  background: var(--depth-800);
}

.fpw-testimonials__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-testimonials__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  color: var(--ink-secondary);
  text-align: center;
  margin-bottom: 3rem;
}

.fpw-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fpw-testimonial-card {
  background: var(--depth-700);
  border: 1px solid var(--depth-600);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fpw-testimonial-card__quote-mark {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 2.5rem;
  color: var(--accent-teal);
  line-height: 1;
  opacity: 0.6;
}

.fpw-testimonial-card__text {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-secondary);
  line-height: 1.7;
  flex: 1;
}

.fpw-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.fpw-testimonial-card__portrait {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  background: var(--depth-600);
  border: 1px solid var(--depth-400);
}

.fpw-testimonial-card__name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-primary);
  display: block;
}

.fpw-testimonial-card__role {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--ink-muted);
  display: block;
}

.fpw-cta-bottom {
  padding: var(--section-py) 0;
  background: var(--depth-700);
  border-top: 1px solid var(--depth-600);
  border-bottom: 1px solid var(--depth-600);
}

.fpw-cta-bottom__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.fpw-cta-bottom__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  color: var(--ink-primary);
  max-width: 560px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.fpw-cta-bottom__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.fpw-fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fpw-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fpw-page-hero {
  padding: 120px 0 80px;
  position: relative;
}

.fpw-page-hero--dark {
  background: var(--depth-900);
}

.fpw-page-hero--light {
  background: var(--surface-light);
}

.fpw-page-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}

.fpw-page-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fpw-page-hero--dark .fpw-page-hero__label {
  color: var(--accent-teal);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fpw-page-hero--dark .fpw-page-hero__h1 {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--ink-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.fpw-page-hero--dark .fpw-page-hero__subhead {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--ink-secondary);
  line-height: 1.7;
  max-width: 580px;
}

.fpw-page-hero--light .fpw-page-hero__label {
  color: var(--accent-teal-dim);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fpw-page-hero--light .fpw-page-hero__h1 {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--ink-dark-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.fpw-page-hero--light .fpw-page-hero__subhead {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.7;
  max-width: 580px;
}

.fpw-page-hero__visual-anchor {
  flex-shrink: 0;
}

.fpw-product-section {
  padding: var(--section-py) 0;
}

.fpw-product-section__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-product-section__header {
  margin-bottom: 3rem;
}

.fpw-product-section__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.875rem;
}

.fpw-product-section__heading--dark {
  color: var(--ink-primary);
}

.fpw-product-section__heading--light {
  color: var(--ink-dark-primary);
}

.fpw-product-section__body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 620px;
}

.fpw-product-section__body--dark {
  color: var(--ink-secondary);
}

.fpw-product-section__body--light {
  color: var(--ink-dark-secondary);
}

.fpw-rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.fpw-rule-card {
  background: var(--surface-light);
  border: 1px solid rgba(26,32,53,0.08);
  border-radius: var(--radius-card);
  padding: 1.5rem;
}

.fpw-rule-card__category {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-teal-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.fpw-rule-card__count {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--ink-dark-primary);
  margin-bottom: 0.25rem;
  display: block;
}

.fpw-rule-card__label {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  display: block;
}

.fpw-integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.fpw-integration-card {
  background: var(--surface-light);
  border: 1px solid rgba(26,32,53,0.08);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fpw-integration-card__icon {
  width: 36px;
  height: 36px;
  background: var(--depth-800);
  border-radius: var(--radius-inline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.fpw-integration-card__name {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--ink-dark-primary);
  display: block;
}

.fpw-integration-card__type {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  display: block;
  margin-top: 0.2rem;
}

.fpw-hiw-page-section {
  padding: var(--section-py) 0;
}

.fpw-hiw-page-section__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-step-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
}

.fpw-step-detail__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--depth-600);
  flex-shrink: 0;
  width: 80px;
  text-align: right;
}

.fpw-step-detail__num--dark {
  color: var(--depth-400);
}

.fpw-step-detail__num--light {
  color: rgba(26,32,53,0.12);
}

.fpw-step-detail__content {
  padding-top: 0.5rem;
}

.fpw-step-detail__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.fpw-step-detail__heading--dark {
  color: var(--ink-primary);
}

.fpw-step-detail__heading--light {
  color: var(--ink-dark-primary);
}

.fpw-step-detail__body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.fpw-step-detail__body--dark {
  color: var(--ink-secondary);
}

.fpw-step-detail__body--light {
  color: var(--ink-dark-secondary);
}

.fpw-code-snippet {
  background: var(--depth-900);
  border: 1px solid var(--depth-600);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.fpw-code-snippet__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--depth-800);
  border-bottom: 1px solid var(--depth-600);
}

.fpw-code-snippet__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--depth-400);
}

.fpw-code-snippet__filename {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-left: 0.5rem;
}

.fpw-code-snippet__body {
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
}

.fpw-code-snippet pre {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--ink-secondary);
  white-space: pre;
}

.fpw-code-snippet .tok-keyword {
  color: var(--accent-teal);
}

.fpw-code-snippet .tok-string {
  color: #a3e635;
}

.fpw-code-snippet .tok-comment {
  color: var(--ink-muted);
  font-style: italic;
}

.fpw-code-snippet .tok-value {
  color: var(--accent-copper);
}

.fpw-code-snippet .tok-flag {
  color: #c084fc;
}

.fpw-uc-section {
  padding: var(--section-py) 0;
}

.fpw-uc-section__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.fpw-uc-section__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fpw-uc-section__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-inline);
}

.fpw-uc-section__tag--light {
  color: var(--accent-teal-dim);
  background: rgba(0,168,158,0.1);
}

.fpw-uc-section__tag--dark {
  color: var(--accent-teal);
  background: rgba(0,212,200,0.1);
}

.fpw-uc-section__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.fpw-uc-section__heading--dark {
  color: var(--ink-primary);
}

.fpw-uc-section__heading--light {
  color: var(--ink-dark-primary);
}

.fpw-uc-section__body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

.fpw-uc-section__body--dark {
  color: var(--ink-secondary);
}

.fpw-uc-section__body--light {
  color: var(--ink-dark-secondary);
}

.fpw-uc-section__visual {
  position: relative;
}

.fpw-uc-checklist {
  background: var(--depth-800);
  border: 1px solid var(--depth-600);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fpw-uc-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-secondary);
  line-height: 1.5;
}

.fpw-uc-checklist__item i {
  color: var(--accent-teal);
  margin-top: 0.15em;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.fpw-uc-checklist--light {
  background: var(--surface-white);
  border-color: rgba(26,32,53,0.1);
}

.fpw-uc-checklist--light .fpw-uc-checklist__item {
  color: var(--ink-dark-secondary);
}

.fpw-uc-checklist--light .fpw-uc-checklist__item i {
  color: var(--accent-teal-dim);
}

.fpw-pricing-section {
  padding: var(--section-py) 0;
  background: var(--surface-light);
}

.fpw-pricing-section__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.fpw-pricing-toggle__label {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
}

.fpw-pricing-toggle__label--active {
  font-weight: 500;
  color: var(--ink-dark-primary);
}

.fpw-pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.fpw-pricing-card {
  background: var(--surface-white);
  border: 1px solid rgba(26,32,53,0.1);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fpw-pricing-card--featured {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 1px var(--accent-teal);
  position: relative;
}

.fpw-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-teal);
  color: var(--depth-900);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.875rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.fpw-pricing-card__tier {
  font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-dark-secondary);
  margin-bottom: 0.5rem;
}

.fpw-pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.fpw-pricing-card__amount {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--ink-dark-primary);
  line-height: 1;
}

.fpw-pricing-card__unit {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
}

.fpw-pricing-card__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.fpw-pricing-card__caps {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--ink-dark-secondary);
  line-height: 1.6;
  padding: 0.75rem;
  background: var(--surface-light);
  border-radius: var(--radius-inline);
  margin-bottom: 1.5rem;
}

.fpw-pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
  flex: 1;
}

.fpw-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.5;
}

.fpw-pricing-card__feature i {
  color: var(--accent-teal-dim);
  font-size: 0.8125rem;
  margin-top: 0.2em;
  flex-shrink: 0;
}

.fpw-pricing-card__cta {
  display: block;
  text-align: center;
  width: 100%;
}

.fpw-faq-section {
  padding: var(--section-py) 0;
  background: var(--surface-white);
}

.fpw-faq-section__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-faq-section__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ink-dark-primary);
  margin-bottom: 2.5rem;
  text-align: center;
}

.fpw-faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(26,32,53,0.1);
}

.fpw-faq-item {
  border-bottom: 1px solid rgba(26,32,53,0.1);
}

.fpw-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-dark-primary);
  transition: color 0.15s ease;
}

.fpw-faq-item__trigger:hover {
  color: var(--accent-teal-dim);
}

.fpw-faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ink-dark-secondary);
  transition: transform 0.22s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fpw-faq-item.is-open .fpw-faq-item__icon {
  transform: rotate(45deg);
}

.fpw-faq-item.is-open .fpw-faq-item__trigger {
  color: var(--accent-teal-dim);
}

.fpw-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.fpw-faq-item.is-open .fpw-faq-item__answer {
  max-height: 400px;
}

.fpw-faq-item__answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.7;
}

.fpw-docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 64px);
  margin-top: 64px;
}

.fpw-docs-sidebar {
  background: var(--surface-light);
  border-right: 1px solid rgba(26,32,53,0.1);
  padding: 2rem 0;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
}

.fpw-docs-sidebar__section {
  padding: 0.25rem 1.5rem;
  margin-bottom: 0.25rem;
}

.fpw-docs-sidebar__label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-dark-secondary);
  padding: 0.75rem 1.5rem 0.25rem;
  display: block;
}

.fpw-docs-sidebar__link {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  border-radius: var(--radius-inline);
  transition: color 0.15s ease, background 0.15s ease;
  line-height: 1.4;
}

.fpw-docs-sidebar__link:hover {
  color: var(--ink-dark-primary);
  background: rgba(26,32,53,0.06);
}

.fpw-docs-sidebar__link--active {
  color: var(--accent-teal-dim);
  background: rgba(0,168,158,0.08);
  font-weight: 400;
}

.fpw-docs-main {
  background: var(--surface-white);
  padding: 3rem 3.5rem;
  max-width: 900px;
}

.fpw-docs-content {
  max-width: 720px;
}

.fpw-docs-content h1 {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--ink-dark-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.fpw-docs-content h2 {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--ink-dark-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.fpw-docs-content h3 {
  font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--ink-dark-primary);
  margin-top: 2rem;
  margin-bottom: 0.625rem;
}

.fpw-docs-content p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.fpw-docs-content ul {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.fpw-docs-content ul li {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.7;
  margin-bottom: 0.375rem;
}

.fpw-docs-content ol {
  padding-left: 1.5rem;
  list-style: decimal;
  margin-bottom: 1rem;
}

.fpw-docs-content ol li {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.7;
  margin-bottom: 0.375rem;
}

.fpw-docs-content a {
  color: var(--accent-teal-dim);
  text-decoration: underline;
  text-decoration-color: rgba(0,168,158,0.3);
}

.fpw-docs-content a:hover {
  text-decoration-color: var(--accent-teal-dim);
}

.fpw-docs-content pre {
  background: var(--depth-900);
  border: 1px solid var(--depth-600);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.fpw-docs-content pre code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--ink-secondary);
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
}

.fpw-docs-content code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  background: var(--surface-light);
  border: 1px solid rgba(26,32,53,0.1);
  border-radius: var(--radius-inline);
  padding: 0.125rem 0.375rem;
  color: var(--ink-dark-primary);
}

.fpw-docs-content blockquote {
  border-left: 3px solid var(--accent-teal-dim);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--ink-dark-secondary);
}

.fpw-docs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  color: var(--ink-dark-secondary);
  margin-bottom: 2rem;
}

.fpw-docs-breadcrumb__sep {
  color: var(--ink-muted);
}

.fpw-docs-breadcrumb__link {
  color: var(--accent-teal-dim);
}

.fpw-docs-breadcrumb__link:hover {
  text-decoration: underline;
}

.fpw-docs-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(26,32,53,0.08);
}

.fpw-docs-step:last-child {
  border-bottom: none;
}

.fpw-docs-step__num {
  width: 28px;
  height: 28px;
  background: var(--depth-900);
  color: var(--accent-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.fpw-docs-step__content {
  flex: 1;
}

.fpw-docs-step__heading {
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink-dark-primary);
  margin-bottom: 0.5rem;
}

.fpw-docs-step__body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.65;
}

.fpw-docs-rules-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.fpw-docs-rules-table th {
  text-align: left;
  padding: 0.625rem 0.875rem;
  background: var(--surface-light);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--ink-dark-secondary);
  border-bottom: 2px solid rgba(26,32,53,0.1);
}

.fpw-docs-rules-table td {
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid rgba(26,32,53,0.06);
  font-weight: 300;
  color: var(--ink-dark-secondary);
  vertical-align: top;
}

.fpw-docs-rules-table td:first-child {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  color: var(--accent-teal-dim);
  white-space: nowrap;
}

.fpw-docs-rules-table tr:hover td {
  background: rgba(26,32,53,0.02);
}

.fpw-tag--pass {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  background: rgba(34,197,94,0.12);
  color: var(--accent-green);
}

.fpw-tag--fail {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  background: rgba(239,68,68,0.12);
  color: var(--accent-red);
}

.fpw-tag--warn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  background: rgba(192,106,43,0.12);
  color: var(--accent-copper);
}

.fpw-api-endpoint {
  background: var(--surface-light);
  border: 1px solid rgba(26,32,53,0.1);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.fpw-api-endpoint__method-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.fpw-api-method {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-inline);
}

.fpw-api-method--get {
  background: rgba(34,197,94,0.12);
  color: var(--accent-green);
}

.fpw-api-method--post {
  background: rgba(0,212,200,0.12);
  color: var(--accent-teal-dim);
}

.fpw-api-method--delete {
  background: rgba(239,68,68,0.12);
  color: var(--accent-red);
}

.fpw-api-endpoint__path {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: var(--ink-dark-primary);
}

.fpw-api-endpoint__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.6;
}

.fpw-blog-hero {
  padding: 120px 0 80px;
  background: var(--depth-900);
}

.fpw-blog-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}

.fpw-blog-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fpw-blog-hero__eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fpw-blog-hero__h1 {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--ink-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.fpw-blog-hero__subhead {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-secondary);
  line-height: 1.7;
  max-width: 520px;
}

.fpw-blog-hero__stat {
  background: var(--depth-800);
  border: 1px solid var(--depth-600);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  text-align: right;
  flex-shrink: 0;
}

.fpw-blog-hero__stat-num {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--accent-teal);
  display: block;
}

.fpw-blog-hero__stat-label {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--ink-muted);
  display: block;
}

.fpw-blog-grid-section {
  padding: var(--section-py) 0;
  background: var(--surface-light);
}

.fpw-blog-grid-section__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fpw-blog-card {
  background: var(--surface-white);
  border: 1px solid rgba(26,32,53,0.08);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.fpw-blog-card:hover {
  border-color: rgba(0,212,200,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.fpw-blog-card__cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--depth-600);
  display: block;
}

.fpw-blog-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.fpw-blog-card__tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-teal-dim);
}

.fpw-blog-card__title {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ink-dark-primary);
  line-height: 1.35;
}

.fpw-blog-card:hover .fpw-blog-card__title {
  color: var(--accent-teal-dim);
}

.fpw-blog-card__excerpt {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.65;
  flex: 1;
}

.fpw-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--ink-muted);
  padding-top: 0.5rem;
  border-top: 1px solid rgba(26,32,53,0.08);
}

.fpw-blog-card__meta-sep {
  color: var(--ink-muted);
  opacity: 0.5;
}

.fpw-article-header {
  padding: 120px 0 60px;
  background: var(--surface-light);
}

.fpw-article-header__inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-article-header__tag {
  display: inline-flex;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-teal-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.fpw-article-header__h1 {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--ink-dark-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.fpw-article-header__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
}

.fpw-article-cover {
  max-width: 900px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  padding-bottom: 3rem;
}

.fpw-article-cover img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  display: block;
}

.fpw-article-body {
  max-width: 720px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  padding-bottom: 5rem;
}

.fpw-blog-article h2 {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink-dark-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.fpw-blog-article h3 {
  font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--ink-dark-primary);
  margin-top: 2rem;
  margin-bottom: 0.625rem;
}

.fpw-blog-article p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.fpw-blog-article ul {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 1.25rem;
}

.fpw-blog-article ul li {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.7;
  margin-bottom: 0.375rem;
}

.fpw-blog-article ol {
  padding-left: 1.5rem;
  list-style: decimal;
  margin-bottom: 1.25rem;
}

.fpw-blog-article ol li {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.7;
  margin-bottom: 0.375rem;
}

.fpw-blog-article blockquote {
  border-left: 3px solid var(--accent-teal-dim);
  padding: 0.75rem 0 0.75rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--ink-dark-secondary);
}

.fpw-blog-article pre {
  background: var(--depth-900);
  border: 1px solid var(--depth-600);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.fpw-blog-article pre code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--ink-secondary);
  background: transparent;
  border: none;
  padding: 0;
}

.fpw-blog-article code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  background: var(--surface-light);
  border: 1px solid rgba(26,32,53,0.1);
  border-radius: var(--radius-inline);
  padding: 0.125rem 0.375rem;
  color: var(--ink-dark-primary);
}

.fpw-blog-article img {
  max-width: 100%;
  border-radius: var(--radius-card);
  margin: 1.5rem 0;
}

.fpw-about-story-section {
  padding: var(--section-py) 0;
  background: var(--surface-white);
}

.fpw-about-story-section__inner {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-about-story-section__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  color: var(--ink-dark-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.fpw-about-story-section__body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.8;
}

.fpw-team-section {
  padding: var(--section-py) 0;
  background: var(--surface-light);
}

.fpw-team-section__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-team-section__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  color: var(--ink-dark-primary);
  margin-bottom: 3rem;
  text-align: center;
}

.fpw-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.fpw-team-card {
  background: var(--surface-white);
  border: 1px solid rgba(26,32,53,0.08);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fpw-team-card__portrait {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  background: var(--depth-600);
  border: 2px solid rgba(26,32,53,0.08);
}

.fpw-team-card__name {
  font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--ink-dark-primary);
  display: block;
}

.fpw-team-card__title {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--accent-teal-dim);
  display: block;
  margin-top: 0.2rem;
}

.fpw-team-card__bio {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.65;
}

.fpw-mission-section {
  padding: var(--section-py) 0;
  background: var(--depth-900);
}

.fpw-mission-section__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  text-align: center;
}

.fpw-mission-section__quote-mark {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 5rem;
  color: var(--accent-teal);
  opacity: 0.3;
  line-height: 0.8;
  margin-bottom: 1.5rem;
  display: block;
}

.fpw-mission-section__statement {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  color: var(--ink-secondary);
  line-height: 1.6;
  font-style: italic;
}

.fpw-contact-section {
  padding: var(--section-py) 0;
  background: var(--surface-light);
}

.fpw-contact-section__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.fpw-contact-hero {
  padding: 120px 0 60px;
  background: var(--surface-light);
}

.fpw-contact-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-contact-hero__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--ink-dark-primary);
  margin-bottom: 0.5rem;
}

.fpw-contact-form-section {
  padding: var(--section-py) 0;
  background: var(--surface-white);
}

.fpw-contact-form-section__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.fpw-contact-form-panel {
  background: var(--surface-white);
}

.fpw-contact-form-panel__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink-dark-primary);
  margin-bottom: 1.5rem;
}

.fpw-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.fpw-form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-dark-primary);
}

.fpw-form-label--required::after {
  content: ' *';
  color: var(--accent-red);
}

.fpw-form-input,
.fpw-form-textarea,
.fpw-form-select {
  width: 100%;
  padding: 0.6875rem 0.875rem;
  background: var(--surface-white);
  border: 1px solid rgba(26,32,53,0.2);
  border-radius: var(--radius-card);
  font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-dark-primary);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}

.fpw-form-input:focus,
.fpw-form-textarea:focus,
.fpw-form-select:focus {
  outline: none;
  border-color: var(--accent-teal-dim);
  box-shadow: 0 0 0 3px rgba(0,168,158,0.12);
}

.fpw-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.fpw-contact-info-panel {
  background: var(--surface-light);
  border-radius: var(--radius-card);
  padding: 2rem;
}

.fpw-contact-info-panel__heading {
  font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink-dark-primary);
  margin-bottom: 1.5rem;
}

.fpw-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
}

.fpw-contact-info-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.fpw-contact-info-item i {
  color: var(--accent-teal-dim);
  font-size: 0.9375rem;
  margin-top: 0.2em;
  flex-shrink: 0;
}

.fpw-contact-info-item__text {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.6;
}

.fpw-contact-info-item__link {
  color: var(--accent-teal-dim);
}

.fpw-contact-info-item__link:hover {
  text-decoration: underline;
}

.fpw-customers-logos-section {
  padding: var(--section-py) 0;
  background: var(--surface-white);
}

.fpw-customers-logos-section__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-customers-logos-section__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  color: var(--ink-dark-primary);
  text-align: center;
  margin-bottom: 2.5rem;
}

.fpw-logo-cloud {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 4rem;
  flex-wrap: wrap;
}

.fpw-logo-cloud__item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.fpw-case-studies-section {
  padding: var(--section-py) 0;
  background: var(--surface-light);
}

.fpw-case-studies-section__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-case-studies-section__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  color: var(--ink-dark-primary);
  margin-bottom: 2.5rem;
}

.fpw-case-study-card {
  background: var(--surface-white);
  border: 1px solid rgba(26,32,53,0.08);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}

.fpw-case-study-card__company {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-teal-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: block;
}

.fpw-case-study-card__headline {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink-dark-primary);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.fpw-case-study-card__outcome {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.7;
}

.fpw-customers-quotes-section {
  padding: var(--section-py) 0;
  background: var(--depth-900);
}

.fpw-customers-quotes-section__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-customers-quotes-section__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ink-primary);
  margin-bottom: 2.5rem;
  text-align: center;
}

.fpw-quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.fpw-quote-card {
  background: var(--depth-800);
  border: 1px solid var(--depth-600);
  border-radius: var(--radius-card);
  padding: 1.75rem;
}

.fpw-quote-card__text {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.fpw-quote-card__author-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-primary);
  display: block;
}

.fpw-quote-card__author-role {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--ink-muted);
  display: block;
  margin-top: 0.2rem;
}

.fpw-changelog-section {
  padding: var(--section-py) 0;
  background: var(--surface-light);
}

.fpw-changelog-section__inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fpw-changelog-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.fpw-changelog-entry {
  background: var(--surface-white);
  border: 1px solid rgba(26,32,53,0.08);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.fpw-changelog-entry__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: var(--surface-light);
  border-bottom: 1px solid rgba(26,32,53,0.08);
  gap: 1rem;
}

.fpw-changelog-entry__version {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 1rem;
  color: var(--accent-teal-dim);
}

.fpw-changelog-entry__date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

.fpw-changelog-entry__body {
  padding: 1.5rem 1.75rem;
}

.fpw-changelog-entry__highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.fpw-changelog-entry__highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.55;
}

.fpw-changelog-entry__highlight::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-teal-dim);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55em;
}

.fpw-auth-page {
  min-height: 100vh;
  background: var(--depth-900);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.fpw-auth-card {
  background: var(--depth-800);
  border: 1px solid var(--depth-600);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
}

.fpw-auth-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.fpw-auth-card__logo img {
  height: 28px;
  width: auto;
}

.fpw-auth-card__heading {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink-primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.fpw-auth-card__subhead {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 2rem;
}

.fpw-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fpw-auth-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.fpw-auth-label {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-secondary);
}

.fpw-auth-input {
  width: 100%;
  padding: 0.6875rem 0.875rem;
  background: var(--depth-700);
  border: 1px solid var(--depth-600);
  border-radius: var(--radius-card);
  font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-primary);
  transition: border-color 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}

.fpw-auth-input:focus {
  outline: none;
  border-color: var(--accent-teal-dim);
}

.fpw-auth-input::placeholder {
  color: var(--ink-muted);
}

.fpw-auth-form-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
}

.fpw-auth-form-meta__link {
  color: var(--accent-teal-dim);
  font-weight: 300;
}

.fpw-auth-form-meta__link:hover {
  text-decoration: underline;
}

.fpw-auth-submit {
  width: 100%;
  padding: 0.75rem;
  background: var(--accent-teal);
  color: var(--depth-900);
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease;
  margin-top: 0.5rem;
}

.fpw-auth-submit:hover {
  background: #00bdb2;
}

.fpw-auth-card__divider {
  border: none;
  border-top: 1px solid var(--depth-600);
  margin: 1.5rem 0;
}

.fpw-auth-card__links {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ink-muted);
}

.fpw-auth-card__links a {
  color: var(--accent-teal-dim);
}

.fpw-auth-card__links a:hover {
  text-decoration: underline;
}

.fpw-auth-card__legal {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.6;
}

.fpw-auth-card__legal a {
  color: var(--ink-muted);
}

.fpw-auth-card__legal a:hover {
  color: var(--ink-secondary);
  text-decoration: underline;
}

.fpw-legal-page {
  padding-top: 80px;
}

.fpw-legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem clamp(1rem, 4vw, 2rem);
}

.fpw-legal-content h1 {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--ink-dark-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.fpw-legal-content h2 {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--ink-dark-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.fpw-legal-content h3 {
  font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink-dark-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.fpw-legal-content p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.fpw-legal-content ul {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.fpw-legal-content ul li {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-dark-secondary);
  line-height: 1.7;
  margin-bottom: 0.375rem;
}

.fpw-legal-content a {
  color: var(--accent-teal-dim);
  text-decoration: underline;
}

.fpw-legal-content a:hover {
  opacity: 0.8;
}

.fpw-legal-content .fpw-legal-last-updated {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-bottom: 2.5rem;
}

.fpw-waveform-svg {
  width: 100%;
  height: auto;
  display: block;
}

.fpw-hero-waveform-svg {
  width: 100%;
  height: auto;
  display: block;
}

.fpw-waveform__hazard {
  transition: opacity 0.4s ease;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--depth-800);
  border-top: 1px solid var(--depth-600);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 1.25rem clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-secondary);
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--accent-teal-dim);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.18s ease, color 0.18s ease;
  color: var(--depth-900);
}

.cookie-banner__btn--accept {
  background: var(--accent-teal);
  color: var(--depth-900);
}

.cookie-banner__btn--accept:hover {
  background: #00bdb2;
}

.cookie-banner__btn--decline {
  background: var(--depth-600);
  color: var(--ink-secondary);
}

.cookie-banner__btn--decline:hover {
  background: var(--depth-400);
  color: var(--ink-primary);
}

@media (max-width: 1024px) {
  .fpw-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .fpw-problem__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .fpw-docs-layout {
    grid-template-columns: 200px 1fr;
  }

  .fpw-docs-main {
    padding: 2rem 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: var(--section-py-sm);
  }

  .fpw-nav__links {
    display: none;
  }

  .fpw-nav__actions {
    display: none;
  }

  .fpw-nav__hamburger {
    display: flex;
  }

  .fpw-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .fpw-hero__media {
    order: -1;
  }

  .fpw-problem__stats {
    grid-template-columns: 1fr;
  }

  .fpw-hiw__steps {
    grid-template-columns: 1fr;
  }

  .fpw-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fpw-deep-dive-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fpw-deep-dive-panel--reverse {
    direction: ltr;
  }

  .fpw-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .fpw-footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fpw-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .fpw-footer__legal-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .fpw-page-hero__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .fpw-pricing-tiers {
    grid-template-columns: 1fr;
  }

  .fpw-pricing-card--featured {
    order: -1;
  }

  .fpw-docs-layout {
    grid-template-columns: 1fr;
  }

  .fpw-docs-sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(26,32,53,0.1);
  }

  .fpw-docs-main {
    padding: 2rem 1rem;
  }

  .fpw-team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .fpw-contact-form-section__inner {
    grid-template-columns: 1fr;
  }

  .fpw-contact-section__inner {
    grid-template-columns: 1fr;
  }

  .fpw-uc-section__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fpw-rules-grid {
    grid-template-columns: 1fr;
  }

  .fpw-integrations-grid {
    grid-template-columns: 1fr;
  }

  .fpw-step-detail {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .fpw-step-detail__num {
    width: auto;
    text-align: left;
    font-size: 2rem;
  }

  .fpw-quotes-grid {
    grid-template-columns: 1fr;
  }

  .fpw-blog-grid {
    grid-template-columns: 1fr;
  }

  .fpw-blog-hero__inner {
    grid-template-columns: 1fr;
  }

  .fpw-blog-hero__stat {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .fpw-features__grid {
    grid-template-columns: 1fr;
  }

  .fpw-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .fpw-cta-bottom__actions {
    flex-direction: column;
    width: 100%;
  }

  .fpw-cta-bottom__actions .fpw-btn {
    width: 100%;
    justify-content: center;
  }
}

.fpw-contact-form-el {
  width: 100%;
}
