.ft-scope{
  --ink:#e8eef6;
  --muted:#a6b4c6;
  --acc:#0090FF;
  --ft-gap:15px;
  --ft-side:10px;

  position:relative;
  width:100%;
  margin-top:var(--ft-gap);
  padding:0 var(--ft-side) 0;
  box-sizing:border-box;
}

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

.ft-panel{
  background:#0d141d;
  border:1px solid rgba(255,255,255,.05);
  border-radius:14px;
  width:100%;
  max-width:100%;
  margin:0 auto;
  overflow:hidden;
}

.ft-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  align-items:stretch;
  gap:10px;
  padding:12px 14px 12px;
}

.ft-card{
  height:100%;
  background:#0b1117;
  border:1px solid rgba(255,255,255,.05);
  border-radius:12px;
  padding:14px 12px;
  transition:background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.ft-contact{
  display:grid;
  gap:8px;
}

.ft-contactrow{
  display:grid;
  grid-template-columns:18px auto 1fr;
  align-items:center;
  gap:10px;
  padding:10px 10px;
  border-radius:10px;
  text-decoration:none;
  color:var(--ink);
  border:1px solid rgba(255,255,255,.05);
  background:transparent;
  transition:background .15s ease, border-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}

.ft-contactrow:hover{
  background:rgba(0,144,255,.06);
  border-color:rgba(0,144,255,.35);
}

.ft-ico{
  display:inline-flex;
  color:var(--acc);
}

.ft-contactlabel{
  color:rgba(232,238,246,.84);
  font:700 12px/1.25 ui-sans-serif,system-ui,Inter;
  letter-spacing:.03em;
  text-transform:uppercase;
  white-space:nowrap;
}

.ft-contactlabel::after{
  content: ':';
  margin-left:2px;
}

.ft-contactval{
  color:var(--muted);
  font:500 13px/1.35 ui-sans-serif,system-ui,Inter;
  text-align:right;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.ft-social{
  margin-top:12px;
  display:flex;
  width:100%;
  justify-content:space-between;
}

.ft-sociallink{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:inherit;
  border:1px solid #152130;
  color:var(--muted);
  transition:background .15s ease, border-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}

.ft-sociallink:hover{
  border-color:rgba(0,144,255,.35);
  color:var(--acc);
}

.ft-sociallink svg{ width:20px; height:20px; display:block; }

.ft-company{
  margin:0 0 12px 0;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.ft-companyline{
  color:var(--muted);
  font:500 14px/1.45 ui-sans-serif,system-ui,Inter;
  overflow-wrap:anywhere;
}

.ft-companyline--strong{
  color:var(--ink);
  font:500 15px/1.35 ui-sans-serif,system-ui,Inter;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.ft-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}

.ft-link{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 10px;
  border-radius:10px;
  text-decoration:none;
  color:var(--muted);
  font:500 14px/1.35 ui-sans-serif,system-ui,Inter;
  text-transform:uppercase;
  border:1px solid rgba(255,255,255,.05);
  background:transparent;
  transition:background .15s ease, border-color .15s ease, color .15s ease;
  overflow-wrap:anywhere;
}

.ft-link:hover{
  background:rgba(0,144,255,.06);
  border-color:rgba(0,144,255,.35);
  color:var(--ink);
}

.ft-link:focus{
  outline:2px solid rgba(0,144,255,.35);
  outline-offset:2px;
}

.ft-bottom{
  padding:12px 14px 12px;
  border-top:1px solid rgba(255,255,255,.06);
  display:flex;
  align-items:center;
  justify-content:center;
}

.ft-copy{
  color:rgba(232,238,246,.68);
  font:500 13px/1.4 ui-sans-serif,system-ui,Inter;
  text-align:center;
  overflow-wrap:anywhere;
}

@media (max-width:1024px){
  .ft-scope{ --ft-side:0px; }
  .ft-grid{ grid-template-columns:1fr; }
}

@media (max-width:520px){
  .ft-grid{ padding:12px 12px 12px; }
  .ft-bottom{ padding:12px 12px 12px; }
}
