@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 300;
  src: url("assets/fonts/dm-mono-300.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/dm-mono-400.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/dm-mono-500.ttf") format("truetype");
  font-display: swap;
}

:root {
  --red: #e11d2e;
  --red-bright: #ff2b3b;
  --black: #050607;
  --panel: #0d0d0f;
  --panel-2: #111317;
  --line: #2b2d31;
  --line-red: rgba(225, 29, 46, 0.62);
  --text: #f5f5f7;
  --muted: #b9bbc2;
  --dim: #737882;
  --radius: 6px;
  --max: 1320px;
  --shell: min(100%, calc(var(--max) + 120px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.07) 0.6px, transparent 0.9px) 0 0 / 6px 6px,
    var(--black);
  color: var(--text);
  font-family: "DM Mono", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  width: var(--shell);
  transform: translateX(-50%);
  z-index: -2;
  background:
    radial-gradient(circle at 15% 15%, rgba(225, 29, 46, 0.09), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #050607;
  background-size: auto, 64px 64px, 64px 64px, auto;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  width: var(--shell);
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0.6px, transparent 0.8px);
  background-size: 5px 5px;
  mix-blend-mode: screen;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 78px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
}

.logo-gradient {
  position: relative;
  display: block;
  width: 214px;
  height: 47px;
}

.logo-gradient::before,
.logo-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask: url("undetected-logo2.png") center / contain no-repeat;
  mask: url("undetected-logo2.png") center / contain no-repeat;
}

.logo-gradient::before {
  background: var(--red);
  clip-path: inset(0 74.8% 0 0);
}

.logo-gradient::after {
  background: #fff;
  clip-path: inset(0 0 0 25.8%);
}

.site-nav {
  display: flex;
  justify-self: center;
  justify-content: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--muted);
  padding: 29px 0 24px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  border-color: var(--red);
}

.header-cta,
.btn,
.text-link,
.filter-button {
  min-height: 44px;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
}

.header-cta {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--red);
  color: var(--red-bright);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  min-height: calc(100svh - 78px);
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 0;
  background: linear-gradient(115deg, rgba(7, 8, 10, 0.98), rgba(8, 9, 11, 0.78));
}

.hero::before,
.hero::after,
.page-hero::before,
.contact-section::before {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  border-color: var(--red);
  border-style: solid;
  pointer-events: none;
}

.hero::before,
.page-hero::before {
  top: 24px;
  left: 24px;
  border-width: 1px 0 0 1px;
}

.hero::after {
  right: 24px;
  bottom: 24px;
  border-width: 0 1px 1px 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 88%, transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 74px 0 80px 92px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(48px, 6.3vw, 92px);
  line-height: 1.06;
  font-weight: 500;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 5vw, 74px);
}

.hero h1::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 16px;
  background: var(--red);
  box-shadow: 18px 0 0 rgba(225, 29, 46, 0.45);
}

.hero h1 span {
  display: block;
}

.hero h1 em {
  color: var(--red-bright);
  font-style: normal;
}

.hero p,
.page-hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 178px;
  padding: 0 22px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.btn-primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: #ff2235;
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red-bright);
}

.threat-globe {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(60vw, 820px);
  aspect-ratio: 1400 / 860;
  margin-right: -130px;
  overflow: hidden;
  background:
    radial-gradient(circle at 43% 38%, rgba(225, 29, 46, 0.16), transparent 34%),
    url("/assets/hero/threat-globe-home.png") center / cover no-repeat;
  filter: saturate(1.06) contrast(1.04) brightness(0.94);
  mix-blend-mode: screen;
  opacity: 0.9;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 16%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 16%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
}

.threat-globe::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.58;
  background:
    radial-gradient(circle at 16% 70%, rgba(255, 255, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 30% 32%, rgba(225, 29, 46, 1) 0 1.6px, transparent 3px),
    radial-gradient(circle at 45% 58%, rgba(255, 43, 59, 0.95) 0 1.5px, transparent 3px),
    radial-gradient(circle at 64% 42%, rgba(255, 255, 255, 0.85) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 76%, rgba(225, 29, 46, 1) 0 1.8px, transparent 3px),
    radial-gradient(circle at 88% 18%, rgba(255, 43, 59, 0.95) 0 1.4px, transparent 3px);
  background-size: 320px 190px, 420px 260px, 360px 220px, 460px 280px, 390px 250px, 520px 320px;
  mix-blend-mode: screen;
  pointer-events: none;
}

.threat-globe::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 31%, rgba(255, 255, 255, 0.12), transparent 10%),
    radial-gradient(circle at 54% 34%, rgba(225, 29, 46, 0.22), transparent 19%),
    linear-gradient(180deg, transparent 60%, rgba(5, 6, 7, 0.2));
  mix-blend-mode: screen;
  pointer-events: none;
}

.scan-ring,
.globe-arc,
.globe-line,
.globe-ping,
.globe-sweep,
.target-mark {
  display: none;
}

.scan-ring {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(225, 29, 46, 0.42);
  border-radius: 50%;
}

.ring-two {
  inset: 29%;
  border-color: rgba(255, 255, 255, 0.2);
}

.globe-arc,
.globe-ping,
.globe-sweep {
  position: absolute;
  pointer-events: none;
}

.globe-arc {
  border: 1px solid rgba(225, 29, 46, 0.36);
  border-radius: 50%;
  transform: rotate(var(--arc-rotate));
}

.a1 {
  inset: 10% 24%;
  --arc-rotate: 28deg;
}

.a2 {
  inset: 22% 13%;
  --arc-rotate: -32deg;
}

.a3 {
  inset: 30% 21%;
  border-color: rgba(255, 255, 255, 0.14);
  --arc-rotate: 72deg;
}

.globe-sweep {
  inset: 8%;
  border-radius: 50%;
  background: conic-gradient(from 238deg, transparent 0 65deg, rgba(225, 29, 46, 0.26) 72deg, transparent 86deg 360deg);
  mix-blend-mode: screen;
}

.globe-ping {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(225, 29, 46, 0.72);
  border-radius: 50%;
  box-shadow: inset 0 0 16px rgba(225, 29, 46, 0.24), 0 0 20px rgba(225, 29, 46, 0.18);
}

.p1 { top: 26%; left: 39%; }
.p2 { top: 43%; left: 68%; }
.p3 { top: 60%; left: 44%; }

.globe-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red), 0 0 28px rgba(225, 29, 46, 0.7);
  mix-blend-mode: screen;
  opacity: 0.86;
}

.d1 { top: 17%; left: 33%; }
.d2 { top: 34%; left: 49%; }
.d3 { top: 51%; left: 66%; }
.d4 { top: 67%; left: 42%; }
.d5 { top: 24%; left: 58%; }
.d6 { top: 57%; left: 81%; }
.d7 { top: 78%; left: 55%; }
.d8 { top: 43%; left: 24%; }

.globe-line {
  position: absolute;
  height: 1px;
  background: rgba(225, 29, 46, 0.62);
  transform-origin: left center;
}

.l1 { top: 32%; left: 41%; width: 190px; transform: rotate(20deg); }
.l2 { top: 51%; left: 45%; width: 160px; transform: rotate(-18deg); }
.l3 { top: 62%; left: 44%; width: 120px; transform: rotate(-42deg); }
.l4 { top: 27%; left: 55%; width: 180px; transform: rotate(37deg); opacity: 0.6; }
.l5 { top: 45%; left: 34%; width: 255px; transform: rotate(12deg); opacity: 0.5; }
.l6 { top: 72%; left: 48%; width: 145px; transform: rotate(-28deg); opacity: 0.48; }

.target-mark,
.section-target {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 1px solid var(--red);
  border-radius: 50%;
}

.target-mark {
  position: absolute;
  top: 48%;
  left: 53%;
}

.target-mark::before,
.target-mark::after,
.section-target::before,
.section-target::after {
  content: "";
  position: absolute;
  background: var(--red);
}

.target-mark::before,
.section-target::before {
  top: 50%;
  left: -10px;
  right: -10px;
  height: 1px;
}

.target-mark::after,
.section-target::after {
  left: 50%;
  top: -10px;
  bottom: -10px;
  width: 1px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 76px 74px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.78);
}

.section-head {
  margin-bottom: 36px;
}

.section-head p,
.faq-title p,
.contact-copy p {
  margin: 12px 0 4px;
  color: var(--red-bright);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.section h2,
.contact-copy h2,
.faq-title h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
}

.accent {
  color: var(--red);
}

.icon-grid {
  display: grid;
}

.services-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.apart-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 270px;
  padding: 24px 22px 20px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.icon-card:last-child {
  border-right: 1px solid var(--line);
}

.icon-card h3 {
  margin: 18px auto 12px;
  max-width: 210px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  text-transform: uppercase;
}

.icon-card p {
  margin: 0 auto;
  max-width: 230px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.security-icon {
  display: block;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  color: #fff;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.icon-cloud-lock { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M28 58H19a14 14 0 0 1-1-28 20 20 0 0 1 38 2 13 13 0 0 1 3 26h-7'/%3E%3Crect x='30' y='39' width='20' height='20' rx='2'/%3E%3Cpath d='M35 39v-6a5 5 0 0 1 10 0v6M40 48v4'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-web { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='14' y='18' width='52' height='44' rx='3'/%3E%3Cpath d='M14 30h52M22 24h1M29 24h1M36 24h1'/%3E%3Ccircle cx='40' cy='46' r='13'/%3E%3Cpath d='M27 46h26M40 33c5 7 5 19 0 26M40 33c-5 7-5 19 0 26'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-mobile { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='25' y='10' width='30' height='60' rx='4'/%3E%3Cpath d='M36 17h8M37 62h6'/%3E%3Crect x='32' y='34' width='16' height='16' rx='2'/%3E%3Cpath d='M36 34v-4a4 4 0 0 1 8 0v4M40 41v4'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-redteam { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round'%3E%3Ccircle cx='40' cy='40' r='22'/%3E%3Ccircle cx='40' cy='40' r='9'/%3E%3Cpath d='M40 8v13M40 59v13M8 40h13M59 40h13'/%3E%3Cpath d='M53 27l12-12M27 53 15 65'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-phish { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='13' y='28' width='54' height='34' rx='2'/%3E%3Cpath d='M14 29l26 21 26-21M14 62l20-17M66 62L46 45'/%3E%3Cpath d='M45 43c0-8 8-10 8-18 0-6-5-10-11-10'/%3E%3Cpath d='M42 15c11 0 18 8 17 17-1 10-11 14-24 13'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-platform { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='24' y='24' width='32' height='32' rx='2'/%3E%3Cpath d='M12 24h12M12 36h12M12 48h12M56 24h12M56 36h12M56 48h12M24 12v12M36 12v12M48 12v12M24 56v12M36 56v12M48 56v12'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-record { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='35' cy='45' r='18'/%3E%3Ccircle cx='35' cy='45' r='7'/%3E%3Cpath d='M35 14v13M35 63v5M14 45h13M53 45h13M49 18h19v19M48 38l20-20'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-client { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='40' cy='32' r='12'/%3E%3Cpath d='M20 64c5-17 35-17 40 0'/%3E%3Cpath d='M14 25V14h11M55 14h11v11M14 55v11h11M66 55v11H55'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-threats { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round'%3E%3Ccircle cx='40' cy='40' r='25'/%3E%3Ccircle cx='40' cy='40' r='11'/%3E%3Cpath d='M40 6v16M40 58v16M6 40h16M58 40h16'/%3E%3Cpath d='M40 40h18'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-remediation { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M40 10 62 19v17c0 15-8 26-22 34-14-8-22-19-22-34V19z'/%3E%3Cpath d='m48 29 4 4-19 19-7 2 2-7zM42 35l4 4'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-accessible { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='40' cy='28' r='10'/%3E%3Cpath d='M22 66c2-13 34-13 36 0M18 35a10 10 0 1 1 12-16M62 35a10 10 0 1 0-12-16M7 65c2-9 20-10 26-4M73 65c-2-9-20-10-26-4'/%3E%3C/g%3E%3C/svg%3E"); }

.icon-card:hover .security-icon {
  color: var(--red-bright);
}

.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-row .section-head {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--red-bright);
  white-space: nowrap;
}

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

.post-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.post-art {
  height: 140px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 55%, rgba(225, 29, 46, 0.36), transparent 26%),
    linear-gradient(135deg, rgba(225, 29, 46, 0.28), transparent 45%),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    #090a0d;
  background-size: auto, auto, 20px 20px, 20px 20px, auto;
}

.post-card:nth-child(2) .post-art {
  background:
    radial-gradient(circle at 50% 95%, rgba(225, 29, 46, 0.5), transparent 34%),
    repeating-linear-gradient(25deg, rgba(225, 29, 46, 0.2) 0 1px, transparent 1px 18px),
    #090a0d;
}

.post-card:nth-child(3) .post-art {
  background:
    radial-gradient(circle at 44% 52%, rgba(225, 29, 46, 0.55), transparent 18%),
    linear-gradient(145deg, transparent 42%, rgba(225, 29, 46, 0.35) 43% 45%, transparent 46%),
    #090a0d;
}

.post-body {
  min-width: 0;
  padding: 20px;
}

.post-meta {
  margin: 0 0 8px;
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.post-card h3,
.blog-list h2 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.post-card p,
.blog-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.post-card .arrow {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--red-bright);
}

.blog-see-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: var(--red);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}

.blog-see-more:hover {
  border-color: var(--red);
  color: var(--red-bright);
}

.blog-see-more[hidden] {
  display: none;
}

.blog-list-toggle {
  margin: 0 36px 28px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 72px;
}

.faq-title p {
  margin-top: 12px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  background: rgba(12, 13, 15, 0.84);
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 18px;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--red-bright);
}

details[open] summary::after {
  content: "-";
}

summary:hover {
  color: var(--red);
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 13px;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 64px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 78px 76px 72px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--red);
  border-left: 1px solid var(--line);
  background: linear-gradient(100deg, rgba(7, 8, 10, 1), rgba(8, 9, 11, 0.9));
}

.contact-section::before {
  right: 50%;
  bottom: -22px;
  transform: translateX(50%) rotate(45deg);
  border-width: 1px;
}

.contact-art {
  position: absolute;
  left: -110px;
  bottom: -180px;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 40%, rgba(225, 29, 46, 0.35) 41%, transparent 42%),
    repeating-radial-gradient(circle, transparent 0 18px, rgba(225, 29, 46, 0.2) 19px, transparent 21px);
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy span:not(.section-target) {
  display: block;
  max-width: 420px;
  margin-top: 20px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--dim);
  font-size: 10px;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(5, 6, 7, 0.76);
  color: var(--text);
  min-height: 48px;
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 1px rgba(225, 29, 46, 0.25);
}

.message-field,
.form-actions,
.form-note {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.contact-form .btn {
  width: fit-content;
}

.form-note {
  margin: 0;
  color: var(--dim);
  font-size: 11px;
}

.form-status {
  color: var(--muted);
  font-size: 12px;
}

.form-status.success {
  color: #34d399;
}

.form-status.error {
  color: #fff;
}

.turnstile-field {
  min-height: 65px;
  max-width: 100%;
  overflow: hidden;
}

.turnstile-field[hidden] {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 64px;
  max-width: var(--max);
  margin: 0 auto 28px;
  padding: 42px 76px 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #050607;
}

.footer-brand p {
  max-width: 330px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
}

.socials a:hover {
  border-color: var(--red);
}

.social-icon {
  display: block;
  width: 17px;
  height: 17px;
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.linkedin { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.9 20H3.3V8.7h3.6V20ZM5.1 7.2A2.1 2.1 0 1 1 5.1 3a2.1 2.1 0 0 1 0 4.2ZM20.7 20h-3.6v-5.5c0-1.3 0-3-1.8-3s-2.1 1.4-2.1 2.9V20H9.6V8.7H13v1.5h.1c.5-.9 1.7-1.8 3.4-1.8 3.6 0 4.2 2.4 4.2 5.4V20Z'/%3E%3C/svg%3E"); }
.x { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M18.2 3h3.1l-6.8 7.8 8 10.2h-6.3l-4.9-6.3L5.7 21H2.6l7.3-8.4L2.2 3h6.5l4.4 5.7L18.2 3Zm-1.1 16.2h1.7L7.8 4.7H6L17.1 19.2Z'/%3E%3C/svg%3E"); }
.github { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 0 0-3.2 19.5c.5.1.7-.2.7-.5v-1.7c-2.9.6-3.5-1.2-3.5-1.2-.5-1.2-1.1-1.5-1.1-1.5-.9-.6.1-.6.1-.6 1 0 1.6 1.1 1.6 1.1.9 1.6 2.5 1.1 3 .9.1-.7.4-1.1.7-1.4-2.3-.3-4.7-1.1-4.7-5A3.9 3.9 0 0 1 6.6 9c-.1-.3-.5-1.3.1-2.7 0 0 .9-.3 2.8 1a9.8 9.8 0 0 1 5 0c1.9-1.3 2.8-1 2.8-1 .6 1.4.2 2.4.1 2.7a3.9 3.9 0 0 1 1 2.7c0 3.9-2.4 4.7-4.7 5 .4.3.7.9.7 1.8V21c0 .3.2.6.7.5A10 10 0 0 0 12 2Z'/%3E%3C/svg%3E"); }
.youtube { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M21.6 7.2s-.2-1.5-.8-2.1c-.8-.8-1.7-.8-2.1-.9C15.7 4 12 4 12 4s-3.7 0-6.7.2c-.4.1-1.3.1-2.1.9-.6.6-.8 2.1-.8 2.1S2 9 2 10.9v1.7c0 1.9.2 3.7.2 3.7s.2 1.5.8 2.1c.8.8 1.9.8 2.4.9 1.7.2 6.6.2 6.6.2s3.7 0 6.7-.3c.4 0 1.3 0 2.1-.8.6-.6.8-2.1.8-2.1s.2-1.9.2-3.7v-1.7c0-1.9-.2-3.7-.2-3.7ZM10 14.8V8.5l5.8 3.2L10 14.8Z'/%3E%3C/svg%3E"); }

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h2 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  color: var(--muted);
  font-size: 12px;
}

.footer-col a:hover {
  color: var(--red);
}

.footer-col a::before {
  content: ">";
  margin-right: 9px;
  color: var(--red);
}

.contact-list a::before {
  content: "";
  margin: 0;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 60px;
  max-width: var(--max);
  min-height: 420px;
  margin: 0 auto;
  padding: 86px 76px 76px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 0;
  background:
    radial-gradient(circle at 80% 35%, rgba(225, 29, 46, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    #07080a;
  background-size: auto, 46px 46px, 46px 46px, auto;
}

.not-found-hero {
  position: relative;
  display: grid;
  align-content: center;
  min-height: calc(100svh - 78px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 76px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(225, 29, 46, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    #07080a;
  background-size: auto, 46px 46px, 46px 46px, auto;
}

.not-found-hero::after {
  content: "404";
  position: absolute;
  right: clamp(28px, 8vw, 110px);
  bottom: clamp(24px, 6vw, 88px);
  color: rgba(225, 29, 46, 0.1);
  font-size: clamp(110px, 20vw, 290px);
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
}

.not-found-hero > * {
  position: relative;
  z-index: 1;
}

.not-found-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

.not-found-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
}

.blog-hero {
  grid-template-columns: 1fr;
  min-height: 330px;
}

.services-hero {
  grid-template-columns: 1fr;
  min-height: 330px;
}

.services-overview {
  background:
    radial-gradient(circle at 86% 18%, rgba(225, 29, 46, 0.12), transparent 30%),
    rgba(5, 6, 7, 0.78);
}

.service-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-method-grid article {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(13, 13, 15, 0.68);
}

.service-method-grid h3,
.service-detail h3 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.service-method-grid p {
  margin: 0;
  color: var(--muted);
}

.service-detail-list {
  display: grid;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 34px;
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: 0;
}

.service-detail-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid var(--line-red);
  background:
    radial-gradient(circle, rgba(225, 29, 46, 0.12), transparent 58%),
    rgba(13, 13, 15, 0.78);
}

.service-detail-icon .security-icon {
  width: 56px;
  height: 56px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red-bright);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.service-detail h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.25;
}

.service-detail > div > p:not(.eyebrow) {
  max-width: 920px;
  margin: 18px 0 0;
  color: var(--muted);
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.service-columns > div {
  border: 1px solid var(--line);
  padding: 22px;
  background: rgba(13, 13, 15, 0.62);
}

.service-columns ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-columns li + li {
  margin-top: 7px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
}

.about-layout article > p {
  color: var(--muted);
}

.stats-panel {
  display: grid;
  border: 1px solid var(--line);
  background: rgba(13, 13, 15, 0.72);
}

.stats-panel div {
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.stats-panel div:last-child {
  border-bottom: 0;
}

.stats-panel strong {
  display: block;
  color: var(--red-bright);
  font-size: 34px;
  line-height: 1;
}

.stats-panel span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.abstract-gradient-panel {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1;
  justify-self: center;
  background:
    linear-gradient(45deg, rgba(225, 29, 46, 0.88) 0%, rgba(225, 29, 46, 0.5) 22%, rgba(225, 29, 46, 0.12) 46%, transparent 68%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.1), transparent 36%),
    #07080a;
  border: 1px solid rgba(225, 29, 46, 0.3);
  clip-path: polygon(0 10%, 80% 0, 100% 72%, 18% 100%);
  box-shadow: 0 0 70px rgba(225, 29, 46, 0.16), inset 0 0 80px rgba(0, 0, 0, 0.45);
}

.abstract-gradient-panel::before {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.abstract-gradient-panel::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 19px, transparent 20px);
  opacity: 0.36;
}
 
.radar-panel {
  display: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.team-grid article {
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--panel);
}

.team-avatar {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid var(--red);
  color: var(--red-bright);
}

.team-grid h3 {
  margin: 20px 0 10px;
  font-size: 15px;
  text-transform: uppercase;
}

.team-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.certification-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(225, 29, 46, 0.12), transparent 28%),
    rgba(5, 6, 7, 0.78);
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.certification-grid article {
  min-height: 236px;
  padding: 26px 24px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(225, 29, 46, 0.07), transparent 42%),
    rgba(13, 13, 15, 0.68);
}

.certification-grid article:hover {
  border-color: rgba(225, 29, 46, 0.68);
  background:
    linear-gradient(180deg, rgba(225, 29, 46, 0.15), transparent 48%),
    rgba(13, 13, 15, 0.82);
}

.cert-code {
  display: inline-grid;
  place-items: center;
  min-width: 66px;
  height: 36px;
  color: var(--red-bright);
  font-size: 15px;
  font-weight: 500;
}

.cert-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 44px;
  padding: 5px 12px 5px 5px;
  border: 1px solid var(--red);
}

.certification-grid h3 {
  margin: 20px 0 12px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
}

.cert-logo {
  width: 36px;
  height: 36px;
  padding: 0;
  display: block;
  object-fit: contain;
}

.mobile-see-more {
  display: none;
}

.certification-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.blog-shell {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.blog-shell > * {
  min-width: 0;
}

.blog-sidebar {
  min-width: 0;
  padding: 36px 28px;
  border-right: 1px solid var(--line);
}

.blog-sidebar h2 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.filter-button {
  display: block;
  width: 100%;
  min-height: 36px;
  margin-bottom: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.active {
  color: var(--red-bright);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.tag-list span {
  border: 1px solid var(--line);
  padding: 4px 8px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.blog-list {
  display: grid;
  min-width: 0;
  gap: 14px;
  padding: 36px 36px 20px;
}

.blog-list article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(13, 13, 15, 0.8);
  cursor: pointer;
}

.blog-list article:hover,
.blog-list article.active {
  border-color: rgba(225, 29, 46, 0.72);
}

.blog-list .post-art {
  height: 130px;
}

.markdown-article {
  min-width: 0;
  margin: 0 36px 44px;
  padding: 36px;
  overflow: hidden;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  background: var(--panel);
  scroll-margin-top: 96px;
}

.markdown-article:empty {
  display: none;
}

.markdown-article h1,
.markdown-article h2,
.markdown-article h3 {
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.markdown-article h1 {
  margin: 0 0 20px;
  font-size: clamp(26px, 4vw, 44px);
}

.markdown-article h2 {
  margin-top: 34px;
  color: var(--text);
}

.markdown-article p,
.markdown-article li {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.markdown-article code {
  color: var(--red-bright);
  white-space: break-spaces;
  word-break: break-word;
}

.markdown-article pre {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  background: #050607;
}

.markdown-article pre code {
  display: block;
  min-width: max-content;
  white-space: pre;
  word-break: normal;
}

.markdown-article a {
  overflow-wrap: anywhere;
}

.markdown-article img,
.markdown-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 18px 0 26px;
  border: 1px solid var(--line);
  background: #050607;
  object-fit: contain;
}

@media (prefers-reduced-motion: no-preference) {
  .target-mark,
  .section-target {
    animation: pulseTarget 3.8s ease-in-out infinite;
  }

  .threat-globe::before {
    animation: driftParticles 16s linear infinite;
  }

  .threat-globe::after {
    animation: globeGlow 5.8s ease-in-out infinite;
  }

  .globe-dot {
    animation: particleFloat 6.5s ease-in-out infinite;
  }

  .d2 { animation-delay: -1.4s; }
  .d3 { animation-delay: -2.1s; }
  .d4 { animation-delay: -3s; }
  .d5 { animation-delay: -4.2s; }
  .d6 { animation-delay: -5.1s; }
  .d7 { animation-delay: -2.8s; }
  .d8 { animation-delay: -1.8s; }
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }

  45% {
    transform: translate3d(18px, -14px, 0) scale(1.35);
    opacity: 1;
  }

  70% {
    transform: translate3d(-12px, 8px, 0) scale(0.86);
    opacity: 0.64;
  }
}

@keyframes pulseTarget {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225, 29, 46, 0.2); }
  50% { box-shadow: 0 0 0 12px rgba(225, 29, 46, 0); }
}

@keyframes driftDots {
  to { background-position: 120px 80px; }
}

@keyframes driftParticles {
  to { background-position: 220px -110px, -180px 120px, 160px 90px, -260px -90px, 180px -140px, -210px 160px; }
}

@keyframes globeGlow {
  0%, 100% { opacity: 0.58; }
  50% { opacity: 0.92; }
}

@media (min-width: 1500px) {
  :root {
    --max: min(1760px, calc(100vw - 220px));
    --shell: min(100%, calc(var(--max) + 88px));
  }

  .hero {
    grid-template-columns: minmax(520px, 0.85fr) minmax(620px, 1.15fr);
  }

  .hero-copy {
    max-width: 760px;
    padding-left: clamp(82px, 6vw, 132px);
  }

  .hero h1 {
    max-width: 860px;
    font-size: clamp(62px, 4.35vw, 86px);
  }

  .threat-globe {
    width: min(52vw, 980px);
    margin-right: clamp(-170px, -6vw, -100px);
  }
}

@media (min-width: 2200px) {
  :root {
    --max: min(1920px, calc(100vw - 280px));
    --shell: min(100%, calc(var(--max) + 96px));
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: #050607;
  }

  .site-header.nav-open .site-nav a {
    padding: 16px 28px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: calc(100svh - 78px);
  }

  .hero-copy {
    padding: 76px 44px 34px;
  }

  .threat-globe {
    width: min(92vw, 620px);
    margin: 0 auto -160px;
    justify-self: center;
  }

  .services-grid,
  .apart-grid,
  .service-method-grid,
  .certification-grid,
  .team-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .faq-section,
  .contact-section,
  .about-layout,
  .blog-shell,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 14px;
  }

  .site-header {
    min-height: 68px;
    padding: 0 18px;
  }

  .site-header.nav-open .site-nav {
    top: 68px;
  }

  .logo-gradient {
    width: 190px;
    height: 42px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-copy,
  .section,
  .contact-section,
  .page-hero,
  .not-found-hero,
  .site-footer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero-copy {
    padding-top: 62px;
  }

  .hero {
    min-height: calc(100svh - 68px);
  }

  .not-found-hero {
    min-height: calc(100svh - 68px);
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .hero-actions,
  .section-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .header-cta {
    width: 100%;
  }

  .services-grid,
  .apart-grid,
  .service-method-grid,
  .certification-grid,
  .team-grid,
  .site-footer,
  .contact-form,
  .blog-list article,
  .service-columns {
    grid-template-columns: 1fr;
  }

  .service-detail {
    padding: 38px 0;
  }

  .services-grid:not(.is-expanded) .icon-card:not([data-mobile-key]),
  .apart-grid:not(.is-expanded) .icon-card:nth-child(n+4) {
    display: none;
  }

  .services-grid .icon-card[data-mobile-key="1"] { order: 1; }
  .services-grid .icon-card[data-mobile-key="2"] { order: 2; }
  .services-grid .icon-card[data-mobile-key="3"] { order: 3; }
  .services-grid .icon-card:not([data-mobile-key]) { order: 4; }

  .icon-card,
  .icon-card:last-child {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .icon-card:first-child {
    border-top: 0;
  }

  .mobile-see-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: transparent;
    color: var(--red);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
  }

  .mobile-see-more:hover {
    border-color: var(--red);
  }

  .threat-globe {
    display: none;
  }

  .faq-section {
    gap: 28px;
  }

  .blog-list {
    padding: 24px 18px 18px;
  }

  .blog-list-toggle {
    width: calc(100% - 36px);
    margin: 0 18px 24px;
  }

  .markdown-article {
    margin: 0 18px 28px;
    padding: 22px;
  }
}
