:root {
  --background-primary: #FFFFFF;
  --background-warm: #F8F7F4;
  --background-warm-subtle: #FBFAF8;
  --background-dark: #111111;
  --border-subtle: #E8E6E1;
  --ff-bg: var(--background-primary);
  --ff-bg-soft: var(--background-warm);
  --ff-bg-subtle: var(--background-warm-subtle);
  --ff-white: var(--background-primary);
  --ff-ink: #111111;
  --ff-ink-2: #2a2a2a;
  --ff-muted: #5c5c5c;
  --ff-line: var(--border-subtle);
  --ff-purple: #6d4cff;
  --ff-purple-soft: #efeaff;
  --ff-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
  --ff-shadow-sm: 0 4px 16px rgba(17, 17, 17, 0.06);
  --ff-radius: 16px;
  --ff-radius-sm: 10px;
  --ff-wrap: 1180px;
  --ff-ease: 220ms ease;
  --ff-font: Inter, "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .ff-hero-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--background-primary);
  color: var(--ff-ink);
  font-family: var(--ff-font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }

.ff-wrap {
  width: min(calc(100% - 40px), var(--ff-wrap));
  margin: 0 auto;
}

.ff-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 12px;
  border: 0;
  border-radius: 999px;
  background: var(--ff-bg-soft);
  color: var(--ff-ink-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ff-h1 {
  margin: 0;
  color: var(--ff-ink);
  font-size: clamp(36px, 5.4vw, 72px);
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.ff-h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.ff-h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.ff-lead {
  margin: 20px auto 0;
  max-width: 640px;
  color: var(--ff-muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.ff-copy {
  margin: 0;
  color: var(--ff-muted);
  font-size: 17px;
  line-height: 1.6;
}

.ff-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.ff-btn:hover { transform: translateY(-1px); }
.ff-btn:focus-visible,
.ff-nav-link:focus-visible,
.ff-drop-btn:focus-visible,
.ff-login:focus-visible {
  outline: 2px solid var(--ff-purple);
  outline-offset: 3px;
}
.ff-btn-primary { background: var(--ff-ink); color: #fff; }
.ff-btn-primary:hover { background: #000; }
.ff-header .ff-btn-primary:hover,
.ff-hero .ff-btn-primary:hover,
.ff-pricing-page .ff-btn-primary:hover {
  background: var(--ff-purple);
  color: #fff;
  transform: translateY(-1px);
}
.ff-btn-ghost {
  background: var(--ff-bg-soft);
  color: var(--ff-ink);
  border-color: transparent;
}
.ff-btn-ghost:hover { background: #efece6; }
.ff-hero .ff-btn-ghost:hover {
  background: #F6F2FF;
  transform: none;
}
.ff-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Header */
.ff-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 76px;
  background: var(--background-primary);
  border-bottom: 0;
}
.ff-header.is-scrolled { border-bottom-color: transparent; }
.ff-header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.ff-skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 60;
  padding: 8px 12px;
  background: #111;
  color: #fff;
  text-decoration: none;
}
.ff-skip:focus { top: 12px; }
.ff-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -0.03em;
}
.ff-logo img { height: 40px; width: auto; }
.ff-header .ff-logo {
  gap: 10px;
  width: max-content;
}
.ff-header .ff-logo-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}
.ff-header .ff-logo-word {
  color: #111;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}
.ff-nav { display: flex; justify-content: center; align-items: center; gap: 8px; }
.ff-nav-link, .ff-drop-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 10px 12px;
  color: var(--ff-ink-2);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
}
.ff-nav-link:hover, .ff-drop-btn:hover { background: var(--ff-bg-soft); }
.ff-nav-link[aria-current="page"] { font-weight: 650; color: var(--ff-ink); }
.ff-drop { position: relative; }
.ff-drop-panel {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  padding: 8px;
  background: var(--ff-white);
  border: 0;
  border-radius: var(--ff-radius-sm);
  box-shadow: var(--ff-shadow-sm);
}
.ff-drop.is-open .ff-drop-panel { display: grid; }
.ff-drop-panel a {
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
}
.ff-drop-panel a:hover { background: var(--ff-bg-soft); }
.ff-header-actions { display: flex; align-items: center; gap: 10px; }
.ff-login {
  padding: 10px 12px;
  color: var(--ff-ink-2);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.ff-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.ff-burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ff-ink);
}

.ff-mobile {
  display: none;
  position: fixed;
  inset: 76px 0 0;
  background: var(--ff-bg);
  padding: 20px;
  overflow: auto;
  z-index: 39;
}
body.ff-nav-open .ff-mobile { display: block; }
.ff-mobile a, .ff-mobile button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 4px;
  background: none;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}
.ff-mobile .ff-btn { width: 100%; margin-top: 16px; text-align: center; }

/* Hero */
.ff-hero {
  padding: 36px 0 0;
  text-align: center;
  overflow-x: clip;
  background: var(--background-primary);
}
.ff-hero .ff-eyebrow {
  margin: 0 0 10px;
  background: #F6F2FF;
  border: 0;
  color: #1a1a1a;
}
.ff-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ff-purple);
  flex: 0 0 6px;
}
.ff-hero .ff-h1 { font-size: clamp(34px, 4.4vw, 56px); }
.ff-hero .ff-lead { margin-top: 12px; }
.ff-hero .ff-ctas { justify-content: center; margin-top: 18px; }
.ff-hero-note { margin: 10px 0 0; color: var(--ff-muted); font-size: 15px; }
.ff-hero-visual {
  width: min(100%, 1280px);
  margin: 28px auto 0;
  padding: 0 20px;
  position: relative;
}
.ff-hero-glow {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 6%;
  height: 88%;
  background: radial-gradient(
    ellipse at center,
    rgba(111, 66, 255, 0.10) 0%,
    rgba(111, 66, 255, 0.04) 40%,
    rgba(111, 66, 255, 0) 72%
  );
  pointer-events: none;
  z-index: 0;
}
.ff-hero-stage { position: relative; z-index: 1; }
.ff-hero-frame {
  position: relative;
  margin: 0;
  height: min(540px, 58vh);
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.ff-hero-frame img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}
@media (hover: hover) and (pointer: fine) {
  .ff-hero-frame:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
  }
}
@keyframes ff-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ff-rise-product {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.ff-hero-in {
  opacity: 0;
  animation: ff-rise 0.46s ease both;
}
.ff-hero-in-1 { animation-delay: 0ms; }
.ff-hero-in-2 { animation-delay: 110ms; }
.ff-hero-in-3 {
  animation-name: ff-rise-product;
  animation-duration: 0.5s;
  animation-delay: 240ms;
}
.ff-device {
  position: relative;
  margin: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--background-primary);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
}
.ff-section:not(.ff-section-soft):not(.ff-section-subtle) .ff-device {
  background: var(--background-warm-subtle);
}
.ff-device img { width: 100%; }
.ff-shot {
  margin: 0;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.06);
}
.ff-shot img {
  width: 100%;
  height: auto;
  display: block;
}
.ff-shot-stack {
  display: grid;
  gap: 16px;
  align-content: start;
}
.ff-phone {
  display: none;
  position: absolute;
  right: 6%;
  bottom: -18px;
  width: min(22%, 210px);
  border: 6px solid #111;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  box-shadow: var(--ff-shadow);
}

/* Sections */
.ff-section { padding: 88px 0; background: var(--background-primary); }
.ff-section-soft { background: var(--background-warm); }
.ff-section-subtle { background: var(--background-warm-subtle); }
.ff-hero, .ff-statement { background: var(--background-primary); }
.ff-statement.ff-section-soft { background: var(--background-warm); }
.ff-center { text-align: center; }
.ff-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ff-split.is-reverse { direction: rtl; }
.ff-split.is-reverse > * { direction: ltr; }
.ff-list { margin: 20px 0 0; padding: 0; list-style: none; }
.ff-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--ff-ink-2);
}
.ff-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ff-purple);
}

.ff-statement { padding: 96px 0; text-align: center; }
.ff-statement .ff-h2 { max-width: 18ch; margin-left: auto; margin-right: auto; }
.ff-live-shot {
  margin: 40px 0 0;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.06);
}
.ff-live-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.ff-pain { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.ff-q {
  margin: 0;
  padding: 18px 0;
  border: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.ff-q:first-child { border: 0; }

.ff-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 40px;
  counter-reset: step;
}
.ff-step {
  padding: 18px 16px;
  background: var(--ff-bg-soft);
  border: 0;
  border-radius: var(--ff-radius-sm);
}
.ff-step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  margin-bottom: 10px;
  color: var(--ff-purple);
  font-weight: 800;
}
.ff-step p { margin: 0; font-size: 15px; color: var(--ff-ink-2); }

.ff-price-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
  margin-top: 40px;
}
.ff-price {
  padding: 28px;
  background: var(--ff-bg-soft);
  border: 0;
  border-radius: var(--ff-radius);
}
.ff-price.is-main { background: var(--ff-purple-soft); }
.ff-price .amt { margin: 8px 0 12px; font-size: 36px; font-weight: 800; letter-spacing: -0.03em; }
.ff-price .amt span { font-size: 16px; font-weight: 500; color: var(--ff-muted); }
.ff-note { margin-top: 14px; font-size: 13px; color: var(--ff-muted); }

.ff-final {
  background: var(--background-dark);
  color: #fff;
  padding: 96px 0;
  text-align: center;
}
.ff-final .ff-h2, .ff-final .ff-copy { color: #fff; }
.ff-final .ff-copy { color: #d4d4d4; max-width: 560px; margin: 16px auto 28px; }
.ff-final .ff-btn-primary { background: #fff; color: #111; }

.ff-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 0;
  border-radius: var(--ff-radius);
  background: var(--ff-purple-soft);
  color: #4b3b86;
  text-align: center;
  font-size: 14px;
}
.ff-placeholder strong { display: block; margin-bottom: 8px; font-size: 16px; }

.ff-footer {
  padding: 64px 0 28px;
  border-top: 0;
  background: var(--ff-bg-soft);
}
.ff-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 32px;
}
.ff-footer h3 { margin: 0 0 14px; font-size: 14px; }
.ff-footer a { display: block; margin: 0 0 10px; color: var(--ff-muted); text-decoration: none; font-size: 15px; }
.ff-footer a:hover { color: var(--ff-ink); }
.ff-footer-brand p { margin: 12px 0; color: var(--ff-muted); max-width: 28ch; }
.ff-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}
.ff-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  background: #fff;
  border-radius: 50%;
}
.ff-socials a:hover { background: var(--ff-purple-soft); }
.ff-socials img { width: 16px; height: 16px; display: block; }
.ff-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 0;
  color: var(--ff-muted);
  font-size: 14px;
}
.ff-footer-bottom .ff-socials { margin-top: 0; }

@media (max-width: 1024px) {
  .ff-split, .ff-pain, .ff-price-grid, .ff-footer-grid { grid-template-columns: 1fr; }
  .ff-split.is-reverse { direction: ltr; }
  .ff-flow { grid-template-columns: repeat(3, 1fr); }
  .ff-hero { padding-top: 28px; }
  .ff-hero .ff-h1 { font-size: clamp(32px, 4.6vw, 44px); }
  .ff-hero-frame { height: min(460px, 52vh); }
}
@media (max-width: 860px) {
  .ff-header { height: 56px; }
  .ff-nav { display: none; }
  .ff-header-inner {
    grid-template-columns: auto 1fr;
    gap: 8px;
  }
  .ff-header-actions {
    justify-self: end;
    gap: 2px;
  }
  .ff-login {
    display: inline-flex;
    padding: 6px 8px;
    font-size: 13px;
  }
  .ff-burger { display: inline-block; width: 40px; height: 40px; }
  .ff-header-actions .ff-btn {
    min-height: 32px;
    padding: 6px 12px;
    font-size: 13px;
  }
  .ff-mobile { inset: 56px 0 0; }
}
@media (max-width: 420px) {
  .ff-header .ff-logo-word { display: none; }
  .ff-login { padding: 6px 6px; font-size: 12px; }
  .ff-header-actions .ff-btn { padding: 6px 10px; font-size: 12px; }
}
@media (max-width: 768px) {
  .ff-hero { padding: 24px 0 0; }
  .ff-hero .ff-ctas {
    flex-direction: column;
    align-items: stretch;
    margin-top: 16px;
  }
  .ff-hero .ff-btn { width: 100%; min-height: 44px; padding: 10px 16px; }
  .ff-hero-visual { margin-top: 22px; padding: 0 16px; }
  .ff-hero-frame {
    height: auto;
    border-radius: 12px;
  }
  .ff-hero-frame img {
    height: auto;
    object-fit: contain;
  }
  .ff-section, .ff-statement, .ff-final { padding: 64px 0; }
  .ff-flow { grid-template-columns: 1fr; }
  .ff-q { font-size: 18px; }
  .ff-footer-bottom { flex-direction: column; }
  .ff-socials { justify-content: center; }
  .ff-socials a { width: 36px; height: 36px; }
}

/* Pricing page */
.ff-price-hero {
  padding: 56px 0 12px;
  text-align: center;
  background: var(--background-primary);
}
.ff-price-hero .ff-h1 { font-size: clamp(36px, 5vw, 64px); }
.ff-price-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.ff-price-chips li {
  padding: 7px 12px;
  border: 0;
  border-radius: 999px;
  background: var(--ff-bg-soft);
  color: var(--ff-ink-2);
  font-size: 13px;
  font-weight: 600;
}
.ff-plan {
  padding: 28px;
  border: 0;
  border-radius: var(--ff-radius);
  background: var(--ff-bg-soft);
}
.ff-plan.is-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 36px;
  background: var(--ff-purple-soft);
}
.ff-plan-label {
  margin: 0 0 4px;
  color: var(--ff-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ff-plan-kicker {
  margin: 0 0 8px;
  color: var(--ff-ink-2);
  font-size: 16px;
  font-weight: 600;
}
.ff-plan-price {
  margin: 0 0 14px;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.ff-plan-price span {
  margin-left: 6px;
  color: var(--ff-muted);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}
.ff-plan-includes-title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
}
.ff-plan-addons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.ff-plan-addons .ff-plan-price { font-size: 36px; }
.ff-checks {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.ff-checks li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: var(--ff-ink-2);
  font-size: 16px;
}
.ff-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ff-purple);
}
.ff-price-math {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.ff-price-math article {
  padding: 24px;
  background: var(--ff-bg-soft);
  border: 0;
  border-radius: var(--ff-radius-sm);
}
.ff-price-math-label {
  margin: 0 0 8px;
  color: var(--ff-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ff-price-math-value {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.ff-price-math-value span {
  margin-left: 4px;
  color: var(--ff-muted);
  font-size: 15px;
  font-weight: 500;
}
.ff-include-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.ff-price-faq { max-width: 760px; }
.ff-price-faq details {
  border-bottom: 0;
  padding: 18px 0;
}
.ff-price-faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 650;
  list-style: none;
}
.ff-price-faq summary::-webkit-details-marker { display: none; }
.ff-price-faq details p {
  margin: 10px 0 0;
  color: var(--ff-muted);
}
@media (max-width: 1024px) {
  .ff-plan.is-main,
  .ff-plan-addons,
  .ff-price-math,
  .ff-include-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ff-price-hero { padding-top: 32px; }
  .ff-plan, .ff-plan.is-main { padding: 22px; }
  .ff-plan-price { font-size: 40px; }
}

.ff-legal-page {
  padding: 48px 0 80px;
  background: var(--ff-bg);
}
.ff-legal {
  max-width: 780px;
}
.ff-legal h1 {
  margin: 0 0 8px;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ff-ink);
}
.ff-legal .updated {
  margin: 0 0 28px;
  color: var(--ff-muted);
  font-size: 14px;
}
.ff-legal h2 {
  margin: 34px 0 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ff-ink);
}
.ff-legal p,
.ff-legal li {
  color: var(--ff-ink-2);
}
.ff-legal ul {
  padding-left: 22px;
}
.ff-legal li {
  margin-bottom: 8px;
}
.ff-legal a {
  color: var(--ff-purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ff-legal .contact {
  margin-top: 32px;
  padding: 22px 24px;
  background: var(--ff-purple-soft);
  border-radius: var(--ff-radius-sm);
}
.ff-legal .contact h2 {
  margin-top: 0;
}

.ff-inner-hero {
  padding: 48px 0 40px;
}
.ff-inner-hero .ff-h1 {
  font-size: clamp(34px, 4.4vw, 56px);
  max-width: 16ch;
}
.ff-inner-hero .ff-lead {
  margin-left: 0;
  max-width: 680px;
}
.ff-inner-hero .ff-ctas { margin-top: 24px; }
.ff-narrow { max-width: 780px; }
.ff-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.ff-card {
  padding: 22px 24px;
  background: var(--ff-bg-soft);
  border: 0;
  border-radius: var(--ff-radius-sm);
}
.ff-card h3 { margin-bottom: 8px; }
.ff-inner-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.ff-inner-steps li {
  padding: 20px;
  background: var(--ff-bg-soft);
  border: 0;
  border-radius: var(--ff-radius-sm);
}
.ff-inner-steps strong {
  display: block;
  margin-bottom: 8px;
}
.ff-compare-wrap { overflow-x: auto; margin-top: 24px; }
.ff-compare {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 15px;
}
.ff-compare th,
.ff-compare td {
  padding: 14px 16px;
  border-bottom: 0;
  text-align: left;
  vertical-align: top;
}
.ff-compare thead th {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ff-muted);
}
.ff-compare th[scope="row"] {
  width: 22%;
  font-weight: 650;
  color: var(--ff-ink);
}
.ff-cta-band {
  padding: 72px 0;
  background: var(--background-dark);
  color: #fff;
}
.ff-cta-band .ff-h2,
.ff-cta-band .ff-copy { color: #fff; }
.ff-cta-band .ff-copy { margin-top: 12px; }
.ff-cta-band .ff-ctas { margin-top: 24px; }
.ff-cta-band .ff-btn-ghost,
.ff-final .ff-btn-ghost {
  background: rgba(255,255,255,0.12);
  border-color: transparent;
  color: #fff;
}
.ff-cta-band .ff-btn-ghost:hover,
.ff-final .ff-btn-ghost:hover {
  background: rgba(255,255,255,0.2);
}
@media (max-width: 900px) {
  .ff-cards,
  .ff-inner-steps { grid-template-columns: 1fr; }
}

.ff-article {
  padding: 48px 0 80px;
}
.ff-article-inner {
  max-width: 760px;
}
.ff-article h1 {
  margin: 12px 0 28px;
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ff-ink);
}
.ff-article h2 {
  margin: 40px 0 14px;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ff-ink);
}
.ff-article p {
  margin: 0 0 18px;
  color: var(--ff-ink-2);
  font-size: 18px;
  line-height: 1.7;
}
.ff-article-nav {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}
.ff-article-nav a {
  color: var(--ff-muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.ff-article-nav a:hover { color: var(--ff-ink); }

.ff-article h1 + .ff-article-meta { margin-top: -14px; }
.ff-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 0 0 30px;
  font-size: 14px;
  color: var(--ff-muted);
}
.ff-article-meta .ff-dot { opacity: 0.5; }
.ff-article-hero {
  margin: 0 0 36px;
  border-radius: var(--ff-radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ff-bg-soft);
  border: 1px solid var(--ff-line);
}
.ff-article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.ff-article ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--ff-ink-2);
  font-size: 18px;
  line-height: 1.7;
}
.ff-article li { margin-bottom: 8px; }
.ff-article a:not(.ff-btn) {
  color: var(--ff-purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ff-article-table {
  width: 100%;
  margin: 0 0 10px;
  border-collapse: collapse;
  font-size: 16px;
}
.ff-article-table th,
.ff-article-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--ff-line);
}
.ff-article-table th {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ff-muted);
}
.ff-article-table td:not(:first-child) { text-align: right; }
.ff-article-table tbody tr:last-child td {
  border-bottom: none;
  font-weight: 700;
}
.ff-article-note {
  margin: 0 0 26px;
  font-size: 14px;
  color: var(--ff-muted);
}

.ff-demo {
  padding: 48px 0 80px;
}
.ff-demo-inner {
  max-width: 560px;
}
.ff-demo .ff-h1 {
  font-size: clamp(32px, 4vw, 48px);
  max-width: 14ch;
}
.ff-demo .ff-lead {
  margin-left: 0;
  margin-bottom: 32px;
}
.ff-form {
  display: grid;
  gap: 18px;
}
.ff-field {
  display: grid;
  gap: 8px;
}
.ff-field label {
  font-size: 14px;
  font-weight: 650;
  color: var(--ff-ink);
}
.ff-field input,
.ff-field select {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 0;
  border-radius: 12px;
  background: var(--ff-bg-soft);
  color: var(--ff-ink);
  outline: none;
}
.ff-field input:focus,
.ff-field select:focus {
  background: #efeaff;
}
.ff-field input:user-invalid,
.ff-field select:user-invalid {
  background: #fff1f1;
}
.ff-form .ff-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}
.ff-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23111111' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.ff-form .ff-btn {
  margin-top: 8px;
  width: 100%;
}

.ff-crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--ff-muted);
}
.ff-crumbs a { text-decoration: none; color: var(--ff-muted); }
.ff-crumbs a:hover { color: var(--ff-purple); }
.ff-crumbs span[aria-current] { color: var(--ff-ink); font-weight: 600; }

.ff-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--ff-purple-soft);
  color: var(--ff-purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.ff-blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 0;
  margin-top: 36px;
  background: var(--ff-white);
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--ff-shadow-sm);
  transition: box-shadow var(--ff-ease), transform var(--ff-ease);
}
.ff-blog-featured:hover {
  box-shadow: var(--ff-shadow);
  transform: translateY(-2px);
}
/* Fills the grid column and crops to the row height; an aspect-ratio here would
   size the width off the height and spill over the text column. */
.ff-blog-featured .ff-blog-media {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: var(--ff-bg-soft);
}
.ff-blog-featured-body {
  padding: 34px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
}
.ff-blog-featured-body .ff-blog-meta { align-self: stretch; }
/* Captions sit on the left of the art, so crop from the right. */
.ff-blog-featured .ff-blog-media img { object-position: left center; }
.ff-blog-featured-body h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.ff-blog-featured-body p {
  margin: 0;
  color: var(--ff-muted);
}

.ff-blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 44px 0 26px;
}
.ff-chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--ff-line);
  background: var(--ff-white);
  color: var(--ff-ink-2);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--ff-ease), color var(--ff-ease), border-color var(--ff-ease);
}
.ff-chip:hover { border-color: var(--ff-purple); color: var(--ff-purple); }
.ff-chip[aria-pressed="true"] {
  background: var(--ff-ink);
  border-color: var(--ff-ink);
  color: var(--ff-white);
}

.ff-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}
.ff-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--ff-white);
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--ff-ease), transform var(--ff-ease);
}
.ff-blog-card:hover {
  box-shadow: var(--ff-shadow);
  transform: translateY(-3px);
}
.ff-blog-card[hidden] { display: none; }

/* Blog art is authored at 16:9 so captions baked into the image never crop. */
.ff-blog-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ff-bg-soft);
  overflow: hidden;
}
.ff-blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ff-blog-media .ff-tag {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: var(--ff-white);
  color: var(--ff-ink);
  box-shadow: var(--ff-shadow-sm);
}

.ff-blog-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.ff-blog-body h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.ff-blog-body p {
  margin: 0;
  font-size: 15px;
  color: var(--ff-muted);
}
.ff-blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  color: var(--ff-muted);
}

.ff-blog-empty {
  padding: 40px 0;
  color: var(--ff-muted);
}

@media (max-width: 860px) {
  .ff-blog-featured { grid-template-columns: 1fr; }
  .ff-blog-featured .ff-blog-media { aspect-ratio: 16 / 10; }
  .ff-blog-featured-body { padding: 26px 24px 28px; }
  .ff-blog-featured-body h2 { font-size: 24px; }
  .ff-blog-grid { grid-template-columns: 1fr; }
}

.ff-404 {
  padding: 80px 0 100px;
  text-align: center;
}
.ff-404 .ff-h1 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.ff-404 .ff-lead {
  margin-left: auto;
  margin-right: auto;
}
.ff-404 .ff-ctas {
  justify-content: center;
}
