.ft-hero {
  background: var(--ink, #0b1620);
  position: relative; overflow: hidden;
  padding: 100px 40px 80px;
}

.ft-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(31,135,164,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,135,164,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.ft-hero-glow {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,135,164,0.2) 0%, transparent 65%);
  top: -280px; right: -180px;
  animation: ft-breathe 10s ease-in-out infinite; pointer-events: none;
}

.ft-hero-glow-2 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(5,150,105,0.08) 0%, transparent 65%);
  bottom: -180px; left: -100px;
  animation: ft-breathe 13s ease-in-out infinite reverse; pointer-events: none;
}

@keyframes ft-breathe { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.08);opacity:.7;} }

.ft-hero-inner {
  max-width: 900px; margin: 0 auto;
  text-align: center;
  position: relative; z-index: 2;
}

.ft-status-banner {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px; padding: 10px 20px;
  margin-bottom: 32px; flex-wrap: wrap; justify-content: center;
}

.ft-status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #059669; animation: ft-pulse 2s infinite;
}

@keyframes ft-pulse { 0%,100%{opacity:1;transform:scale(1);box-shadow:0 0 0 0 rgba(5,150,105,0);} 50%{opacity:.8;transform:scale(1.2);box-shadow:0 0 0 4px rgba(5,150,105,0.2);} }

.ft-status-banner span {
  font-family: var(--ff-head, 'Syne',sans-serif);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}

.ft-status-count { color: var(--brand-lt, rgb(80,180,210)) !important; }
.ft-status-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.12); }

.ft-hero-title {
  font-family: var(--ff-head, 'Syne',sans-serif);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800; color: #fff;
  letter-spacing: -0.03em; line-height: 1.02;
  margin-bottom: 24px;
}

.ft-hero-title em { font-style: italic; color: var(--brand-lt, rgb(80,180,210)); }

.ft-hero-title-free {
  font-style: italic;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.ft-hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.55);
  font-weight: 300; line-height: 1.8;
  max-width: 620px; margin: 0 auto 36px;
}

.ft-hero-desc strong { color: rgba(255,255,255,0.85); font-weight: 600; }

.ft-hero-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; margin-bottom: 36px;
}

.ft-proof-avatars { display: flex; }

.ft-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--ink, #0b1620);
  margin-left: -8px; font-family: var(--ff-head,'Syne',sans-serif);
  font-size: 10px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
}

.ft-avatar:first-child { margin-left: 0; }

.ft-proof-text { font-size: 13px; color: rgba(255,255,255,0.45); }
.ft-proof-text strong { color: rgba(255,255,255,0.85); }
.ft-proof-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.12); }
.ft-proof-stars { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.45); }
.ft-proof-stars span:first-child { color: #f59e0b; font-size: 14px; }

.ft-hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.ft-btn-solid {
  background: var(--main, rgb(31,135,164)); color: #fff;
  padding: 13px 28px; border-radius: 8px;
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: 14px; font-weight: 700; text-decoration: none;
  display: inline-block;
  transition: background .25s, transform .2s, box-shadow .25s;
}

.ft-btn-solid:hover {
  background: var(--main-dark, rgb(18,95,118));
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(31,135,164,0.3);
}

.ft-btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.7);
  padding: 13px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .25s, background .25s, color .25s;
}

.ft-btn-ghost:hover {
  border-color: rgba(31,135,164,0.4);
  background: rgba(31,135,164,0.07);
  color: var(--brand-lt, rgb(80,180,210));
}

.ft-btn-ghost svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 1.8; fill: none; }

.ft-hero-video { max-width: 720px; margin: 0 auto; }

.ft-video-wrap {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  position: relative; padding-bottom: 56.25%; height: 0;
}

.ft-video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

.ft-video-caption {
  margin-top: 14px;
  font-size: 13px; color: rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-weight: 300;
}

/* ── IMPACT ── */
.ft-impact {
  background: var(--main, rgb(31,135,164));
  padding: 0;
}

.ft-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.ft-impact-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}

.ft-impact-item {
  padding: 40px 32px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.ft-impact-item:last-child { border-right: none; }

.ft-impact-val {
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: 44px; font-weight: 800; color: #fff;
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px;
}

.ft-impact-lbl { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 300; }

/* ── BENEFITS ── */
.ft-benefits { padding: 100px 0; background: var(--surface, #f5f8fa); }

.ft-section-head { margin-bottom: 64px; }
.ft-eyebrow {
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--main, rgb(31,135,164)); margin-bottom: 14px; display: block;
}

.ft-section-title {
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800; color: var(--ink, #0b1620);
  letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 14px;
}

.ft-section-title span { color: var(--main, rgb(31,135,164)); }

.ft-section-sub {
  font-size: 16px; color: var(--ink-mid, #3d4e5c);
  font-weight: 300; line-height: 1.75; max-width: 540px;
}

.ft-benefits-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: rgba(0,0,0,0.06);
  border-radius: 18px; overflow: hidden;
}

.ft-benefit-card {
  background: var(--white, #fff);
  padding: 40px 32px; position: relative;
  transition: background .3s;
}

.ft-benefit-card:hover { background: #f0f7fb; }

.ft-benefit-card::after {
  content: ""; position: absolute; bottom: 0; left: 32px;
  width: 0; height: 2px;
  background: var(--main, rgb(31,135,164));
  transition: width .4s ease;
}

.ft-benefit-card:hover::after { width: calc(100% - 64px); }

.ft-benefit-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(31,135,164,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
  transition: transform .3s, box-shadow .3s;
}

.ft-benefit-card:hover .ft-benefit-icon {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(31,135,164,0.2);
}

.ft-benefit-icon svg { width: 22px; height: 22px; stroke: var(--main, rgb(31,135,164)); stroke-width: 1.8; fill: none; }

.ft-benefit-num {
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: rgba(31,135,164,0.4); margin-bottom: 14px;
}

.ft-benefit-card h3 {
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: 19px; font-weight: 700; color: var(--ink, #0b1620); margin-bottom: 10px;
}

.ft-benefit-card p { font-size: 14px; color: var(--ink-mid, #3d4e5c); font-weight: 300; line-height: 1.7; }

/* ── ABOUT ── */
.ft-about { padding: 100px 0; background: var(--white, #fff); }

.ft-about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.ft-about-content p {
  font-size: 15px; color: var(--ink-mid, #3d4e5c);
  font-weight: 300; line-height: 1.8; margin-bottom: 16px;
}

.ft-about-content strong { color: var(--ink, #0b1620); font-weight: 700; }

.ft-trustpilot-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; color: var(--main, rgb(31,135,164));
  font-weight: 600; text-decoration: none;
  transition: gap .25s;
}

.ft-trustpilot-link:hover { gap: 12px; }

.ft-trustpilot-link svg { stroke: currentColor; stroke-width: 2; fill: none; }

.ft-about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}

.ft-about-stat {
  background: var(--surface, #f5f8fa);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px; padding: 28px 22px; text-align: center;
  transition: border-color .3s, background .3s;
}

.ft-about-stat:hover {
  border-color: rgba(31,135,164,0.2);
  background: rgba(31,135,164,0.03);
}

.ft-about-stat-val {
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: 36px; font-weight: 800; color: var(--main, rgb(31,135,164));
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px;
}

.ft-about-stat-lbl { font-size: 12px; color: var(--ink-light, #8a9baa); font-weight: 300; }

.ft-about-stat-brand {
  display: flex; align-items: center; gap: 14px; text-align: left;
}

.ft-about-stat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(31,135,164,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.ft-about-stat-icon svg { stroke: var(--main, rgb(31,135,164)); }

/* ── CLOSED SECTION ── */
.ft-closed-section {
  padding: 100px 0;
  background: var(--ink, #0b1620);
  position: relative; overflow: hidden;
}

.ft-closed-section::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(31,135,164,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,135,164,0.05) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}

.ft-closed-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 56px 52px;
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto;
}

.ft-closed-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.25);
  color: #f87171;
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 24px;
}

.ft-closed-badge svg { stroke: currentColor; stroke-width: 2.5; fill: none; }

.ft-closed-title {
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; color: #fff;
  letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 22px;
}

.ft-closed-title span { color: var(--brand-lt, rgb(80,180,210)); }

.ft-closed-desc {
  font-size: 15px; color: rgba(255,255,255,0.55);
  font-weight: 300; line-height: 1.8; margin-bottom: 36px;
  max-width: 640px;
}

.ft-closed-desc strong { color: rgba(255,255,255,0.85); font-weight: 600; }

/* WAITLIST FORM */
.ft-waitlist-form { margin-bottom: 44px; }

.ft-waitlist-row {
  display: flex; gap: 10px; flex-wrap: wrap;
}

.ft-waitlist-input {
  flex: 1; min-width: 180px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 13px 16px;
  font-family: var(--ff-body,'IBM Plex Sans',sans-serif);
  font-size: 14px; color: #fff; font-weight: 300;
  outline: none;
  transition: border-color .25s, background .25s, box-shadow .25s;
}

.ft-waitlist-input::placeholder { color: rgba(255,255,255,0.3); }

.ft-waitlist-input:focus {
  border-color: var(--main, rgb(31,135,164));
  background: rgba(31,135,164,0.06);
  box-shadow: 0 0 0 3px rgba(31,135,164,0.1);
}

.ft-waitlist-btn {
  background: var(--main, rgb(31,135,164)); color: #fff; border: none;
  padding: 13px 28px; border-radius: 8px;
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: 14px; font-weight: 700;
  cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; gap: 8px;
  transition: background .25s, transform .2s, box-shadow .25s;
}

.ft-waitlist-btn:hover {
  background: var(--main-dark, rgb(18,95,118));
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(31,135,164,0.3);
}

.ft-waitlist-btn:disabled { opacity:.6; cursor:not-allowed; transform:none; box-shadow:none; }

.ft-wl-spin {
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ft-spin .7s linear infinite;
}

@keyframes ft-spin { to { transform: rotate(360deg); } }

.ft-waitlist-note {
  margin-top: 10px;
  font-size: 12px; color: rgba(255,255,255,0.3);
  display: flex; align-items: center; gap: 6px; font-weight: 300;
}

.ft-waitlist-note svg { stroke: rgba(255,255,255,0.3); stroke-width: 1.5; fill: none; flex-shrink: 0; }

/* PIVOT */
.ft-pivot-separator {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}

.ft-pivot-line { flex: 1; height: 1px; background: rgba(255,255,255,0.08); }

.ft-pivot-separator span {
  font-size: 13px; color: rgba(255,255,255,0.3); font-weight: 300; white-space: nowrap;
}

.ft-pivot-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}

.ft-pivot-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 28px 24px;
  transition: border-color .3s, background .3s;
  position: relative;
}

.ft-pivot-card:hover {
  border-color: rgba(31,135,164,0.3);
  background: rgba(31,135,164,0.05);
}

.ft-pivot-card-featured {
  border-color: rgba(31,135,164,0.3);
  background: rgba(31,135,164,0.07);
}

.ft-pivot-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.ft-pivot-card-icon svg { width: 20px; height: 20px; stroke: var(--brand-lt, rgb(80,180,210)); stroke-width: 1.8; fill: none; }

.ft-pivot-featured-badge {
  position: absolute; top: -10px; right: 16px;
  background: var(--main, rgb(31,135,164)); color: #fff;
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}

.ft-pivot-card h4 {
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: 17px; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 8px;
}

.ft-pivot-card p {
  font-size: 13px; color: rgba(255,255,255,0.45);
  font-weight: 300; line-height: 1.65; margin-bottom: 20px;
}

.ft-pivot-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: 13px; font-weight: 700; color: var(--brand-lt, rgb(80,180,210));
  text-decoration: none; transition: gap .25s;
}

.ft-pivot-link:hover { gap: 10px; }
.ft-pivot-link svg { stroke: currentColor; stroke-width: 2.5; fill: none; }

.ft-pivot-btn {
  display: inline-block;
  background: var(--main, rgb(31,135,164)); color: #fff;
  padding: 11px 22px; border-radius: 8px;
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: background .25s, transform .2s;
}

.ft-pivot-btn:hover { background: var(--main-dark, rgb(18,95,118)); transform: translateY(-2px); }

/* ── PROOF SECTION ── */
.ft-proof-section { padding: 100px 0; background: var(--surface, #f5f8fa); }

.ft-testimonials {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-bottom: 36px;
}

.ft-t-card {
  background: var(--white, #fff);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px; padding: 32px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}

.ft-t-card:hover {
  border-color: rgba(31,135,164,0.2);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(31,135,164,0.08);
}

.ft-t-stars { font-size: 14px; color: #f59e0b; margin-bottom: 12px; }

.ft-t-quote {
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: 48px; color: var(--main, rgb(31,135,164));
  line-height: 1; margin-bottom: 8px; opacity: .35;
}

.ft-t-card p {
  font-size: 14px; color: var(--ink-mid, #3d4e5c);
  font-style: italic; font-weight: 300; line-height: 1.75;
  margin-bottom: 22px;
}

.ft-t-user {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.06);
}

.ft-t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0;
}

.ft-t-name {
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: 14px; font-weight: 700; color: var(--ink, #0b1620);
}

.ft-t-role { font-size: 12px; color: var(--ink-light, #8a9baa); font-weight: 300; }

.ft-trustpilot-cta { text-align: center; }

.ft-trustpilot-cta a {
  font-size: 14px; color: var(--main, rgb(31,135,164));
  font-weight: 600; text-decoration: none;
  transition: color .2s;
}

.ft-trustpilot-cta a:hover { color: var(--main-dark, rgb(18,95,118)); }

/* ── FINAL CTA ── */
.ft-final-cta {
  padding: 120px 0;
  background: var(--ink, #0b1620);
  position: relative; overflow: hidden; text-align: center;
}

.ft-final-glow {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,135,164,0.15) 0%, transparent 65%);
  top: -300px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}

.ft-final-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }

.ft-final-title {
  font-family: var(--ff-head,'Syne',sans-serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800; color: #fff;
  letter-spacing: -0.03em; line-height: 1.02; margin-bottom: 20px;
}

.ft-final-desc {
  font-size: 16px; color: rgba(255,255,255,0.5);
  font-weight: 300; line-height: 1.75; margin-bottom: 44px;
}

.ft-final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── REVEAL ── */
.ft-reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s, transform .8s; }
.ft-reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1050px) {
  .ft-about-inner { grid-template-columns: 1fr; gap: 50px; }
  .ft-benefits-grid { grid-template-columns: 1fr 1fr; }
  .ft-testimonials { grid-template-columns: 1fr 1fr; }
  .ft-pivot-cards { grid-template-columns: 1fr 1fr; }
  .ft-impact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .ft-hero { padding: 80px 24px 60px; }
  .ft-hero-title { font-size: 42px; }
  .ft-container { padding: 0 24px; }
  .ft-benefits-grid { grid-template-columns: 1fr; }
  .ft-benefits, .ft-about, .ft-proof-section { padding: 70px 0; }
  .ft-closed-section { padding: 70px 0; }
  .ft-closed-card { padding: 36px 28px; }
  .ft-testimonials { grid-template-columns: 1fr; }
  .ft-pivot-cards { grid-template-columns: 1fr; }
  .ft-impact-grid { grid-template-columns: 1fr 1fr; }
  .ft-impact-item { padding: 28px 20px; }
  .ft-final-cta { padding: 80px 0; }
  .ft-about-stats { grid-template-columns: 1fr; }
}
