/* =========================================================
   Learning Rewired Lab — Featured Builders (public landing)
   File: /assets/css/featured-builders.css
   Pairs with: /featured-builders/index.html + /assets/js/featured-builders.js
   Uses the shared header/footer from global.css.
   Brand system mirrors /assets/css/the-lab.css (light teal).
   ========================================================= */

.fbp {
  --ink: #07111f;
  --ink-2: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;
  --faint: #94a3b8;
  --line: #e6ebf1;
  --surface: #f8fafc;
  --teal: #14b8a6;
  --teal-deep: #0f766e;
  --mint: #5eead4;
  --cyan: #16b8d9;
  --gold: #e0a93f;

  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink-2);
  -webkit-font-smoothing: antialiased;
}

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

.fbp ::selection { background: rgba(20, 184, 166, .2); }

.fbp-shell { max-width: 1180px; margin: 0 auto; }

/* Shared atoms ------------------------------------------------ */
.fbp-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--teal-deep); margin: 0;
}
.fbp-kicker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex: none; }

.fbp-h2 {
  font-weight: 900; font-size: 44px; line-height: 1.05;
  letter-spacing: -.035em; color: var(--ink); margin: 16px 0 0;
  text-wrap: balance;
}
.fbp-lede {
  font-size: 17.5px; line-height: 1.62; color: var(--muted);
  margin: 16px 0 0; max-width: 600px;
}
.fbp-lede em { font-style: normal; color: var(--ink-2); font-weight: 700; }

.fbp-sec { padding: 88px 26px; }
.fbp-sec--surface { background: var(--surface); border-top: 1px solid #eef2f6; }
.fbp-sec--white { background: #fff; }
.fbp-center { text-align: center; }
.fbp-center .fbp-kicker { justify-content: center; }
.fbp-center .fbp-h2 { margin-left: auto; margin-right: auto; }

/* Buttons ----------------------------------------------------- */
.fbp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 800; font-size: 15.5px;
  border-radius: 13px; padding: 15px 26px; text-decoration: none;
  cursor: pointer; border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.fbp-btn--primary { color: #fff; background: var(--teal); box-shadow: 0 12px 26px rgba(20,184,166,.28); }
.fbp-btn--primary:hover { background: #0f9e8e; transform: translateY(-1px); }
.fbp-btn--ghost { color: var(--ink-2); background: #fff; border-color: #d8e0ea; box-shadow: 0 6px 16px rgba(15,23,42,.05); }
.fbp-btn--ghost:hover { border-color: var(--teal); color: var(--teal-deep); }
.fbp-btn--mint { color: #06231f; background: var(--mint); box-shadow: 0 14px 30px rgba(94,234,212,.3); }
.fbp-btn--mint:hover { background: #4fd9c3; transform: translateY(-1px); }
.fbp-btn--ghost-dark { color: #fff; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.24); }
.fbp-btn--ghost-dark:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); }
.fbp-btn--lg { padding: 17px 30px; font-size: 16.5px; }

/* =========================================================
   HERO
   ========================================================= */
.fbp-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f0faf8 100%);
}
.fbp-hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(56% 60% at 86% 4%, rgba(20,184,166,.16), transparent 60%),
    radial-gradient(48% 60% at -4% 100%, rgba(22,184,217,.09), transparent 55%);
}
.fbp-hero__grid {
  position: relative; padding: 50px 26px 80px;
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center;
}
.fbp-back-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: var(--muted-2);
  text-decoration: none; margin-bottom: 22px;
}
.fbp-back-link:hover { color: var(--teal-deep); }

.fbp-badge {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(224,169,63,.4); border-radius: 999px;
  padding: 7px 14px 7px 12px; background: rgba(224,169,63,.09);
  font-size: 11px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: #8a6406;
}
.fbp-badge__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(224,169,63,.2);
  animation: fbp-pulse 2.4s ease-in-out infinite;
}
@keyframes fbp-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes fbp-comet { from { left: -180px; } to { left: 100%; } }
@keyframes fbp-bar { 0%,100% { transform: scaleY(.32); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
@keyframes fbp-ring { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.55); opacity: 0; } }

.fbp-founding__comet { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; overflow: hidden; }
.fbp-founding__comet i { position: absolute; top: 0; bottom: 0; left: -180px; width: 180px; background: linear-gradient(90deg, transparent, #f4c95d, #7fe9d8, transparent); animation: fbp-comet 4.6s linear infinite; }

.fbp-live-bars { display: flex; gap: 3px; align-items: flex-end; height: 13px; margin-top: 14px; }
.fbp-live-bars i { display: block; width: 3px; height: 100%; border-radius: 2px 2px 1px 1px; background: #f4c95d; transform-origin: bottom; animation: fbp-bar 2s ease-in-out infinite; }
.fbp-live-bars i:nth-child(1) { animation-delay: 0s; }
.fbp-live-bars i:nth-child(2) { animation-delay: .28s; }
.fbp-live-bars i:nth-child(3) { animation-delay: .56s; }
.fbp-live-bars i:nth-child(4) { animation-delay: .84s; }
.fbp-live-bars i:nth-child(5) { animation-delay: 1.12s; }

.fbp-feature-card__avatar { position: relative; }
.fbp-feature-card__avatar::before {
  content: ""; position: absolute; inset: 0; border-radius: 12px;
  border: 1.5px solid rgba(20,184,166,.6);
  animation: fbp-ring 2.6s ease-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .fbp-founding__comet i, .fbp-live-bars i, .fbp-feature-card__avatar::before { animation: none !important; }
}

.fbp-hero__h1 {
  font-weight: 900; font-size: 60px; line-height: 1.0;
  letter-spacing: -.045em; color: var(--ink); margin: 22px 0 0;
}
.fbp-accent {
  background: linear-gradient(100deg, #14b8a6, #0f766e 48%, #14b8a6 80%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fbp-sheen 6s linear infinite;
}
@keyframes fbp-sheen { to { background-position: 200% center; } }

.fbp-hero__lede { font-size: 18px; line-height: 1.6; color: var(--muted); margin: 22px 0 0; max-width: 520px; }
.fbp-hero__lede em { font-style: normal; color: var(--ink-2); font-weight: 700; }

.fbp-actions { display: flex; gap: 13px; margin-top: 30px; flex-wrap: wrap; }

.fbp-trust { display: flex; align-items: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.fbp-trust__item { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.fbp-trust__ic {
  width: 20px; height: 20px; border-radius: 7px; flex: none;
  background: rgba(20,184,166,.12); color: var(--teal-deep);
  display: grid; place-items: center;
}
.fbp-trust__sep { color: #cbd5e1; }

/* Hero feature-preview card (shows what a feature looks like) */
.fbp-feature-card {
  position: relative;
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(150deg, #07111f 0%, #10243d 100%);
  box-shadow: 0 30px 70px rgba(7,17,31,.3);
  color: #fff;
  animation: fbp-float 7s ease-in-out infinite;
}
@keyframes fbp-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.fbp-feature-card__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 50% at 18% 0%, rgba(20,184,166,.3), transparent 42%),
    radial-gradient(40% 45% at 100% 20%, rgba(22,184,217,.2), transparent 40%);
}
.fbp-feature-card__top {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.fbp-feature-card__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: #ffd98a;
}
.fbp-feature-card__tag span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.fbp-feature-card__num { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .04em; }
.fbp-feature-card__body { position: relative; padding: 24px 24px 26px; }
.fbp-feature-card__eyebrow { font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #7fe9d8; margin: 0; }
.fbp-feature-card__title { font-weight: 900; font-size: 25px; line-height: 1.12; letter-spacing: -.03em; margin: 12px 0 0; color: #fff; }
.fbp-feature-card__byline { display: flex; align-items: center; gap: 11px; margin-top: 18px; }
.fbp-feature-card__avatar {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: linear-gradient(140deg, #14b8a6, #0f766e);
  display: grid; place-items: center; font-weight: 900; font-size: 15px; color: #fff;
  box-shadow: 0 6px 16px rgba(20,184,166,.35);
}
.fbp-feature-card__byline-name { font-weight: 800; font-size: 14.5px; color: #fff; }
.fbp-feature-card__byline-role { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 2px; }
.fbp-feature-card__quote {
  margin: 20px 0 0; padding: 14px 16px; border-radius: 13px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,.82); font-style: italic;
}
.fbp-feature-card__signals { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.fbp-feature-card__signal {
  font-size: 11.5px; font-weight: 700; color: #cdeee8;
  background: rgba(20,184,166,.14); border: 1px solid rgba(20,184,166,.3);
  border-radius: 999px; padding: 5px 11px;
}
.fbp-feature-card__float {
  position: absolute; right: -14px; bottom: 60px; width: 92px; height: 92px;
  border-radius: 20px; background: rgba(255,255,255,.96);
  box-shadow: 0 18px 40px rgba(7,17,31,.32);
  display: grid; place-items: center; padding: 10px; transform: rotate(4deg);
}
.fbp-feature-card__float img { width: 100%; height: 100%; object-fit: contain; }

/* =========================================================
   FOUNDING STRIP
   ========================================================= */
.fbp-founding {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #07111f 0%, #123532 100%);
  color: #fff;
}
.fbp-founding__inner {
  position: relative; max-width: 1180px; margin: 0 auto; padding: 34px 26px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: space-between;
}
.fbp-founding__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(40% 80% at 90% 50%, rgba(20,184,166,.2), transparent 60%);
}
.fbp-founding__copy { position: relative; max-width: 680px; }
.fbp-founding__kicker { font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #ffd98a; margin: 0; }
.fbp-founding__h { font-weight: 900; font-size: 23px; line-height: 1.2; letter-spacing: -.025em; margin: 10px 0 0; color: #fff; }
.fbp-founding__h em { font-style: normal; color: #7fe9d8; }
.fbp-founding__sub { font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.7); margin: 9px 0 0; }
.fbp-founding__cta { position: relative; }

/* =========================================================
   BENEFITS
   ========================================================= */
.fbp-benefits__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px;
}
.fbp-benefit {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 30px 28px; box-shadow: 0 1px 2px rgba(15,23,42,.03);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.fbp-benefit:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(15,23,42,.08); border-color: rgba(20,184,166,.4); }
.fbp-benefit__ic {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(20,184,166,.1); border: 1px solid rgba(20,184,166,.22);
  display: grid; place-items: center; color: var(--teal-deep);
}
.fbp-benefit__title { font-weight: 800; font-size: 19.5px; letter-spacing: -.025em; color: var(--ink); margin: 20px 0 0; }
.fbp-benefit__desc { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 10px 0 0; }
.fbp-benefit__tag {
  display: inline-flex; margin-top: 16px; font-size: 11.5px; font-weight: 700;
  color: var(--teal-deep); background: rgba(20,184,166,.08);
  border: 1px solid rgba(20,184,166,.2); border-radius: 999px; padding: 5px 12px;
}

/* =========================================================
   EXAMPLE (what a feature looks like)
   ========================================================= */
.fbp-example__panel {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 0;
  border: 1px solid var(--line); border-radius: 24px; overflow: hidden;
  background: #fff; box-shadow: 0 20px 50px rgba(15,23,42,.07); margin-top: 44px;
}
.fbp-example__main { padding: 42px 42px 44px; }
.fbp-example__label {
  display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: #8a6406;
  background: rgba(224,169,63,.1); border: 1px solid rgba(224,169,63,.32);
  border-radius: 999px; padding: 5px 12px;
}
.fbp-example__title { font-weight: 900; font-size: 30px; line-height: 1.1; letter-spacing: -.035em; color: var(--ink); margin: 18px 0 0; }
.fbp-example__dek { font-size: 15.5px; line-height: 1.62; color: var(--muted); margin: 16px 0 0; }
.fbp-example__meta { display: flex; flex-direction: column; gap: 9px; margin: 24px 0 0; }
.fbp-example__meta-row { display: flex; align-items: center; gap: 11px; font-size: 14px; }
.fbp-example__meta-k { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); width: 92px; flex: none; }
.fbp-example__meta-v { color: var(--ink-2); font-weight: 600; }
.fbp-example__signals { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 0; }
.fbp-signal-chip {
  font-size: 12.5px; font-weight: 600; color: var(--teal-deep);
  background: rgba(20,184,166,.08); border: 1px solid rgba(20,184,166,.22);
  border-radius: 999px; padding: 7px 13px;
}
.fbp-example__actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

.fbp-example__lens {
  padding: 42px 38px; background: linear-gradient(170deg, #f4fbfa 0%, #eef8f6 100%);
  border-left: 1px solid var(--line);
}
.fbp-example__lens-kicker { font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-deep); margin: 0; }
.fbp-example__lens-h { font-weight: 800; font-size: 21px; letter-spacing: -.025em; color: var(--ink); margin: 12px 0 0; }
.fbp-example__lens-p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 12px 0 0; }
.fbp-example__path { display: flex; flex-direction: column; gap: 8px; margin: 22px 0 0; }
.fbp-example__path-label { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin: 0 0 4px; }
.fbp-example__path-item {
  display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 11px 14px;
}
.fbp-example__path-item span {
  width: 22px; height: 22px; border-radius: 7px; flex: none;
  background: rgba(20,184,166,.12); color: var(--teal-deep);
  display: grid; place-items: center; font-size: 12px; font-weight: 800;
}

/* =========================================================
   READINESS (the one retained helper) — with Kip
   ========================================================= */
.fbp-ready__panel {
  display: grid; grid-template-columns: .92fr 1.08fr; gap: 0;
  border-radius: 26px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(7,17,31,.16); margin-top: 8px;
}
.fbp-ready__kip {
  position: relative; overflow: hidden;
  /* Exact match to Kip image background (#00061e) so the photo blends seamlessly */
  background: #00061e;
  padding: 44px 38px 0; display: flex; flex-direction: column;
  color: #fff; min-height: 460px;
}
.fbp-ready__kip-glow {
  position: absolute; left: 0; top: 0; right: 0; height: 60%; pointer-events: none;
  background:
    radial-gradient(70% 60% at 18% 0%, rgba(20,184,166,.28), transparent 60%),
    radial-gradient(60% 50% at 100% 10%, rgba(22,184,217,.16), transparent 55%);
}
.fbp-ready__kip-copy { position: relative; z-index: 2; }
.fbp-ready__kip-kicker { font-size: 11.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #7fe9d8; margin: 0; }
.fbp-ready__kip-h { font-weight: 900; font-size: 28px; line-height: 1.08; letter-spacing: -.035em; margin: 12px 0 0; color: #fff; }
.fbp-ready__kip-h em { font-style: normal; color: #7fe9d8; }
.fbp-ready__kip-p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.74); margin: 14px 0 0; max-width: 340px; }
.fbp-ready__kip-img {
  position: relative; z-index: 1; align-self: center;
  width: 100%; max-width: 380px; margin-top: auto;
}
.fbp-ready__kip-img img { width: 100%; height: auto; display: block; }

.fbp-ready__tool { background: #fff; padding: 42px 40px; }
.fbp-ready__tool-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.fbp-ready__tool-title { font-weight: 800; font-size: 19px; letter-spacing: -.025em; color: var(--ink); margin: 0; }
.fbp-ready__score { font-size: 13px; font-weight: 800; color: var(--teal-deep); }
.fbp-ready__bar { height: 8px; border-radius: 999px; background: #eef2f6; overflow: hidden; margin: 14px 0 24px; }
.fbp-ready__bar i { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--teal-deep), #2dd4bf); transition: width .45s cubic-bezier(.2,.7,.2,1); }

.fbp-check {
  display: flex; align-items: flex-start; gap: 13px; cursor: pointer;
  padding: 15px 16px; border: 1px solid var(--line); border-radius: 14px;
  margin-bottom: 11px; transition: border-color .18s ease, background .18s ease;
}
.fbp-check:hover { border-color: rgba(20,184,166,.4); background: #fafdfc; }
.fbp-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.fbp-check__box {
  width: 24px; height: 24px; border-radius: 8px; flex: none; margin-top: 1px;
  border: 2px solid #cbd5e1; background: #fff;
  display: grid; place-items: center; transition: background .16s ease, border-color .16s ease;
}
.fbp-check__box svg { opacity: 0; transform: scale(.6); transition: opacity .16s ease, transform .16s ease; }
.fbp-check input:checked + .fbp-check__box { background: var(--teal); border-color: var(--teal); }
.fbp-check input:checked + .fbp-check__box svg { opacity: 1; transform: scale(1); }
.fbp-check input:focus-visible + .fbp-check__box { box-shadow: 0 0 0 3px rgba(20,184,166,.3); }
.fbp-check__label { font-size: 14.5px; line-height: 1.5; color: var(--ink-2); font-weight: 600; }
.fbp-ready__msg { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 18px 0 0; min-height: 20px; }
.fbp-ready__msg strong { color: var(--teal-deep); font-weight: 800; }

/* =========================================================
   PROCESS
   ========================================================= */
.fbp-process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.fbp-step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 26px 24px;
}
.fbp-step__num {
  font-weight: 900; font-size: 14px; color: var(--teal-deep);
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(20,184,166,.1); border: 1px solid rgba(20,184,166,.22);
  display: grid; place-items: center; letter-spacing: .02em;
}
.fbp-step__title { font-weight: 800; font-size: 16.5px; letter-spacing: -.02em; color: var(--ink); margin: 18px 0 0; }
.fbp-step__desc { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 9px 0 0; }

/* =========================================================
   SUBMIT (final CTA + form + consent)
   ========================================================= */
.fbp-submit { background: linear-gradient(180deg, #f8fafc 0%, #eef8f6 100%); }
.fbp-submit__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 48px; align-items: start; }
.fbp-submit__copy { position: sticky; top: 100px; }
.fbp-submit__h { font-weight: 900; font-size: 42px; line-height: 1.04; letter-spacing: -.04em; color: var(--ink); margin: 16px 0 0; }
.fbp-submit__p { font-size: 16px; line-height: 1.62; color: var(--muted); margin: 18px 0 0; max-width: 420px; }
.fbp-submit__reassure { display: flex; flex-direction: column; gap: 12px; margin: 26px 0 0; }
.fbp-reassure-item { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; line-height: 1.5; color: var(--ink-2); font-weight: 600; }
.fbp-reassure-item__ic { width: 22px; height: 22px; border-radius: 7px; flex: none; background: rgba(20,184,166,.12); color: var(--teal-deep); display: grid; place-items: center; margin-top: 1px; }

.fbp-form-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 30px 30px 26px; box-shadow: 0 20px 50px rgba(15,23,42,.08);
}
.fbp-form-card__head { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.fbp-form-card__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(20,184,166,.16); }
.fbp-form-card__label { font-weight: 800; font-size: 14px; color: var(--ink); }
.fbp-form-card__meta { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--faint); }
.fbp-form-card iframe { width: 100%; border: 0; display: block; }

.fbp-consent {
  display: flex; gap: 12px; margin-top: 18px; padding: 16px 18px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
}
.fbp-consent__ic { width: 24px; height: 24px; border-radius: 8px; flex: none; background: rgba(20,184,166,.12); color: var(--teal-deep); display: grid; place-items: center; margin-top: 1px; }
.fbp-consent__text { font-size: 12.5px; line-height: 1.55; color: var(--muted); }
.fbp-consent__text strong { color: var(--ink-2); font-weight: 700; }
.fbp-consent__text a { color: var(--teal-deep); font-weight: 700; text-decoration: none; }
.fbp-consent__text a:hover { text-decoration: underline; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .fbp-hero__grid { grid-template-columns: 1fr; gap: 44px; padding-top: 36px; }
  .fbp-hero__h1 { font-size: 46px; }
  .fbp-feature-card { max-width: 460px; }
  .fbp-benefits__grid { grid-template-columns: 1fr; }
  .fbp-example__panel { grid-template-columns: 1fr; }
  .fbp-example__lens { border-left: 0; border-top: 1px solid var(--line); }
  .fbp-ready__panel { grid-template-columns: 1fr; }
  .fbp-ready__kip-img { max-width: 260px; }
  .fbp-process__grid { grid-template-columns: repeat(2, 1fr); }
  .fbp-submit__grid { grid-template-columns: 1fr; gap: 32px; }
  .fbp-submit__copy { position: static; }
  .fbp-h2 { font-size: 36px; }
  [data-r="badge"] { grid-template-columns: 1fr !important; gap: 32px !important; }
}
@media (max-width: 560px) {
  .fbp-sec { padding: 64px 20px; }
  .fbp-hero__grid { padding: 30px 20px 56px; }
  .fbp-hero__h1 { font-size: 38px; }
  .fbp-example__main { padding: 30px 26px; }
  .fbp-example__lens { padding: 30px 26px; }
  .fbp-ready__kip { padding: 34px 28px; }
  .fbp-ready__tool { padding: 32px 26px; }
  .fbp-process__grid { grid-template-columns: 1fr; }
  .fbp-submit__h { font-size: 32px; }
  .fbp-founding__inner { padding: 28px 20px; }
}
