/**
 * free-tool-modern.css — shared design tokens + chrome for the modern free-tool pages
 * (uurtariefcalculator.html, btw-aangifte-checklist.html).
 *
 * Page is a static landing page with vanilla JS interactivity. Everything is
 * namespaced under .ft-body so it can't leak into other landing pages. Per-tool
 * unique components (rate-card, check-paper, etc.) live in their own CSS files.
 *
 * Design tokens mirror the designer's mock (api.anthropic.com/v1/design/h/…),
 * but the page font defaults to Inter (the site's shared self-hosted family) —
 * the designer's Geist isn't used to keep network requests down and the look
 * consistent with the rest of the landing.
 */

.ft-body {
  --ft-blue-900: #042c5c;
  --ft-blue-800: #06346e;
  --ft-blue-700: #0a488b;
  --ft-blue-600: #015ea8;
  --ft-blue-500: #0d7fc6;
  --ft-blue-400: #0da8ec;
  --ft-blue-100: #e3f1fb;
  --ft-blue-50: #f4faff;
  --ft-green-600: #2c6f22;
  --ft-green-500: #4f9a18;
  --ft-green-400: #72b518;
  --ft-green-50: #f1faea;
  --ft-amber-500: #c47a00;
  --ft-amber-50: #fff5e0;
  --ft-red-500: #d23a2a;
  --ft-red-50: #fdecea;
  --ft-ink-900: #0b1620;
  --ft-ink-700: #2a3947;
  --ft-ink-500: #5a6878;
  --ft-ink-400: #8a96a4;
  --ft-ink-300: #c8d0d9;
  --ft-ink-200: #e3e8ee;
  --ft-ink-100: #eef1f5;
  --ft-ink-50: #f6f8fa;
  --ft-bg: #fbfcfd;
  --ft-card: #ffffff;
  --ft-radius: 14px;
  --ft-radius-lg: 22px;
  --ft-shadow-sm: 0 1px 2px rgba(8, 22, 40, 0.04), 0 1px 1px rgba(8, 22, 40, 0.03);
  --ft-shadow: 0 6px 20px -8px rgba(8, 22, 40, 0.12), 0 2px 6px -2px rgba(8, 22, 40, 0.06);
  --ft-shadow-lg: 0 30px 60px -25px rgba(8, 30, 70, 0.25), 0 10px 25px -10px rgba(8, 30, 70, 0.12);
  --ft-mono: ui-monospace, SFMono-Regular, "JetBrains Mono", Menlo, monospace;
  --ft-serif: "Instrument Serif", Georgia, "Times New Roman", serif;

  margin: 0;
  padding: 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--ft-ink-900);
  background: var(--ft-bg);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  color-scheme: light;
}

.ft-body * {
  box-sizing: border-box;
}
.ft-body a {
  color: inherit;
  text-decoration: none;
}
.ft-body button {
  font-family: inherit;
  cursor: pointer;
}

.ft-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* ───── Nav ───── */
.ft-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 253, 0.78);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(8, 22, 40, 0.06);
}
.ft-nav-inner {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  height: 4.25rem;
}
.ft-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}
.ft-logo-mark {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ft-blue-600), var(--ft-blue-400));
  display: grid;
  place-items: center;
  color: white;
  box-shadow:
    inset 0 -2px 0 rgba(0, 0, 0, 0.12),
    0 4px 10px -4px rgba(1, 94, 168, 0.5);
}
.ft-logo-mark svg {
  width: 1.125rem;
  height: 1.125rem;
}
.ft-nav-links {
  display: flex;
  gap: 1.75rem;
  font-size: 0.90625rem;
  color: var(--ft-ink-700);
  font-weight: 500;
}
.ft-nav-links a:hover {
  color: var(--ft-blue-600);
}
.ft-nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

/* ───── Buttons ───── */
.ft-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6875rem 1.125rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.90625rem;
  border: 1px solid transparent;
  transition:
    transform 0.08s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.ft-btn:active {
  transform: translateY(1px);
}
.ft-btn-ghost {
  color: var(--ft-ink-700);
  background: transparent;
}
.ft-btn-ghost:hover {
  background: var(--ft-ink-100);
}
.ft-btn-primary {
  background: var(--ft-blue-600);
  color: white;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 8px 20px -8px rgba(1, 94, 168, 0.55);
}
.ft-btn-primary:hover {
  background: var(--ft-blue-700);
}
.ft-btn-outline {
  background: white;
  border-color: var(--ft-ink-200);
  color: var(--ft-ink-900);
}
.ft-btn-outline:hover {
  border-color: var(--ft-ink-300);
  background: var(--ft-ink-50);
}
.ft-btn-lg {
  padding: 0.875rem 1.375rem;
  font-size: 0.96875rem;
  border-radius: 12px;
}

/* ───── Hero ───── */
.ft-hero {
  padding: 2rem 0 1.125rem;
  position: relative;
  overflow: hidden;
}
.ft-hero::before {
  content: "";
  position: absolute;
  inset: -40% 20% auto auto;
  width: 900px;
  height: 900px;
  background: radial-gradient(closest-side, rgba(13, 168, 236, 0.18), transparent 70%);
  pointer-events: none;
}
.ft-hero::after {
  content: "";
  position: absolute;
  left: -200px;
  top: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(closest-side, rgba(114, 181, 24, 0.1), transparent 70%);
  pointer-events: none;
}
.ft-hero-intro {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.ft-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 7px 12px 7px 7px;
  border-radius: 100px;
  background: white;
  border: 1px solid var(--ft-ink-200);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ft-ink-700);
  box-shadow: var(--ft-shadow-sm);
}
.ft-eyebrow .dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ft-green-50);
  color: var(--ft-green-500);
  display: grid;
  place-items: center;
  font-weight: 700;
}
.ft-eyebrow .dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ft-green-400);
  box-shadow: 0 0 0 4px rgba(114, 181, 24, 0.2);
}
.ft-hero-title {
  font-size: clamp(1.875rem, 3.6vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0.875rem 0 0.625rem;
}
.ft-hero-title em {
  font-family: var(--ft-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--ft-blue-600), var(--ft-blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.05em;
}
.ft-hero-sub {
  font-size: 1.03125rem;
  color: var(--ft-ink-500);
  margin: 0 auto;
  max-width: 36.25rem;
}

/* ───── Sections ───── */
.ft-body section {
  padding: 5.625rem 0;
}
.ft-section-head {
  max-width: 45rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.ft-section-tag {
  display: inline-block;
  font-size: 0.78125rem;
  font-weight: 600;
  color: var(--ft-blue-600);
  background: var(--ft-blue-50);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 0.875rem;
  letter-spacing: 0.02em;
}
.ft-section-head h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 0.875rem;
}
.ft-section-head p {
  font-size: 1.0625rem;
  color: var(--ft-ink-500);
  margin: 0;
}

/* ───── Builder shell (the live tool surface) ───── */
.ft-builder {
  padding: 1.5rem 0 4.5rem;
  position: relative;
}
.ft-builder-shell {
  position: relative;
  background: white;
  border-radius: 24px;
  border: 1px solid var(--ft-ink-200);
  box-shadow: var(--ft-shadow-lg);
  overflow: hidden;
}
.ft-builder-topbar {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.375rem;
  background: #fafbfc;
  border-bottom: 1px solid var(--ft-ink-100);
}
.ft-builder-topbar .dots {
  display: flex;
  gap: 5px;
}
.ft-builder-topbar .dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d6dd;
}
.ft-builder-topbar .dots span:nth-child(1) {
  background: #ff6159;
}
.ft-builder-topbar .dots span:nth-child(2) {
  background: #ffbd2e;
}
.ft-builder-topbar .dots span:nth-child(3) {
  background: #29c93f;
}
.ft-builder-topbar .crumb {
  flex: 1;
  text-align: center;
  font-size: 0.78125rem;
  color: var(--ft-ink-500);
  font-family: var(--ft-mono);
}
.ft-builder-topbar .crumb b {
  color: var(--ft-ink-900);
  font-weight: 600;
}
.ft-builder-topbar .live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--ft-green-500);
  font-weight: 600;
}
.ft-builder-topbar .live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ft-green-400);
  box-shadow: 0 0 0 0 rgba(114, 181, 24, 0.7);
  animation: ft-pulse 1.8s infinite;
}
@keyframes ft-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(114, 181, 24, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(114, 181, 24, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(114, 181, 24, 0);
  }
}
.ft-builder-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  align-items: stretch;
}
.ft-builder-form {
  background: #fafbfc;
  padding: 1.625rem;
  border-right: 1px solid var(--ft-ink-100);
}

/* ───── Form bits ───── */
.ft-form-step {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.375rem;
  font-size: 0.8125rem;
  color: var(--ft-ink-500);
  font-weight: 500;
}
.ft-form-step .pill {
  background: var(--ft-blue-100);
  color: var(--ft-blue-700);
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 0.71875rem;
  font-weight: 600;
}
.ft-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.ft-field .field-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
.ft-field .field-row label {
  font-size: 0.84375rem;
  color: var(--ft-ink-700);
  font-weight: 500;
}
.ft-field .field-row .value {
  font-family: var(--ft-mono);
  font-size: 0.84375rem;
  color: var(--ft-ink-900);
  font-weight: 600;
  background: white;
  border: 1px solid var(--ft-ink-200);
  padding: 4px 10px;
  border-radius: 8px;
  font-variant-numeric: tabular-nums;
  min-width: 6rem;
  text-align: right;
}
.ft-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--ft-ink-200);
  border-radius: 999px;
  outline: none;
}
.ft-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--ft-blue-600);
  box-shadow: 0 2px 6px -1px rgba(1, 94, 168, 0.4);
  cursor: pointer;
}
.ft-field input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--ft-blue-600);
  box-shadow: 0 2px 6px -1px rgba(1, 94, 168, 0.4);
  cursor: pointer;
}
.ft-field .helper {
  font-size: 0.75rem;
  color: var(--ft-ink-400);
}

.ft-seg {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  background: var(--ft-ink-100);
  padding: 3px;
  border-radius: 10px;
}
.ft-seg button {
  background: transparent;
  border: 0;
  padding: 8px 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ft-ink-700);
  border-radius: 8px;
  transition: background 0.12s;
}
.ft-seg button.active {
  background: white;
  color: var(--ft-ink-900);
  box-shadow: var(--ft-shadow-sm);
  font-weight: 600;
}

.ft-builder-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.625rem;
  padding-top: 1.375rem;
  border-top: 1px solid var(--ft-ink-100);
}
.ft-builder-actions .ft-btn {
  width: 100%;
}
.ft-builder-actions .hint {
  font-size: 0.71875rem;
  color: var(--ft-ink-400);
  text-align: center;
  margin-top: 4px;
}

/* ───── Features grid ───── */
.ft-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
}
.ft-feature {
  background: white;
  border-radius: var(--ft-radius-lg);
  border: 1px solid var(--ft-ink-100);
  padding: 1.75rem;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}
.ft-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--ft-shadow);
  border-color: var(--ft-ink-200);
}
.ft-feature .icon {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 11px;
  background: var(--ft-blue-50);
  color: var(--ft-blue-600);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.ft-feature.green .icon {
  background: var(--ft-green-50);
  color: var(--ft-green-500);
}
.ft-feature h3 {
  font-size: 1.0625rem;
  margin: 0 0 0.375rem;
  letter-spacing: -0.01em;
}
.ft-feature p {
  color: var(--ft-ink-500);
  font-size: 0.90625rem;
  margin: 0;
}

/* ───── How / steps ───── */
.ft-how {
  background: linear-gradient(180deg, white, var(--ft-blue-50));
  border-top: 1px solid var(--ft-ink-100);
}
.ft-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
  position: relative;
}
.ft-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ft-ink-300), transparent);
  z-index: 0;
}
.ft-step {
  background: white;
  border-radius: var(--ft-radius-lg);
  border: 1px solid var(--ft-ink-100);
  padding: 1.75rem;
  position: relative;
  z-index: 1;
}
.ft-step .step-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--ft-ink-900);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 1.125rem;
  box-shadow:
    0 0 0 6px white,
    0 0 0 7px var(--ft-ink-100);
}
.ft-step h3 {
  font-size: 1.125rem;
  margin: 0 0 0.375rem;
  letter-spacing: -0.01em;
}
.ft-step p {
  color: var(--ft-ink-500);
  font-size: 0.90625rem;
  margin: 0;
}
.ft-step .mini {
  margin-top: 1.125rem;
  background: #fafbfc;
  border: 1px solid var(--ft-ink-100);
  border-radius: 10px;
  padding: 0.75rem;
  font-size: 0.78125rem;
  color: var(--ft-ink-700);
  font-family: var(--ft-mono);
  line-height: 1.6;
}
.ft-step .mini b {
  color: var(--ft-blue-600);
}

/* ───── Comparison cards ───── */
.ft-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.375rem;
}
.ft-compare > div {
  background: white;
  border-radius: var(--ft-radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--ft-ink-100);
}
.ft-compare .bad {
  background: #fafbfc;
}
.ft-compare .good {
  border: 2px solid var(--ft-blue-600);
  position: relative;
}
.ft-compare .good::before {
  content: "Aanbevolen";
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--ft-blue-600);
  color: white;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.71875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ft-compare h3 {
  font-size: 1.1875rem;
  margin: 0 0 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  letter-spacing: -0.01em;
}
.ft-compare .sub {
  color: var(--ft-ink-500);
  font-size: 0.84375rem;
  margin-bottom: 1.125rem;
}
.ft-compare ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.ft-compare li {
  display: flex;
  gap: 0.625rem;
  font-size: 0.90625rem;
  color: var(--ft-ink-700);
  align-items: flex-start;
}
.ft-compare li svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.ft-compare .bad li svg {
  color: var(--ft-ink-400);
}
.ft-compare .good li svg {
  color: var(--ft-green-500);
}

/* ───── FAQ ───── */
.ft-faq {
  max-width: 50rem;
  margin: 0 auto;
}
.ft-faq-item {
  border-bottom: 1px solid var(--ft-ink-100);
}
.ft-faq-item .faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1.375rem 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ft-ink-900);
  letter-spacing: -0.01em;
}
.ft-faq-item .faq-q .plus {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ft-ink-100);
  color: var(--ft-ink-700);
  display: grid;
  place-items: center;
  transition:
    transform 0.2s ease,
    background 0.2s;
  font-size: 1.125rem;
  line-height: 1;
}
.ft-faq-item.open .faq-q .plus {
  background: var(--ft-blue-600);
  color: white;
  transform: rotate(45deg);
}
.ft-faq-item .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--ft-ink-500);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.ft-faq-item .faq-a-inner {
  padding: 0 4px 1.375rem;
  max-width: 41.25rem;
}

/* ───── CTA banner ───── */
.ft-cta-banner {
  margin: 0 1.75rem 5rem;
  max-width: 71.5rem;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, var(--ft-blue-700), var(--ft-blue-500));
  color: white;
  padding: 3.5rem;
  border-radius: var(--ft-radius-lg);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(1, 94, 168, 0.5);
}
.ft-cta-banner::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(13, 168, 236, 0.5), transparent);
}
.ft-cta-banner::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(114, 181, 24, 0.35), transparent);
}
.ft-cta-banner > div {
  position: relative;
  z-index: 1;
}
.ft-cta-banner h2 {
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.625rem;
}
.ft-cta-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.375rem;
  max-width: 28.75rem;
}
.ft-cta-banner .ft-btn {
  background: white;
  color: var(--ft-blue-700);
}
.ft-cta-banner .ft-btn:hover {
  background: var(--ft-blue-50);
}
.ft-cta-banner .ft-btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.ft-cta-banner .ft-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}
.ft-cta-banner-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ft-cta-banner-side li {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  font-size: 0.90625rem;
}
.ft-cta-banner-side li svg {
  color: var(--ft-green-400);
  flex-shrink: 0;
}

/* ───── Footer ───── */
.ft-footer {
  padding: 3.125rem 0 2.5rem;
  border-top: 1px solid var(--ft-ink-100);
  background: white;
}
.ft-foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.ft-foot-grid h5 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ft-ink-900);
  margin: 0 0 0.875rem;
  letter-spacing: 0.01em;
}
.ft-foot-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
}
.ft-foot-grid a {
  font-size: 0.84375rem;
  color: var(--ft-ink-500);
}
.ft-foot-grid a:hover {
  color: var(--ft-blue-600);
}
.ft-foot-about {
  color: var(--ft-ink-500);
  font-size: 0.84375rem;
  max-width: 17.5rem;
  margin-top: 0.75rem;
  line-height: 1.55;
}
.ft-foot-bot {
  padding-top: 1.5rem;
  border-top: 1px solid var(--ft-ink-100);
  display: flex;
  justify-content: space-between;
  font-size: 0.78125rem;
  color: var(--ft-ink-400);
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ───── Responsive ───── */
@media (max-width: 980px) {
  .ft-features-grid,
  .ft-steps,
  .ft-compare {
    grid-template-columns: 1fr;
  }
  .ft-builder-grid {
    grid-template-columns: 1fr;
  }
  .ft-builder-form {
    border-right: 0;
    border-bottom: 1px solid var(--ft-ink-100);
  }
  .ft-nav-links {
    display: none;
  }
  .ft-cta-banner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.75rem;
  }
  .ft-foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ft-steps::before {
    display: none;
  }
}

/* ───── Newsletter capture widget ───── */
.ft-newsletter {
  background: white;
  border: 1px solid var(--ft-ink-200);
  border-radius: var(--ft-radius-lg);
  padding: 1.75rem 1.5rem;
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--ft-shadow-sm);
}
.ft-newsletter h3 {
  font-size: 1.1875rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.ft-newsletter p.ft-newsletter-lede {
  font-size: 0.9375rem;
  color: var(--ft-ink-500);
  margin: 0 0 1.125rem;
  line-height: 1.55;
}
.ft-newsletter form {
  display: flex;
  gap: 0.5rem;
  max-width: 26rem;
  margin: 0 auto;
  position: relative;
}
.ft-newsletter input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--ft-ink-200);
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--ft-ink-900);
  background: white;
}
.ft-newsletter input[type="email"]:focus {
  outline: 2px solid var(--ft-blue-400);
  outline-offset: 1px;
  border-color: var(--ft-blue-500);
}
/* Honeypot — visually hidden, only bots fill it. Named hp_field
   instead of `website` so password managers don't autofill it for
   real visitors. */
.ft-newsletter input[name="hp_field"] {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.ft-newsletter button {
  background: var(--ft-blue-600);
  color: white;
  border: 0;
  padding: 0.625rem 1.125rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.12s;
}
.ft-newsletter button:hover:not([disabled]) {
  background: var(--ft-blue-700);
}
.ft-newsletter button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.ft-newsletter [data-newsletter-msg] {
  margin: 0.875rem 0 0;
  font-size: 0.8125rem;
  min-height: 1.125rem;
}
.ft-newsletter [data-newsletter-msg][data-state="ok"] {
  color: var(--ft-green-600);
}
.ft-newsletter [data-newsletter-msg][data-state="error"] {
  color: var(--ft-red-500);
}
.ft-newsletter [data-newsletter-msg][data-state="loading"] {
  color: var(--ft-ink-500);
}
.ft-newsletter-fineprint {
  margin: 0.875rem 0 0;
  font-size: 0.71875rem;
  color: var(--ft-ink-400);
  line-height: 1.5;
}
.ft-newsletter-fineprint a {
  color: var(--ft-ink-500);
  text-decoration: underline;
}
@media (max-width: 640px) {
  .ft-newsletter form {
    flex-direction: column;
  }
  .ft-newsletter button {
    width: 100%;
  }
}

/* ───── Print — hide everything except the live tool output ───── */
@media print {
  /* Hide chrome + every section except the .ft-builder that holds the result */
  .ft-body > .ft-nav,
  .ft-body > .ft-hero,
  .ft-body > section:not(.ft-builder),
  .ft-body > .ft-cta-banner,
  .ft-body > .ft-footer,
  .ft-builder-topbar,
  .ft-builder-form {
    display: none !important;
  }
  .ft-builder {
    padding: 0 !important;
  }
  .ft-builder-grid {
    grid-template-columns: 1fr !important;
  }
  .ft-builder-shell {
    box-shadow: none !important;
    border: 1px solid var(--ft-ink-200) !important;
    border-radius: 0 !important;
  }
  .ft-body {
    background: white !important;
  }
}
