* {
  box-sizing: border-box;
}

:root {
  --bg: #020617;
  --bg-2: #05111f;
  --card: rgba(4, 16, 31, 0.78);
  --card-2: rgba(7, 22, 39, 0.9);
  --cyan: #22d3ee;
  --cyan-2: #67e8f9;
  --blue: #2563eb;
  --blue-2: #38bdf8;
  --violet: #7c3aed;
  --purple: #a855f7;
  --green: #4ade80;
  --text: #f8fafc;
  --muted: #a8b3c7;
  --soft: #64748b;
  --border: rgba(56, 189, 248, 0.34);
  --border-2: rgba(103, 232, 249, 0.18);
  --shadow: 0 0 36px rgba(34, 211, 238, 0.18), 0 28px 90px rgba(2, 6, 23, 0.58);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(14, 165, 233, 0.18), transparent 34rem),
    radial-gradient(circle at 85% 5%, rgba(37, 99, 235, 0.18), transparent 30rem),
    radial-gradient(circle at 50% 80%, rgba(34, 211, 238, 0.08), transparent 40rem),
    var(--bg);
  overflow-x: hidden;
}

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

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

.noise,
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise {
  opacity: 0.16;
  z-index: -5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.grid-bg {
  z-index: -4;
  opacity: 0.16;
  background-image:
    linear-gradient(to right, rgba(34, 211, 238, 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(34, 211, 238, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 80%);
}

.orb {
  position: fixed;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -3;
}

.orb-a {
  top: -22rem;
  left: -12rem;
  background: #0ea5e9;
}

.orb-b {
  top: 3rem;
  right: -20rem;
  background: #2563eb;
}

.orb-c {
  bottom: -25rem;
  left: 32%;
  background: #22d3ee;
  opacity: 0.1;
}

.container {
  width: min(1320px, calc(100% - 44px));
  margin-inline: auto;
}

.section-pad {
  padding: 84px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.64));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(56, 189, 248, 0.16);
}

.header-inner {
  width: min(1320px, calc(100% - 44px));
  margin-inline: auto;
  height: 72px;
  display: grid;
  grid-template-columns: 280px 1fr auto auto;
  gap: 28px;
  align-items: center;
}

.logo-link img {
  width: 252px;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 48px;
  font-weight: 700;
  font-size: 14px;
  color: #dbeafe;
}

.nav a {
  opacity: 0.9;
  transition: 0.2s ease;
}

.nav a:hover {
  color: var(--cyan-2);
  opacity: 1;
}

.btn {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #2563eb 54%, #6d28d9);
  color: white;
  border: 1px solid rgba(103, 232, 249, 0.45);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.45), inset 0 1px 0 rgba(255,255,255,0.22);
}

.btn-ghost {
  color: #e0faff;
  border: 1px solid rgba(103, 232, 249, 0.28);
  background: rgba(15, 23, 42, 0.5);
}

.mobile-menu {
  display: none;
  background: transparent;
  color: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  font-size: 24px;
}

.hero {
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(560px, 1.15fr);
  gap: 56px;
  align-items: center;
  min-height: 680px;
}

.pill,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--cyan-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 900;
}

.pill {
  padding: 9px 14px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  background: rgba(14, 165, 233, 0.1);
  border-radius: 999px;
}

.pill span,
.section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

h1, h2, h3, p {
  margin: 0;
}

h1 {
  margin-top: 28px;
  font-size: clamp(44px, 5.5vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.075em;
  font-weight: 950;
}

h1 strong,
h2 strong {
  color: var(--cyan);
  font-weight: inherit;
  text-shadow: 0 0 22px rgba(34, 211, 238, 0.18);
}

.hero-text {
  margin-top: 26px;
  max-width: 640px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.72;
}

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

.trust-row {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  color: #cbd5e1;
}

.trust-row div {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  line-height: 1.35;
}

.trust-row i {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-style: normal;
  background: rgba(34, 211, 238, 0.08);
  box-shadow: 0 0 20px rgba(34, 211, 238, .14);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  border-radius: 36px;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(34, 211, 238, .22), transparent 36%),
    linear-gradient(90deg, transparent, rgba(34, 211, 238, .06), transparent);
  border-radius: inherit;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 4%;
  background:
    linear-gradient(120deg, transparent 0 14%, rgba(34,211,238,.08) 14.4% 14.8%, transparent 15.2% 28%, rgba(59,130,246,.09) 28.4% 28.8%, transparent 29.2%),
    linear-gradient(30deg, transparent 0 62%, rgba(34,211,238,.07) 62.4% 62.8%, transparent 63.2%);
  opacity: .9;
}

.shield-stage {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 360px;
}

.shield {
  position: absolute;
  inset: 20px 48px 94px;
  clip-path: polygon(50% 0%, 92% 17%, 86% 65%, 50% 100%, 14% 65%, 8% 17%);
  background: linear-gradient(145deg, rgba(34,211,238,.2), rgba(37,99,235,.08));
  border: 2px solid rgba(103,232,249,.95);
  filter: drop-shadow(0 0 20px rgba(34,211,238,.8));
}

.shield::before,
.shield::after {
  content: "";
  position: absolute;
  inset: 8%;
  clip-path: inherit;
  border: 2px solid rgba(34,211,238,.35);
}

.shield::after {
  inset: 17%;
  opacity: .55;
}

.lock {
  position: absolute;
  width: 74px;
  height: 62px;
  border: 4px solid #8eeaff;
  border-radius: 12px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -35%);
  box-shadow: 0 0 24px rgba(34,211,238,.7);
}

.lock::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -48px;
  width: 52px;
  height: 52px;
  transform: translateX(-50%);
  border: 4px solid #8eeaff;
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

.lock span {
  position: absolute;
  width: 10px;
  height: 24px;
  background: #8eeaff;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  box-shadow: 0 0 16px #22d3ee;
}

.scan {
  position: absolute;
  left: 50%;
  bottom: 34px;
  border: 1px solid rgba(34, 211, 238, 0.7);
  border-radius: 50%;
  transform: translateX(-50%) rotateX(68deg);
  box-shadow: 0 0 22px rgba(34,211,238,.55);
}

.scan-1 { width: 310px; height: 110px; }
.scan-2 { width: 230px; height: 82px; bottom: 48px; opacity: .7; }
.scan-3 { width: 155px; height: 54px; bottom: 62px; opacity: .55; }

.dashboard-card {
  position: absolute;
  z-index: 4;
  padding: 16px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  background: rgba(2, 8, 23, 0.58);
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.12);
  color: #89ddff;
  font-family: "JetBrains Mono", monospace;
}

.dashboard-card small {
  font-size: 10px;
  color: #93c5fd;
}

.threat {
  width: 210px;
  height: 140px;
  left: 38px;
  top: 54px;
}

.map-dots {
  height: 90px;
  margin-top: 8px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 28% 35%, #22d3ee 0 2px, transparent 3px),
    radial-gradient(circle at 46% 50%, #38bdf8 0 2px, transparent 3px),
    radial-gradient(circle at 63% 28%, #60a5fa 0 2px, transparent 3px),
    radial-gradient(circle at 74% 62%, #22d3ee 0 2px, transparent 3px),
    radial-gradient(circle at 20% 68%, #2563eb 0 2px, transparent 3px),
    linear-gradient(135deg, rgba(14,165,233,.22), rgba(2,6,23,.1));
}

.risk {
  width: 180px;
  height: 148px;
  right: 26px;
  top: 66px;
}

.ring {
  margin: 12px auto 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--cyan) 0 78%, rgba(56, 189, 248, 0.15) 78% 100%);
  box-shadow: 0 0 25px rgba(34,211,238,.3);
}

.ring::before {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: inherit;
  background: #06111f;
}

.ring span {
  z-index: 1;
  font-weight: 900;
}

.vuln {
  width: 220px;
  height: 145px;
  right: 24px;
  bottom: 138px;
}

.vuln svg {
  width: 100%;
  margin-top: 22px;
  overflow: visible;
}

.vuln path {
  fill: none;
  stroke: #22d3ee;
  stroke-width: 4;
  filter: drop-shadow(0 0 6px #22d3ee);
}

.terminal {
  position: absolute;
  z-index: 8;
  left: 150px;
  right: 62px;
  bottom: 86px;
  padding: 22px 26px;
  border: 1px solid rgba(103, 232, 249, 0.45);
  border-radius: 14px;
  background: rgba(1, 8, 20, 0.86);
  box-shadow: 0 0 40px rgba(34,211,238,.22);
  font-family: "JetBrains Mono", monospace;
  color: #d1fae5;
  font-size: 14px;
  line-height: 1.9;
}

.terminal span {
  color: #4ade80;
}

.green {
  color: #4ade80;
}

.cursor {
  color: #4ade80;
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.services-section,
.methodology-section,
.value-section,
.contact-section {
  position: relative;
}

.services-section .container,
.methodology-section .container,
.value-box,
.contact-box {
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(4, 16, 31, 0.52), rgba(2, 8, 23, 0.22));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.services-section .container,
.methodology-section .container {
  padding: 42px 34px;
}

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

.section-kicker {
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.06em;
  font-weight: 950;
}

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

.service-card {
  min-height: 260px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(4, 18, 35, 0.92), rgba(3, 12, 25, 0.78));
  box-shadow: 0 0 28px rgba(14, 165, 233, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover,
.pentest-card:hover {
  transform: translateY(-5px);
  border-color: rgba(103, 232, 249, 0.6);
  box-shadow: 0 0 34px rgba(34, 211, 238, 0.18);
}

.service-card::after,
.pentest-card::after,
.contact-box::after,
.value-box::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% 40%;
  width: 260px;
  height: 220px;
  background: radial-gradient(circle, rgba(34,211,238,.14), transparent 70%);
  pointer-events: none;
}

.icon {
  width: 74px;
  height: 74px;
  margin-bottom: 26px;
  color: var(--cyan);
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(34,211,238,.7);
}

.cube,
.cube-icon {
  position: relative;
}

.cube::before,
.cube-icon::before {
  content: "";
  width: 58px;
  height: 58px;
  border: 2px solid var(--cyan);
  transform: rotate(30deg) skew(-10deg, -10deg);
  box-shadow: 0 0 18px rgba(34,211,238,.45);
}

.layers::before,
.layers::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 28px;
  border: 2px solid var(--cyan);
  transform: skewY(-24deg);
}

.layers::after {
  transform: translateY(18px) skewY(-24deg);
  opacity: .7;
}

.mini-shield::before {
  content: "";
  width: 54px;
  height: 60px;
  clip-path: polygon(50% 0%, 90% 18%, 82% 64%, 50% 100%, 18% 64%, 10% 18%);
  border: 2px solid var(--cyan);
  background: rgba(34,211,238,.06);
  filter: drop-shadow(0 0 12px rgba(34,211,238,.5));
}

.service-card h3,
.pentest-card h3 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.service-card p,
.pentest-card p,
.two-col-title p,
.value-box p,
.contact-box p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card a {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: var(--cyan);
  font-size: 28px;
}

.two-col-title {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.two-col-title p {
  font-size: 18px;
}

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

.pentest-card {
  position: relative;
  min-height: 220px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(4, 18, 35, 0.88), rgba(3, 12, 25, 0.7));
  overflow: hidden;
}

.pentest-icon {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--cyan);
  text-shadow: 0 0 22px rgba(34,211,238,.7);
}

.hacker::before {
  content: "";
  width: 82px;
  height: 82px;
  border-radius: 44px 44px 18px 18px;
  border: 3px solid var(--cyan);
  border-top-width: 7px;
  filter: drop-shadow(0 0 12px var(--cyan));
  opacity: .92;
}

.hacker::after {
  content: "";
  position: absolute;
  bottom: 14px;
  width: 98px;
  height: 46px;
  border: 3px solid #2563eb;
  border-radius: 24px 24px 8px 8px;
  opacity: .8;
}

.code-screen {
  border: 3px solid var(--purple);
  border-radius: 10px;
  color: #c084fc;
  font-family: "JetBrains Mono", monospace;
  box-shadow: 0 0 22px rgba(168,85,247,.4);
}

.check {
  position: absolute;
  left: 28px;
  bottom: 24px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  color: var(--green);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding-top: 26px;
}

.timeline .line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), var(--cyan), transparent);
  box-shadow: 0 0 18px rgba(34,211,238,.5);
}

.timeline article {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 10px;
}

.timeline article span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.9);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.25);
  font-weight: 900;
  font-size: 20px;
}

.timeline h3 {
  font-size: 16px;
  line-height: 1.32;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.timeline p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.value-box {
  padding: 42px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.value-box h2 {
  font-size: clamp(30px, 3.3vw, 50px);
}

.value-box p {
  font-size: 18px;
}

.value-checks {
  grid-column: 1 / -1;
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(56,189,248,.16);
}

.value-checks span {
  color: #e2e8f0;
  font-weight: 700;
}

.value-checks span::first-letter {
  color: var(--cyan);
}

.contact-box {
  padding: 38px 44px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 240px 1.05fr;
  gap: 34px;
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(34px, 3.5vw, 58px);
}

.contact-copy p {
  margin: 18px 0 28px;
  max-width: 520px;
  font-size: 18px;
}

.contact-shield {
  position: relative;
  height: 260px;
}

.shield.small {
  inset: 22px 44px 68px;
}


.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(103,232,249,.22);
  border-radius: 18px;
  background: rgba(2, 8, 23, .64);
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.1);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #dbeafe;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(103, 232, 249, .22);
  border-radius: 12px;
  background: rgba(1, 8, 20, .82);
  color: #f8fafc;
  outline: none;
  padding: 14px 14px;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #64748b;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(34, 211, 238, .72);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, .1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 118px;
}

.contact-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  color: #64748b !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.contact-options {
  display: grid;
  gap: 18px;
}

.contact-option {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  min-height: 84px;
  padding: 18px;
  border: 1px solid rgba(103,232,249,.22);
  border-radius: 14px;
  background: rgba(2, 8, 23, .58);
}

.contact-option span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--cyan);
  font-size: 24px;
}

.contact-option small {
  grid-column: 2;
  color: var(--soft);
  margin-top: -12px;
}

.whats {
  color: #22c55e !important;
  border-color: rgba(34,197,94,.45) !important;
}

.footer {
  width: min(1320px, calc(100% - 44px));
  margin: 0 auto;
  padding: 28px 0 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #94a3b8;
  font-size: 14px;
}

.footer img {
  width: 28px;
}

.footer strong {
  color: #e2e8f0;
  margin-right: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

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

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 250px 1fr auto;
  }

  .header-cta {
    display: none;
  }

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

  .hero-visual {
    min-height: 560px;
  }

  .service-grid,
  .pentest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .timeline .line {
    display: none;
  }

  .timeline article {
    text-align: left;
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 16px;
  }

  .timeline article span {
    grid-row: span 2;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .contact-shield {
    display: none;
  }
}

@media (max-width: 820px) {
  .container,
  .header-inner,
  .footer {
    width: min(100% - 28px, 1320px);
  }

  .site-header {
    padding: 10px 0;
  }

  .header-inner {
    height: auto;
    grid-template-columns: 1fr auto;
  }

  .logo-link img {
    width: 210px;
  }

  .nav {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0 6px;
    border-top: 1px solid rgba(56,189,248,.16);
  }

  body.menu-open .nav {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .section-pad {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .trust-row,
  .service-grid,
  .pentest-grid,
  .two-col-title,
  .value-box,
  .value-checks,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
    margin-inline: -8px;
  }

  .dashboard-card {
    display: none;
  }

  .terminal {
    left: 18px;
    right: 18px;
    bottom: 42px;
    font-size: 12px;
    padding: 16px;
  }

  .shield-stage {
    top: 36%;
    width: 300px;
  }

  .services-section .container,
  .methodology-section .container,
  .value-box,
  .contact-box {
    border-radius: 24px;
    padding: 26px 20px;
  }

  .pentest-card {
    grid-template-columns: 1fr;
  }

  .contact-options {
    margin-top: 18px;
  }

  .contact-option {
    grid-template-columns: 48px 1fr;
  }

  .footer {
    flex-wrap: wrap;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .logo-link img {
    width: 180px;
  }

  .actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 460px;
  }

  .shield-stage {
    transform: translate(-50%, -50%) scale(.82);
  }

  .service-card,
  .pentest-card {
    padding: 22px;
  }
}


.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.status-card {
  width: min(720px, 100%);
  padding: 42px;
  border: 1px solid rgba(103, 232, 249, .28);
  border-radius: 24px;
  background: rgba(2, 8, 23, .78);
  box-shadow: var(--shadow);
  text-align: center;
}

.status-card h1 {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -.06em;
}

.status-card p {
  margin: 18px auto 28px;
  color: #cbd5e1;
  line-height: 1.7;
}
