:root{
  --ff-white:#ffffff;
  --ff-bg:#ffffff;
  --ff-bg-soft:#f4f8ff;
  --ff-bg-blue:#eef5ff;

  --ff-navy:#061a3a;
  --ff-navy-2:#092754;
  --ff-blue-dark:#0a3c91;
  --ff-blue:#0b5cff;
  --ff-blue-2:#1877f2;
  --ff-blue-3:#4d9cff;
  --ff-blue-soft:#dcecff;
  --ff-blue-pale:#f0f6ff;

  --ff-text:#071b3a;
  --ff-text-soft:#37516f;
  --ff-muted:#6b7f98;

  --ff-line:rgba(7,27,58,.12);
  --ff-success:#087a43;
  --ff-danger:#c03434;

  --ff-shadow:0 18px 50px rgba(6,26,58,.10);
  --ff-shadow-strong:0 28px 80px rgba(6,26,58,.16);

  --ff-radius:28px;
  --ff-font:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;

  --ff-topbar-h:92px;
  --ff-productnav-h:58px;
  --ff-header-h:150px;

  --ff-transition:220ms ease;
}

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

html{
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--ff-header-h) + 28px);
}

html,
body{
  min-height:100%;
  margin:0;
  padding:0;
  background:var(--ff-bg);
}

body{
  font-family:var(--ff-font);
  color:var(--ff-text);
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:var(--ff-blue);
  text-decoration:none;
}

a:hover{
  color:var(--ff-navy);
}

button,
input,
textarea,
select{
  font:inherit;
}

::selection{
  background:var(--ff-blue);
  color:#ffffff;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:12px;
  z-index:99999;
}

.skip-link:focus{
  left:12px;
  position:fixed;
  padding:.7rem 1rem;
  border-radius:999px;
  background:var(--ff-blue);
  color:#ffffff;
}

/* HEADER */

.ff-site-header{
  z-index:1040;
  background:#ffffff;
  box-shadow:0 10px 34px rgba(6,26,58,.10);
}

.ff-topbar{
  height:var(--ff-topbar-h);
  background:linear-gradient(90deg,var(--ff-navy),var(--ff-blue-dark));
  color:#ffffff;
}

.ff-topbar-inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
}

.ff-brand{
  display:inline-flex;
  align-items:center;
  color:#ffffff;
  min-width:0;
  margin-left:-2cm;
}

.ff-brand:hover{
  color:#ffffff;
  opacity:.85;
}

.ff-brand-logo{
  width:155px;
  height:auto;
  object-fit:contain;
  object-position:left center;
  display:block;
  margin-top:8px;
  filter:brightness(0) invert(1);
}

.ff-top-actions{
  display:flex;
  align-items:center;
  gap:1.35rem;
}

.ff-top-action{
  color:#ffffff;
  font-size:.96rem;
  font-weight:780;
  line-height:1;
  white-space:nowrap;
}

.ff-top-action:hover{
  color:var(--ff-blue-soft);
}

.ff-top-phone{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
}

.ff-mobile-actions{
  display:none;
  align-items:center;
  gap:.65rem;
}

.ff-mobile-contact{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.52rem .95rem;
  border-radius:999px;
  background:#ffffff;
  color:var(--ff-navy);
  font-weight:900;
}

/* MENU */

.ff-menu{
  position:relative;
}

.ff-menu-btn{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  border:1px solid rgba(255,255,255,.26);
  background:rgba(255,255,255,.10);
  color:#ffffff;
  border-radius:14px;
  cursor:pointer;
  transition:
    background var(--ff-transition),
    color var(--ff-transition),
    border-color var(--ff-transition);
}

.ff-menu-btn span{
  width:17px;
  height:2px;
  border-radius:999px;
  background:currentColor;
}

.ff-menu-btn:hover{
  background:#ffffff;
  color:var(--ff-navy);
  border-color:#ffffff;
}

.ff-menu-panel{
  position:absolute;
  top:calc(100% + 14px);
  right:0;
  min-width:292px;
  display:none;
  padding:.5rem;
  background:#ffffff;
  border:1px solid var(--ff-line);
  border-radius:20px;
  box-shadow:0 24px 70px rgba(6,26,58,.18);
  z-index:5000;
}

.ff-menu.open .ff-menu-panel{
  display:grid;
  gap:.15rem;
}

.ff-menu-panel a{
  display:flex;
  align-items:center;
  min-height:44px;
  padding:.72rem .9rem;
  color:var(--ff-navy);
  font-weight:820;
  border-radius:14px;
  transition:
    background var(--ff-transition),
    color var(--ff-transition);
}

.ff-menu-panel a:hover{
  background:var(--ff-blue-pale);
  color:var(--ff-blue-dark);
}

/* PRODUCT NAV */

.ff-productnav{
  height:var(--ff-productnav-h);
  background:#ffffff;
  border-bottom:1px solid var(--ff-line);
}

.ff-productnav-inner{
  height:100%;
  display:flex;
  align-items:stretch;
  gap:.2rem;
  overflow-x:auto;
  scrollbar-width:none;
}

.ff-productnav-inner::-webkit-scrollbar{
  display:none;
}

.ff-productnav-link{
  position:relative;
  min-width:max-content;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 1.1rem;
  color:var(--ff-navy);
  font-weight:850;
  font-size:.96rem;
  border-bottom:4px solid transparent;
  transition:
    background var(--ff-transition),
    border-color var(--ff-transition),
    color var(--ff-transition);
}

.ff-productnav-link:hover,
.ff-productnav-link.active{
  color:var(--ff-blue-dark);
  background:var(--ff-blue-pale);
  border-bottom-color:var(--ff-blue);
}

/* GLOBAL */

main{
  padding-top:var(--ff-header-h);
  background:#ffffff;
}

.ff-section{
  position:relative;
  padding:clamp(4.6rem,7vw,7.4rem) 0;
  background:#ffffff;
}

.ff-section-soft{
  background:
    radial-gradient(circle at 10% 0%,rgba(77,156,255,.12),transparent 32%),
    linear-gradient(180deg,#f8fbff 0%,#f2f7ff 100%);
}

.ff-section-blue{
  background:
    radial-gradient(circle at 16% 18%,rgba(77,156,255,.25),transparent 30%),
    linear-gradient(135deg,var(--ff-navy) 0%,var(--ff-blue-dark) 58%,var(--ff-blue) 100%);
  color:#ffffff;
  overflow:hidden;
}

.ff-section-head{
  max-width:920px;
  margin-bottom:2.9rem;
}

.ff-section-head.text-center{
  margin-left:auto;
  margin-right:auto;
}

.ff-section-label{
  display:inline-flex;
  align-items:center;
  width:max-content;
  margin-bottom:.9rem;
  padding:.42rem .72rem;
  background:var(--ff-blue-pale);
  color:var(--ff-blue-dark);
  border:1px solid rgba(11,92,255,.15);
  border-radius:999px;
  font-size:.76rem;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.075em;
}

.ff-section-label-light{
  background:rgba(255,255,255,.14);
  color:#ffffff;
  border-color:rgba(255,255,255,.26);
}

.ff-section-head h2,
.ff-system-content h2,
.ff-cta-box h2{
  margin:0;
  color:var(--ff-navy);
  font-size:clamp(2.15rem,4.4vw,3.8rem);
  line-height:1.02;
  letter-spacing:-.065em;
  font-weight:950;
  text-wrap:balance;
}

.ff-section-blue h2{
  color:#ffffff;
}

.ff-section-head p,
.ff-system-content p,
.ff-cta-box p{
  margin:.95rem 0 0;
  color:var(--ff-text-soft);
  font-size:1.08rem;
  line-height:1.75;
}

.ff-section-blue p{
  color:rgba(255,255,255,.82);
}

/* HERO */

.ff-hero{
  position:relative;
  padding:0;
  height:calc(100vh - var(--ff-header-h));
  min-height:560px;
  max-height:960px;
  overflow:hidden;
  background:
    radial-gradient(circle at 15% 8%,rgba(77,156,255,.22),transparent 28%),
    radial-gradient(circle at 85% 14%,rgba(11,92,255,.12),transparent 30%),
    linear-gradient(180deg,#ffffff 0%,#f3f8ff 100%);
}

.ff-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(11,92,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(11,92,255,.045) 1px,transparent 1px);
  background-size:52px 52px;
  mask-image:linear-gradient(180deg,rgba(0,0,0,.65),transparent 78%);
  pointer-events:none;
}

.ff-hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:clamp(2rem,4vw,4rem);
  align-items:center;
  height:100%;
  padding:clamp(2rem,4vh,3rem) 0 clamp(2.5rem,5vh,4rem);
}

.ff-hero-content{
  min-width:0;
}

.ff-hero-kicker{
  display:inline-flex;
  margin-bottom:1.2rem;
  padding:.48rem .78rem;
  background:#ffffff;
  color:var(--ff-blue-dark);
  border:1px solid rgba(11,92,255,.18);
  border-radius:999px;
  box-shadow:0 10px 30px rgba(6,26,58,.06);
  font-size:.78rem;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.07em;
}

#heroHeadline{
  max-width:980px;
  margin:0;
  color:var(--ff-navy);
  font-size:clamp(2rem,4.2vw,3.8rem);
  line-height:1.06;
  letter-spacing:-.055em;
  font-weight:950;
  text-wrap:balance;
}

.ff-hero-lead{
  max-width:760px;
  margin:1.2rem 0 0;
  color:var(--ff-text-soft);
  font-size:clamp(1.08rem,1.65vw,1.28rem);
  line-height:1.75;
  font-weight:520;
}

.ff-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.85rem;
  margin-top:2rem;
}

.ff-hero-actions.center{
  justify-content:center;
}

/* BUTTONS */

.ff-btn{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.82rem 1.35rem;
  border:2px solid transparent;
  border-radius:999px;
  font-weight:950;
  text-decoration:none;
  cursor:pointer;
  transition:
    background var(--ff-transition),
    color var(--ff-transition),
    border-color var(--ff-transition),
    transform var(--ff-transition),
    box-shadow var(--ff-transition);
}

.ff-btn:hover{
  transform:translateY(-1px);
}

.ff-btn-primary{
  background:linear-gradient(135deg,var(--ff-blue),var(--ff-blue-dark));
  color:#ffffff;
  border-color:var(--ff-blue);
  box-shadow:0 14px 32px rgba(11,92,255,.22);
}

.ff-btn-primary:hover{
  background:var(--ff-navy);
  color:#ffffff;
  border-color:var(--ff-navy);
}

.ff-btn-secondary{
  background:#ffffff;
  color:var(--ff-navy);
  border-color:rgba(11,92,255,.18);
  box-shadow:0 12px 28px rgba(6,26,58,.06);
}

.ff-btn-secondary:hover{
  background:var(--ff-blue-pale);
  color:var(--ff-blue-dark);
}

.ff-btn-white{
  background:#ffffff;
  color:var(--ff-blue-dark);
  border-color:#ffffff;
}

.ff-btn-ghost{
  color:#ffffff;
  border-color:rgba(255,255,255,.35);
  background:rgba(255,255,255,.08);
}

/* HERO PANEL */

.ff-hero-panel{
  position:relative;
  border-radius:24px;
  background:#ffffff;
  border:1px solid var(--ff-line);
  box-shadow:0 32px 80px rgba(6,26,58,.14);
  overflow:hidden;
}

.ff-status-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  flex-shrink:0;
  background:#49e28c;
  box-shadow:0 0 0 4px rgba(73,226,140,.18);
}

.ff-panel-chrome{
  display:flex;
  align-items:center;
  gap:.75rem;
  padding:.75rem 1rem;
  background:#f4f7fb;
  border-bottom:1px solid var(--ff-line);
}

.ff-panel-dots{
  display:flex;
  gap:.35rem;
  flex-shrink:0;
}

.ff-panel-dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#d1d9e6;
}

.ff-panel-dots span:first-child{ background:#ff6b6b; }
.ff-panel-dots span:nth-child(2){ background:#ffd93d; }
.ff-panel-dots span:last-child{ background:#6bcb77; }

.ff-panel-url{
  flex:1;
  padding:.3rem .75rem;
  background:#ffffff;
  border:1px solid var(--ff-line);
  border-radius:8px;
  color:var(--ff-text-soft);
  font-size:.82rem;
  font-weight:650;
  text-align:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.ff-panel-ssl{
  color:#087a43;
  font-size:.78rem;
  font-weight:850;
  flex-shrink:0;
}

.ff-panel-status{
  display:flex;
  align-items:center;
  gap:.55rem;
  padding:.85rem 1.2rem;
  background:linear-gradient(90deg,var(--ff-navy),var(--ff-blue-dark));
  color:#ffffff;
  font-size:.84rem;
  font-weight:750;
}

.ff-panel-badge{
  margin-left:auto;
  padding:.22rem .55rem;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.22);
  border-radius:6px;
  color:#ffffff;
  font-size:.72rem;
  font-weight:900;
}

.ff-panel-badge + .ff-panel-badge{
  margin-left:.3rem;
}

.ff-panel-scores{
  display:grid;
  gap:.85rem;
  padding:1.2rem 1.2rem .9rem;
  border-bottom:1px solid var(--ff-line);
}

.ff-score-top{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  margin-bottom:.38rem;
}

.ff-score-label{
  color:var(--ff-text-soft);
  font-size:.82rem;
  font-weight:750;
}

.ff-score-num{
  color:var(--ff-navy);
  font-size:.92rem;
  font-weight:950;
}

.ff-score-track{
  height:6px;
  border-radius:999px;
  background:var(--ff-blue-pale);
  overflow:hidden;
}

.ff-score-fill{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--ff-blue),var(--ff-blue-dark));
}

.ff-panel-checklist{
  display:grid;
  padding:.6rem 0;
}

.ff-panel-check{
  display:flex;
  align-items:center;
  gap:.7rem;
  padding:.68rem 1.2rem;
  font-size:.86rem;
  font-weight:700;
  color:var(--ff-text);
  border-bottom:1px solid var(--ff-line);
}

.ff-panel-check:last-child{
  border-bottom:0;
}

.ff-panel-check > span:first-child{
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#eafff3;
  color:#087a43;
  font-size:.78rem;
  font-weight:950;
  flex-shrink:0;
}

/* DOMAIN PANEL */

.ff-domain-panel{
  margin:0 auto;
  padding:2.5rem;
  max-width:1060px;
  background:
    radial-gradient(circle at 18% 0%,rgba(77,156,255,.30),transparent 36%),
    linear-gradient(135deg,var(--ff-navy),var(--ff-blue-dark));
  color:#ffffff;
  border-radius:32px;
  box-shadow:0 26px 80px rgba(6,26,58,.20);
}

.ff-domain-head{
  text-align:center;
}

.ff-domain-badge{
  display:inline-flex;
  margin-bottom:.9rem;
  padding:.38rem .7rem;
  background:#ffffff;
  color:var(--ff-blue-dark);
  border-radius:999px;
  font-size:.75rem;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.ff-domain-head h2{
  margin:0;
  color:#ffffff;
  font-size:clamp(1.8rem,3vw,2.8rem);
  line-height:1.05;
  letter-spacing:-.052em;
  font-weight:950;
}

.ff-domain-head p{
  margin:.75rem auto 0;
  max-width:680px;
  color:rgba(255,255,255,.84);
  font-size:1.05rem;
}

.ff-domain-form{
  margin:1.6rem auto 0;
  max-width:780px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:.75rem;
}

.ff-domain-input{
  min-height:58px;
  width:100%;
  border:2px solid #ffffff;
  border-radius:18px;
  background:#ffffff;
  color:var(--ff-navy);
  padding:.9rem 1rem;
  outline:none;
}

.ff-domain-input::placeholder{
  color:#73849a;
}

.ff-domain-input:focus{
  box-shadow:0 0 0 4px rgba(255,255,255,.24);
}

.ff-domain-btn{
  min-height:58px;
  padding:.9rem 1.45rem;
  border:2px solid #ffffff;
  border-radius:18px;
  background:#ffffff;
  color:var(--ff-blue-dark);
  font-weight:950;
  cursor:pointer;
}

.ff-domain-btn:hover{
  background:var(--ff-blue-soft);
  border-color:var(--ff-blue-soft);
  color:var(--ff-navy);
}

.ff-domain-btn:disabled{
  opacity:.7;
  cursor:not-allowed;
}

.ff-domain-result{
  max-width:780px;
  margin:.95rem auto 0;
  padding:.9rem 1rem;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.24);
  border-radius:18px;
  color:#ffffff;
  font-weight:820;
  text-align:center;
}

.ff-domain-result a{
  color:inherit;
  text-decoration:underline;
}

.ff-domain-result.available{
  background:#eafff3;
  border-color:#bdebcf;
  color:var(--ff-success);
}

.ff-domain-result.taken{
  background:#fff2f2;
  border-color:#ffd1d1;
  color:var(--ff-danger);
}

/* PROOF */

.ff-section-logos{
  padding:1.8rem 0;
  background:#ffffff;
}

.ff-proof-strip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
  padding:1.25rem 1.4rem;
  border:1px solid var(--ff-line);
  border-radius:26px;
  background:#ffffff;
  box-shadow:var(--ff-shadow);
}

.ff-proof-strip strong{
  display:block;
  color:var(--ff-navy);
  font-size:1.08rem;
  font-weight:950;
}

.ff-proof-strip span{
  color:var(--ff-text-soft);
  font-weight:650;
}

.ff-proof-points{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:.9rem;
}

.ff-proof-points span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 1.15rem;
  background:linear-gradient(135deg,#1b67ff 0%,#0b5cff 45%,#0a3c91 100%);
  color:#ffffff;
  border:2px solid rgba(255,255,255,.14);
  border-radius:999px;
  font-size:.92rem;
  font-weight:900;
  letter-spacing:-.02em;
  line-height:1;
  box-shadow:
    0 14px 34px rgba(11,92,255,.20),
    inset 0 1px 0 rgba(255,255,255,.18);
}

/* CARDS */

.ff-step-card,
.ff-article-card{
  height:100%;
  padding:1.5rem;
  background:#ffffff;
  border:1px solid rgba(11,92,255,.16);
  border-radius:28px;
  box-shadow:var(--ff-shadow);
}

.ff-step-card span,
.ff-article-card span{
  display:inline-flex;
  margin-bottom:.9rem;
  padding:.35rem .7rem;
  border-radius:999px;
  background:var(--ff-blue-pale);
  color:var(--ff-blue-dark);
  font-size:.75rem;
  font-weight:950;
  text-transform:uppercase;
}

.ff-step-card h3,
.ff-article-card h3{
  margin:0;
  color:var(--ff-navy);
  font-size:1.35rem;
  font-weight:950;
  line-height:1.14;
  letter-spacing:-.04em;
}

.ff-step-card p,
.ff-article-card p{
  margin:.75rem 0 0;
  color:var(--ff-text-soft);
  font-weight:650;
}

/* PROCESS */

.ff-process-list{
  max-width:960px;
  margin:0 auto;
  display:grid;
  gap:1rem;
}

.ff-process-item{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:1rem;
  align-items:start;
  padding:1.2rem;
  background:#ffffff;
  border:1px solid rgba(11,92,255,.16);
  border-radius:24px;
  box-shadow:var(--ff-shadow);
}

.ff-process-item > span{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:linear-gradient(135deg,var(--ff-blue),var(--ff-blue-dark));
  color:#ffffff;
  font-weight:950;
}

.ff-process-item h3{
  margin:0 0 .35rem;
  color:var(--ff-navy);
  font-weight:950;
}

.ff-process-item p{
  margin:0;
  color:var(--ff-text-soft);
}

/* FAQ */

.ff-faq-list{
  max-width:960px;
  margin:0 auto;
  display:grid;
  gap:1rem;
}

.ff-faq-list details{
  padding:1.25rem 1.35rem;
  background:#ffffff;
  border:1px solid rgba(11,92,255,.16);
  border-radius:22px;
  box-shadow:var(--ff-shadow);
}

.ff-faq-list summary{
  cursor:pointer;
  color:var(--ff-navy);
  font-weight:950;
}

.ff-faq-list p{
  margin:.85rem 0 0;
  color:var(--ff-text-soft);
}

/* BOARD */

.ff-system-grid{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(360px,1fr);
  gap:clamp(2rem,5vw,4.5rem);
  align-items:center;
}

.ff-board-window{
  overflow:hidden;
  border-radius:30px;
  background:#ffffff;
  box-shadow:0 34px 90px rgba(0,0,0,.22);
}

.ff-board-top{
  height:50px;
  display:flex;
  align-items:center;
  gap:.5rem;
  padding:0 1rem;
  background:#eef5ff;
  border-bottom:1px solid var(--ff-line);
}

.ff-board-top span{
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--ff-blue-3);
}

.ff-board-body{
  display:grid;
  grid-template-columns:170px 1fr;
  min-height:360px;
}

.ff-board-sidebar{
  padding:1.15rem;
  background:var(--ff-navy);
  color:#ffffff;
  display:flex;
  flex-direction:column;
  gap:.65rem;
}

.ff-board-sidebar strong{
  font-size:1.1rem;
  margin-bottom:.8rem;
}

.ff-board-sidebar span{
  padding:.58rem .7rem;
  border-radius:12px;
  color:rgba(255,255,255,.74);
  font-weight:800;
}

.ff-board-sidebar span.active{
  background:rgba(255,255,255,.14);
  color:#ffffff;
}

.ff-board-editor{
  padding:1.4rem;
  color:var(--ff-navy);
}

.ff-dashboard-label{
  display:block;
  margin-bottom:.5rem;
  color:var(--ff-blue-dark);
  font-size:.76rem;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.07em;
}

.ff-board-editor h3{
  margin:1rem 0 .45rem;
  font-size:1rem;
  color:var(--ff-navy);
  font-weight:950;
}

.ff-input-preview{
  min-height:52px;
  padding:.8rem .9rem;
  display:flex;
  align-items:center;
  border:2px solid rgba(11,92,255,.18);
  border-radius:16px;
  background:#ffffff;
  color:var(--ff-text-soft);
  font-weight:700;
}

.ff-input-preview.small{
  min-height:44px;
}

.ff-board-editor button{
  margin-top:1.2rem;
  min-height:46px;
  padding:.75rem 1rem;
  border:0;
  border-radius:999px;
  background:var(--ff-blue);
  color:#ffffff;
  font-weight:950;
}

/* CTA */

.ff-final-cta{
  padding-top:2rem;
}

.ff-cta-box{
  max-width:1040px;
  margin:0 auto;
  padding:clamp(2rem,5vw,4rem);
  text-align:center;
  background:
    radial-gradient(circle at 18% 0%,rgba(77,156,255,.22),transparent 36%),
    #ffffff;
  border:1px solid rgba(11,92,255,.16);
  border-radius:32px;
  box-shadow:var(--ff-shadow-strong);
}

.ff-cta-box .ff-section-label{
  margin-left:auto;
  margin-right:auto;
}

/* FOOTER */

.ff-footer{
  padding:5.6rem 0 1.15rem;
  background:linear-gradient(135deg,#061a3a 0%,#0a3c91 100%);
  color:#ffffff;
}

.ff-footer-top{
  display:grid;
  grid-template-columns:220px 280px 1fr;
  gap:4.2rem;
  align-items:start;
}

.ff-footer-logo-wrap{
  display:block;
  width:220px;
}

.ff-footer-logo{
  width:220px;
  height:auto;
  display:block;
  filter:brightness(0) invert(1);
}

.ff-footer-brandtext h3{
  margin:0 0 .75rem;
  color:#ffffff;
  font-size:1.35rem;
  line-height:1.12;
  font-weight:950;
  letter-spacing:-.045em;
}

.ff-footer-brandtext p{
  margin:0;
  max-width:270px;
  color:rgba(255,255,255,.84);
  font-size:1rem;
  line-height:1.58;
  font-weight:500;
}

.ff-footer-nav{
  display:grid;
  grid-template-columns:repeat(4,minmax(130px,1fr));
  gap:2.6rem;
}

.ff-footer-group{
  display:grid;
  align-content:start;
  gap:.9rem;
}

.ff-footer-group span{
  margin-bottom:.25rem;
  color:rgba(255,255,255,.82);
  font-size:.86rem;
  font-weight:950;
  letter-spacing:.16em;
}

.ff-footer-group a{
  color:rgba(255,255,255,.78);
  font-size:1rem;
  line-height:1.25;
  font-weight:800;
  transition:
    color .2s ease,
    transform .2s ease;
}

.ff-footer-group a:hover{
  color:#ffffff;
  transform:translateX(2px);
}

.ff-footer-bottom{
  margin-top:4.4rem;
  padding-top:1.65rem;
  border-top:1px solid rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  color:rgba(255,255,255,.82);
  font-size:.92rem;
}

.ff-footer-bottom strong{
  color:#ffffff;
  font-weight:950;
}

/* REVEAL */

.will-reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity 520ms ease, transform 520ms ease;
}

.will-reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */

@media (max-width:1199.98px){
  .ff-footer-top{
    grid-template-columns:220px 1fr;
    gap:3rem;
  }

  .ff-footer-nav{
    grid-column:1 / -1;
    grid-template-columns:repeat(4,1fr);
  }
}

@media (max-width:991.98px){
  :root{
    --ff-topbar-h:76px;
    --ff-productnav-h:52px;
  }

  .ff-top-actions{
    display:none;
  }

  .ff-mobile-actions{
    display:flex;
  }

  .ff-topbar-inner{
    position:relative;
    justify-content:center;
  }

  .ff-brand{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    margin-left:0;
    max-width:none;
  }

  .ff-brand-logo{
    width:138px;
    margin:0 auto;
  }

  .ff-mobile-actions{
    position:absolute;
    right:.9rem;
    top:50%;
    transform:translateY(-50%);
  }

  .ff-menu-panel{
    position:fixed;
    top:calc(var(--ff-header-h) - var(--ff-productnav-h) + 10px);
    left:1rem;
    right:1rem;
    min-width:0;
    max-height:calc(100vh - var(--ff-header-h) - 20px);
    overflow-y:auto;
  }

  .ff-productnav-inner{
    padding-left:.85rem;
    padding-right:.85rem;
  }

  main{
    padding-top:var(--ff-header-h);
  }

  .ff-hero{
    height:auto;
    min-height:auto;
    max-height:none;
    padding:2.6rem 0 3.2rem;
  }

  .ff-hero-grid,
  .ff-system-grid{
    grid-template-columns:1fr;
    height:auto;
  }

  .ff-hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .ff-btn{
    width:100%;
  }

  .ff-domain-form{
    grid-template-columns:1fr;
  }

  .ff-proof-strip{
    align-items:flex-start;
    flex-direction:column;
  }

  .ff-proof-points{
    justify-content:flex-start;
  }

  .ff-board-body{
    grid-template-columns:1fr;
  }

  .ff-board-sidebar{
    display:none;
  }
}

@media (max-width:767.98px){
  input,
  textarea,
  select,
  button{
    font-size:16px;
  }

  .ff-section{
    padding:3.8rem 0;
  }

  #heroHeadline{
    font-size:clamp(2rem,10vw,2.85rem);
  }

  .ff-hero-lead{
    font-size:1rem;
  }

  .ff-domain-panel{
    padding:1.3rem;
    border-radius:24px;
  }

  .ff-proof-points{
    width:100%;
    display:grid;
    grid-template-columns:1fr;
  }

  .ff-proof-points span{
    width:100%;
    justify-content:center;
    text-align:center;
  }

  .ff-process-item{
    grid-template-columns:1fr;
  }

  .ff-footer{
    padding:4rem 0 1.2rem;
  }

  .ff-footer-top{
    grid-template-columns:1fr;
    gap:2rem;
  }

  .ff-footer-logo-wrap,
  .ff-footer-logo{
    width:190px;
  }

  .ff-footer-brandtext p{
    max-width:100%;
  }

  .ff-footer-nav{
    grid-template-columns:1fr 1fr;
    gap:2rem 1.4rem;
  }

  .ff-footer-bottom{
    margin-top:3rem;
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width:480px){
  .ff-mobile-contact{
    display:none;
  }

  .ff-brand-logo{
    width:126px;
  }

  .ff-footer-nav{
    grid-template-columns:1fr;
  }

  .ff-footer-logo-wrap,
  .ff-footer-logo{
    width:175px;
  }
}