:root {
  --brand: #0d3f90;
  --brand-2: #245fb9;
  --brand-dark: #082a63;
  --ink: #111827;
  --muted: #5b6574;
  --line: #d8e1eb;
  --panel: #f5f8fc;
  --panel-blue: #eef4ff;
  --white: #ffffff;
  --success: #18794e;
  --warning: #d6a23e;
  --radius: 18px;
  --shadow: 0 18px 48px rgba(14, 36, 68, .11);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
svg { display: block; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: .8rem 1rem;
  background: var(--white);
  color: var(--brand-dark);
}
.skip-link:focus { left: 1rem; top: 1rem; }

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(217, 224, 234, .84);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 365px;
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .93rem;
  font-weight: 700;
  color: #344054;
  white-space: nowrap;
}

.nav-links a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding: 8px 0 6px;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand);
  border-color: var(--brand);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 9%, rgba(54, 110, 193, .15), transparent 34%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 86%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .33;
  background-image:
    linear-gradient(rgba(13, 63, 144, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 63, 144, .05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 75%);
}



.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(13,63,144,.22) 18%, rgba(13,63,144,.62) 50%, rgba(13,63,144,.22) 82%, transparent 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-block: 17px 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid #c9d8ef;
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: var(--brand-dark);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  width: fit-content;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(24, 121, 78, .12);
}

h1, h2, h3 { line-height: 1.12; letter-spacing: -.025em; }
h1 {
  margin: 14px 0 13px;
  max-width: 900px;
  font-size: clamp(2.5rem, 4.6vw, 4.35rem);
  font-weight: 850;
}

.hero-copy > p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}
.hero-copy > p + p {
  margin-top: 10px;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 11px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button.primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(13, 63, 144, .23);
}
.button.secondary {
  border: 1px solid #c5ceda;
  background: rgba(255, 255, 255, .78);
  color: #243142;
}
.button:hover { transform: translateY(-2px); }
.button.primary:hover { background: var(--brand-dark); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 19px;
  color: #3f4b5c;
  font-size: .91rem;
  font-weight: 700;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-row svg { width: 18px; height: 18px; color: var(--success); }

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 4px;
}

.hero-card {
  padding: 20px 19px 19px;
  border: 1px solid #cfdbea;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,255,.96));
  box-shadow: 0 12px 30px rgba(18, 41, 72, .065);
}

.hero-card .mini-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--panel-blue);
  color: var(--brand);
  margin-bottom: 14px;
}
.hero-card .mini-icon svg { width: 22px; height: 22px; }
.hero-card h3 {
  margin: 0 0 7px;
  font-size: 1.02rem;
  color: #17243a;
}
.hero-card p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.55;
}

.proof-strip {
  background: var(--brand-dark);
  color: var(--white);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.15);
}
.proof-item {
  background: var(--brand-dark);
  padding: 22px 22px 24px;
}
.proof-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.22rem;
  letter-spacing: -.02em;
}
.proof-item span { color: #c8d7f0; font-size: .9rem; }

section { padding-block: 64px; }
.section-kicker {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: .79rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-title {
  max-width: 850px;
  margin: 0;
  font-size: clamp(1.95rem, 3.2vw, 3rem);
  font-weight: 830;
}
.section-lead {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(18, 41, 72, .05);
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--panel-blue);
  color: var(--brand);
}
.feature-icon svg { width: 25px; height: 25px; }
.feature-card h3 { margin: 18px 0 10px; font-size: 1.18rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .96rem; }

.how {
  background: var(--panel);
  border-block: 1px solid var(--line);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
  counter-reset: steps;
}
.step {
  position: relative;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.step::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-weight: 850;
  font-size: .82rem;
}
.step h3 { margin: 0 0 9px; font-size: 1.1rem; }
.step p { margin: 0; color: var(--muted); font-size: .92rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 52px;
}



.platform-section {
  background: #0c1525;
  color: var(--white);
  border-block: 1px solid #23334d;
}
.platform-section .section-kicker { color: #8fb7f1; }
.platform-section .section-lead { color: #b9c5d7; }
.platform-showcase {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
  align-items: center;
}
.screen-frame {
  overflow: hidden;
  border: 1px solid #33445f;
  border-radius: 17px;
  background: #111b2b;
  box-shadow: 0 28px 65px rgba(0,0,0,.32);
}
.screen-frame-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 15px;
  border-bottom: 1px solid #314159;
  background: linear-gradient(180deg, #18253a, #111b2b);
  color: #b8c6d8;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .02em;
}
.screen-frame-dots { display: flex; gap: 6px; }
.screen-frame-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60718a;
}
.screen-frame img {
  width: 100%;
  aspect-ratio: 788 / 658;
  object-fit: cover;
  object-position: center;
  background: #eef1f4;
}
.screen-caption {
  margin: 13px 2px 0;
  color: #8494aa;
  font-size: .82rem;
}
.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 24px;
}
.capability-item {
  padding: 16px 16px 15px;
  border: 1px solid #2b3d59;
  border-radius: 13px;
  background: rgba(255,255,255,.035);
}
.capability-label {
  display: block;
  margin-bottom: 5px;
  color: #f4f7fc;
  font-weight: 820;
  font-size: .96rem;
}
.capability-item p {
  margin: 0;
  color: #aab9cd;
  font-size: .88rem;
  line-height: 1.52;
}

.ransomware-graphic {
  min-height: 380px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 38%, rgba(36, 95, 185, .16), transparent 38%),
    linear-gradient(145deg, #f8fbff, #edf3fb);
  overflow: hidden;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 12px;
  align-items: start;
  color: #344054;
}
.check-list svg { width: 22px; height: 22px; color: var(--success); margin-top: 2px; }

.key-section {
  background: #0b1322;
  color: var(--white);
}
.key-section .section-kicker { color: #8fb7f1; }
.key-section .section-lead { color: #b9c5d7; }
.key-panel {
  padding: 38px 40px;
  border: 1px solid #2b3950;
  border-radius: 24px;
  background: linear-gradient(145deg, #101c30, #0a1220);
  box-shadow: 0 28px 65px rgba(0, 0, 0, .28);
}
.key-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 3px solid var(--warning);
  background: rgba(227, 166, 61, .09);
  color: #e9d5b1;
  font-size: .93rem;
  max-width: 940px;
}

.location-panel {
  padding: 34px 36px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 34px rgba(18, 41, 72, .045);
}
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 10px 13px;
  border-radius: 10px;
  background: var(--panel-blue);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: .92rem;
}

.faq {
  background: var(--panel);
  border-top: 1px solid var(--line);
}
.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 52px;
  align-items: start;
}
.faq-list { display: grid; gap: 12px; }
details {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  padding: 0 18px;
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 34px 18px 0;
  font-weight: 800;
  position: relative;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 1.4rem;
}
details[open] summary::after { content: "–"; }
details p { margin: 0 0 19px; color: var(--muted); }

.site-footer {
  padding-block: 32px;
  background: #080d16;
  color: #b9c3d1;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: center;
}
.footer-mark { width: 62px; opacity: .94; }
.footer-name { color: var(--white); font-weight: 820; }
.footer-copy { font-size: .85rem; color: #8f9bad; text-align: right; }

.reveal { opacity: 0; transform: translateY(12px); animation: reveal .7s ease forwards; }
.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .16s; }
.delay-3 { animation-delay: .24s; }
@keyframes reveal { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition: none !important; }
}

@media (max-width: 980px) {
  .nav { min-height: 72px; }
  .brand img { width: 290px; }
  .nav-links { display: none; }
  .hero-highlights,
  .proof-grid,
  .feature-grid,
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split,
  .faq-grid,
  .platform-showcase { grid-template-columns: 1fr; gap: 38px; }
  .ransomware-graphic { order: 2; }
  .platform-showcase > div:first-child { order: 2; }
}

@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .site-header { position: static; }
  .brand img { width: 255px; }
  .hero-grid { padding-block: 27px 29px; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  .hero-actions { align-items: stretch; }
  .button { width: 100%; }
  .hero-highlights,
  .proof-grid,
  .feature-grid,
  .steps { grid-template-columns: 1fr; }
  section { padding-block: 50px; }
  .feature-card { min-height: auto; }
  .ransomware-graphic { min-height: 300px; }
  .capability-grid { grid-template-columns: 1fr; }
  .key-panel,
  .location-panel { padding: 24px; }
  .footer-grid { align-items: flex-start; }
  .footer-copy { text-align: left; }
}
