:root {
  --bg: #07090d;
  --bg-2: #0d1118;
  --panel: rgba(255,255,255,0.065);
  --panel-strong: rgba(255,255,255,0.105);
  --text: #f5f7fb;
  --muted: #aab3c2;
  --muted-2: #7f8a9c;
  --red: #c5162e;
  --red-2: #ff304f;
  --steel: #9aa7b7;
  --line: rgba(255,255,255,0.14);
  --shadow: 0 30px 80px rgba(0,0,0,0.45);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}


/* Bank Gothic must be uploaded as a licensed webfont. */
@font-face {
  font-family: "Bank Gothic";
  src: url("../../fonts/bankgothic-lt-bt-light-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 7, 11, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-name {
  display: inline-block;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  line-height: .8;
  font-family: "Bank Gothic", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  color: #e7e7e9;
}

.brand-name-top {
  display: block;
  align-items: baseline;
  gap: 0.28em;
  margin-left: -3px;
  font-family:"Bank Gothic", sans-serif;
  font-size:2.9rem;
  font-weight:700;      /* <-- much bolder */
  line-height:0.9;
  letter-spacing:.03em;
  white-space: nowrap;
}

.brand-name-top .brand-red {
  color: #ef171d;
}

.brand-name-bottom {
  margin-top: -2px;
  display: block;
  width: 100%;
  text-align: justify;
  text-align-last: justify;
  font-size: clamp(0.92rem, 1.25vw, 1.36rem);
  letter-spacing: 0.31em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 2.3vw, 34px);
  color: var(--muted);
  font-size: 15px;
}

.nav-links a {
  position: relative;
  padding: 12px 0;
  transition: color 0.18s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--red-2);
  transition: right 0.18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  right: 0;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(197,22,46,0.20), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(110,128,160,0.16), transparent 32%),
    linear-gradient(180deg, #05070b 0%, #0b0f16 45%, #06080c 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 72%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.045) 50%, transparent 100%);
  opacity: .25;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

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

.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: white;
  box-shadow: 0 20px 45px rgba(197,22,46,0.35);
}

.btn-dark {
  background: rgba(255,255,255,0.075);
  border-color: rgba(255,255,255,0.15);
  color: var(--text);
}

.hero {
  position: relative;
  padding: 84px 0 62px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: #dfe5ef;
  background: rgba(255,255,255,0.055);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 0 0 rgba(255,48,79,0.7);
  animation: pulse 1.9s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,48,79,0.58); }
  70% { box-shadow: 0 0 0 12px rgba(255,48,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,48,79,0); }
}

h1 {
  margin-top: 24px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: .93;
  letter-spacing: -0.07em;
  max-width: 860px;
}

h1 span {
  color: transparent;
  background: linear-gradient(100deg, #ffffff 0%, #d2d9e6 45%, #ff304f 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  max-width: 720px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-chip {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
  border-radius: 999px;
  color: #dbe2ed;
  font-size: 13px;
  font-weight: 750;
}

.hero-card {
  position: relative;
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    radial-gradient(circle at 24% 22%, rgba(197,22,46,0.42), transparent 28%),
    radial-gradient(circle at 78% 66%, rgba(128,150,190,0.22), transparent 32%),
    #0c1119;
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, transparent, rgba(255,255,255,0.14), transparent, rgba(197,22,46,0.18), transparent);
  animation: rotate 16s linear infinite;
  opacity: .35;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.system-panel {
  position: absolute;
  inset: 24px;
  border-radius: 26px;
  background: rgba(5,8,13,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.status small {
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
}

.status h2 {
  margin-top: 8px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.secure-badge {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(197,22,46,0.16);
  border: 1px solid rgba(255,48,79,0.35);
  color: #ffdce2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.radar {
  position: relative;
  width: min(100%, 360px);
  height:150px;
  aspect-ratio: 1;
  margin: 26px auto 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle, rgba(255,48,79,0.12) 0 2px, transparent 3px),
    repeating-radial-gradient(circle, rgba(255,255,255,0.10) 0 1px, transparent 1px 58px),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  overflow: hidden;
}

.radar::before {
  content: "";
  position: absolute;
  inset: -120px;
  background: conic-gradient(from 0deg, rgba(255,48,79,0.55), transparent 42%);
  transform-origin: center;
  animation: sweep 4s linear infinite reverse;
  opacity: .55;
}

.radar::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 28px;
  display: block;
  background:
    rgb(0, 0, 0)
    url("../../images/logo.jpg")
    center / 70px 70px
    no-repeat;


 /* place-items: center;
  background: rgba(7,9,13,0.86);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 20px 50px rgba(0,0,0,0.42);
  font-size: 28px;
  font-family: "EB Garamond", serif;
  color: #ff0022;
  font-weight: 950;*/
  
}

@keyframes sweep {
  to { transform: rotate(360deg); }
}

.capabilities-stack {
  display: grid;
  gap: 10px;
}

.cap-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  color: #dfe5ef;
  font-size: 14px;
  font-weight: 750;
}

.cap-line span:last-child {
  color: var(--red-2);
  font-weight: 950;
  letter-spacing: .08em;
  font-size: 12px;
}

section {
  padding: 68px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-kicker {
  color: var(--red-2);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.proof-card,
.contact-card {
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(145deg, rgba(255,255,255,0.078), rgba(255,255,255,0.035));
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.service-card:hover,
.proof-card:hover {
  border-color: rgba(255,48,79,0.35);
  background: linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.04));
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(197,22,46,0.14);
  border: 1px solid rgba(255,48,79,0.25);
  color: #ffdce2;
  font-size: 22px;
}

.service-card h3,
.proof-card h3,
.contact-card h3 {
  font-size: 22px;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.service-card p,
.proof-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 15.5px;
}

.list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  color: #dbe2ed;
  font-size: 14px;
}

.list div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list div::before {
  content: "■";
  color: var(--red-2);
  font-size: 9px;
  line-height: 1.9;
}

.split {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 22px;
  align-items: stretch;
}

.big-panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(197,22,46,0.20), rgba(255,255,255,0.035)),
    #0b1018;
  box-shadow: var(--shadow);
}

.big-panel::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -160px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 0 0 44px rgba(255,255,255,0.025), inset 0 0 0 88px rgba(255,255,255,0.025);
}

.big-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.big-panel p {
  position: relative;
  z-index: 1;
  color: #d6deea;
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.65;
  max-width: 620px;
}

.metrics {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(0,0,0,0.20);
}

.metric strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry {
  flex: 1 1 220px;
  min-height: 112px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}

.industry strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.industry span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cta {
  padding: 76px 0 90px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 34px;
  padding: 40px;
  background:
    radial-gradient(circle at 14% 30%, rgba(255,48,79,0.30), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 28px;
  align-items: center;
}

.cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.045), transparent);
  transform: translateX(-100%);
  animation: sheen 7s ease-in-out infinite;
}

@keyframes sheen {
  0%, 55% { transform: translateX(-100%); }
  80%, 100% { transform: translateX(100%); }
}

.cta-content,
.contact-card {
  position: relative;
  z-index: 1;
}

.cta p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.contact-card {
  background: rgba(5,8,13,0.72);
  backdrop-filter: blur(14px);
}

.contact-lines {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  font-size: 15px;
  color: #dbe2ed;
}

.contact-lines a {
  color: white;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255,48,79,0.55);
  text-underline-offset: 4px;
}

footer {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 28px 0;
  color: var(--muted-2);
  font-size: 13px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 520px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    min-height: 96px;
  }

  .brand-logo {
    width: 72px;
    height: 72px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 54px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card {
    min-height: 610px;
  }

  .system-panel {
    inset: 14px;
    padding: 18px;
  }

  .panel-top {
    flex-direction: column;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 26px;
  }

  .nav {
    min-height: 82px;
  }

  .brand {
    gap: 13px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-name-top {
    font-size: clamp(1.35rem, 6.2vw, 1.9rem);
    letter-spacing: 0.09em;
  }

  .brand-name-bottom {
    margin-top: 7px;
    font-size: clamp(0.66rem, 3vw, 0.92rem);
    letter-spacing: 0.24em;
  }
}
