:root {
  --bg: #f6f7fb;
  --bg-soft: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.1);
  --primary: #4f8cff;
  --violet: #7d42bc;
  --hero: #232a36;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: 82px;
  background:
    radial-gradient(circle at top left, rgba(118, 81, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f7fb 100%);
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

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

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

.shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(203, 213, 225, 0.72);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.site-logo {
  width: 144px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 0.98rem;
  color: #1f2937;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
}

.lang-switch {
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 999px;
}

.lang-switch a {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #64748b;
}

.lang-switch a.active {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.nav-toggle {
  display: none;
}

.mobile-nav {
  display: none;
}

.site-main {
  position: relative;
  overflow: hidden;
}

.hero-section {
  position: relative;
  padding-top: 0;
  padding-bottom: 56px;
}

.hero-backdrop {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
  pointer-events: none;
}

.hero-backdrop-left {
  left: -8rem;
  top: 10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(125, 66, 188, 0.1);
}

.hero-backdrop-right {
  right: -6rem;
  top: 22rem;
  width: 22rem;
  height: 22rem;
  background: rgba(79, 140, 255, 0.1);
}

.hero-panel {
  background: var(--hero);
  padding: 56px 0 64px;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.2);
}

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

.hero-copy {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  font-size: 0.9rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7dd3fc;
  box-shadow: 0 0 14px rgba(125, 211, 252, 0.8);
}

.hero-copy h1,
.page-hero h1,
.section-head h2 {
  margin: 0;
  font-family: Eurostile, "Avenir Next", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.95;
}

.hero-copy p {
  margin: 28px 0 0;
  max-width: 700px;
  color: #cbd5e1;
  font-size: 1.2rem;
  line-height: 1.85;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 32px rgba(79, 140, 255, 0.28);
}

.btn-secondary {
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
}

.hero-visual {
  position: relative;
  margin: 0 auto;
  width: min(100%, 34rem);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(125, 66, 188, 0.18), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.26), transparent 74%);
}

.hero-aura,
.hero-ring,
.hero-arc,
.hero-beam,
.hero-sweep,
.hero-core-stack {
  position: absolute;
}

.hero-aura,
.hero-beam,
.hero-ring,
.hero-arc,
.hero-sweep {
  z-index: 1;
}

.hero-aura {
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.6;
}

.hero-aura-one {
  inset: 18%;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.28), transparent 68%);
  animation: pulseOpacity 4.4s ease-in-out infinite;
}

.hero-aura-two {
  inset: 8%;
  background: radial-gradient(circle, rgba(125, 66, 188, 0.2), transparent 70%);
  animation: pulseOpacity 5.4s ease-in-out infinite reverse;
}

.hero-beam {
  left: 50%;
  top: 14%;
  bottom: 14%;
  width: 140px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(125, 211, 252, 0.18), rgba(196, 181, 253, 0.12), transparent);
  filter: blur(6px);
  opacity: 0.85;
}

.hero-ring {
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.14);
}

.hero-ring-one {
  inset: 18%;
  animation: rotate 26s linear infinite;
}

.hero-ring-two {
  inset: 28%;
  border-color: rgba(196, 181, 253, 0.16);
  animation: rotate 18s linear infinite reverse;
}

.hero-arc {
  inset: 20%;
  border-radius: 50%;
  border: 2px solid transparent;
}

.hero-arc-one {
  border-top-color: rgba(125, 211, 252, 0.8);
  border-right-color: rgba(125, 211, 252, 0.32);
  animation: rotate 10s linear infinite;
}

.hero-arc-two {
  inset: 26%;
  border-bottom-color: rgba(196, 181, 253, 0.72);
  border-left-color: rgba(196, 181, 253, 0.26);
  animation: rotate 12s linear infinite reverse;
}

.hero-sweep {
  inset: 16%;
  border-radius: 50%;
  background: conic-gradient(from 180deg, transparent 0 74%, rgba(125, 211, 252, 0.2) 80%, transparent 88% 100%);
  animation: rotate 7s linear infinite;
  mask-image: radial-gradient(circle, transparent 0 47%, black 56%, transparent 74%);
}

.hero-core-stack {
  inset: 31%;
  border-radius: 50%;
  animation: coreFloat 6s ease-in-out infinite;
  z-index: 5;
  overflow: hidden;
  isolation: isolate;
}

.hero-core-shell {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 42% 36%, rgba(154, 225, 255, 0.98), rgba(72, 122, 255, 0.94) 34%, rgba(40, 74, 212, 0.96) 64%, rgba(36, 60, 176, 0.98) 100%);
  box-shadow: 0 18px 46px rgba(58, 74, 214, 0.26);
}

.hero-core-shell.shell-inner {
  inset: 18%;
  border-color: rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle, rgba(255,255,255,0.86), rgba(125, 211, 252, 0.34) 52%, rgba(125, 211, 252, 0.06) 72%, transparent 84%);
  box-shadow: none;
}

.hero-core-center {
  position: absolute;
  inset: 36%;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff, rgba(125, 211, 252, 0.34));
  box-shadow: 0 0 28px rgba(125, 211, 252, 0.5);
}

.hero-core-cross {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
}

.hero-core-cross::before,
.hero-core-cross::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.16);
  transform: translate(-50%, -50%);
  border-radius: 999px;
}

.hero-core-cross::before {
  width: 52%;
  height: 2px;
}

.hero-core-cross::after {
  width: 2px;
  height: 52%;
}

.hero-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  color: #fff;
  font-weight: 700;
  isolation: isolate;
  z-index: 3;
}

.hero-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(125, 211, 252, 0.5), rgba(125, 211, 252, 0.04));
  opacity: 0.7;
  filter: drop-shadow(0 0 8px rgba(125, 211, 252, 0.18));
  z-index: -2;
}

.hero-icon-panel {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(125, 66, 188, 0.92), rgba(79, 140, 255, 0.96));
  box-shadow: 0 20px 40px rgba(94, 71, 255, 0.32);
  z-index: -1;
}

.hero-icon-panel::after {
  display: none;
}

.security-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 2;
}

.security-glyph svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-radar { left: 6%; top: 10%; animation: iconDriftA 6.8s ease-in-out infinite; }
.icon-activity { left: 25%; top: 4%; animation: iconDriftB 5.9s ease-in-out infinite; }
.icon-scan { right: 10%; top: 14%; animation: iconDriftC 6.3s ease-in-out infinite; }
.icon-network { right: 4%; top: 42%; animation: iconDriftD 5.6s ease-in-out infinite; }
.icon-lock { left: 14%; bottom: 14%; animation: iconDriftE 7.1s ease-in-out infinite; }
.icon-fingerprint { right: 18%; bottom: 8%; animation: iconDriftF 6.1s ease-in-out infinite; }

.icon-radar::before { width: 188px; transform: translate(6px, -50%) rotate(41deg); }
.icon-activity::before { width: 158px; transform: translate(8px, -50%) rotate(59deg); }
.icon-scan::before { width: 174px; transform: translate(-2px, -50%) rotate(132deg); }
.icon-network::before { width: 148px; transform: translate(-2px, -50%) rotate(180deg); }
.icon-lock::before { width: 146px; transform: translate(8px, -50%) rotate(-54deg); }
.icon-fingerprint::before { width: 154px; transform: translate(0, -50%) rotate(-126deg); }

.icon-activity::before,
.icon-lock::before {
  background: linear-gradient(90deg, rgba(196, 181, 253, 0.52), rgba(196, 181, 253, 0.04));
}

.services-section,
.careers-section,
.page-main {
  padding-top: 64px;
  padding-bottom: 80px;
}

.section-head {
  margin-bottom: 48px;
  text-align: center;
}

.section-eyebrow {
  margin: 0 0 16px;
  color: #64748b;
  font-size: 0.82rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.section-eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-head h2 {
  font-size: clamp(2.75rem, 4.4vw, 4rem);
  color: #0f172a;
}

.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.service-card {
  display: grid;
  grid-template-columns: 10.5rem 1fr;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.service-art {
  position: relative;
  min-height: 9.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #7d42bc, #5a36a6 55%, #2f3f91);
}

.service-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.08), transparent);
}

.service-art-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
}

.service-art-glow {
  position: absolute;
  right: -18px;
  top: -10px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.32), transparent 72%);
}

.service-art-ring {
  position: absolute;
  right: -24px;
  top: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
}

.service-art-ring.ring-small {
  right: 32px;
  top: 72px;
  width: 42px;
  height: 42px;
  border-color: rgba(255,255,255,0.24);
}

.service-art-panel {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 74px;
  height: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.18);
}

.service-art-line {
  position: absolute;
  height: 1px;
  background: rgba(255,255,255,0.35);
}

.line-right { right: 28px; top: 44px; width: 64px; }
.line-left { left: 20px; bottom: 40px; width: 80px; }
.line-center { left: 34px; top: 78px; width: 56px; opacity: 0.6; }

.service-art-dot {
  position: absolute;
  border-radius: 50%;
}

.dot-right { right: 24px; top: 37px; width: 14px; height: 14px; background: rgba(186,230,253,0.9); }
.dot-left { left: 92px; bottom: 34px; width: 12px; height: 12px; background: rgba(237,233,254,0.82); }
.dot-top { left: 82px; top: 26px; width: 10px; height: 10px; background: rgba(255,255,255,0.76); }

.service-icon {
  position: absolute;
  left: 20px;
  top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-size: 1.45rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.service-icon .security-glyph {
  width: 30px;
  height: 30px;
}

.service-chip {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.24);
  color: rgba(255,255,255,0.85);
  font-size: 0.6rem;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  white-space: normal;
  overflow-wrap: anywhere;
}

.service-art-radar .service-art-glow,
.service-art-threat-intelligence .service-art-glow {
  background: radial-gradient(circle, rgba(125, 211, 252, 0.34), transparent 72%);
}

.service-art-activity .service-art-glow,
.service-art-siem .service-art-glow {
  background: radial-gradient(circle, rgba(196, 181, 253, 0.34), transparent 72%);
}

.service-art-scan .service-art-panel,
.service-art-vulnerability-management .service-art-panel {
  width: 84px;
  background: linear-gradient(90deg, rgba(255,255,255,0.14) 0 24%, transparent 24% 36%, rgba(255,255,255,0.14) 36% 64%, transparent 64% 76%, rgba(255,255,255,0.14) 76%);
}

.service-art-network .line-center,
.service-art-firewall-network-security .line-center {
  width: 72px;
}

.service-art-lock .service-art-ring,
.service-art-pam .service-art-ring {
  border-color: rgba(255,255,255,0.24);
}

.service-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

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

.service-body h3 {
  margin: 0;
  font-size: 1.55rem;
  color: #0f172a;
}

.service-link-label {
  flex-shrink: 0;
  padding: 6px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-card:hover .service-link-label {
  border-color: var(--primary);
  color: var(--primary);
}

.service-body p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.6;
}

.service-body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-body li {
  position: relative;
  padding: 12px 16px 12px 34px;
  border-radius: 18px;
  background: #f8fafc;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.45;
}

.service-body li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.partners-section {
  padding: 64px 0 80px;
  background: #f0f2f7;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  z-index: 1;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f0f2f7, transparent);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f0f2f7, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 208px;
  height: 64px;
  margin: 0 32px;
}

.partner-logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.careers-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.careers-copy {
  padding: 40px;
  background: linear-gradient(135deg, #8c50c2, #67418d 55%, #252c38);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.careers-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.42;
  pointer-events: none;
}

.careers-copy > * {
  position: relative;
  z-index: 1;
}

.careers-copy h2 {
  margin: 0;
  font-family: Eurostile, "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: -0.04em;
}

.careers-intro {
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1.75;
}

.careers-list {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.careers-list-item {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.6;
}

.careers-form-wrap {
  padding: 40px;
}

.form-flash {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 0.95rem;
}

.careers-contact-card {
  display: grid;
  gap: 18px;
  align-content: center;
}

.careers-contact-note {
  margin: 0;
  color: #334155;
  font-size: 1rem;
  line-height: 1.75;
}

.careers-contact-button {
  width: fit-content;
}

.careers-contact-email {
  width: fit-content;
  color: #3b82f6;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.careers-contact-hint {
  max-width: 420px;
}

.content-stack,
.detail-grid {
  display: grid;
  gap: 24px;
}

.form-note {
  margin: 0;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.55;
}

.form-actions p {
  margin: 0;
  max-width: 520px;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

.site-footer {
  width: 100%;
  margin-top: 32px;
  padding: 64px 0;
  border-top: 1px solid #e2e8f0;
  background: #eef1f6;
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.1fr 1fr;
}

.footer-logo {
  width: 192px;
  height: auto;
}

.footer-copy {
  margin: 24px 0 0;
  max-width: 520px;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.8;
}

.social-list {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-list span {
  padding: 10px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #f8fafc;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.footer-columns h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.1rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.7;
}

.footer-links a:hover {
  color: var(--primary);
}

.page-main {
  padding-top: 40px;
}

.dark-card {
  padding: 48px;
  border-radius: 38px;
  background: #232a36;
  color: #fff;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.2);
}

.page-hero p {
  max-width: 760px;
  color: #cbd5e1;
  font-size: 1.12rem;
  line-height: 1.9;
}

.content-card {
  padding: 32px;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.content-card h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.6rem;
}

.content-card p {
  margin: 16px 0 0;
  color: #64748b;
  line-height: 1.8;
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.detail-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8fafc;
  color: #475569;
  line-height: 1.75;
}

.detail-back {
  margin-top: 24px;
}

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

@keyframes pulseOpacity {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@keyframes coreFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -8px, 0) scale(1.03); }
}

@keyframes iconDriftA {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  20% { transform: translate3d(3px, -6px, 0) rotate(1deg); }
  50% { transform: translate3d(-4px, -12px, 0) rotate(-1deg); }
  75% { transform: translate3d(2px, -5px, 0) rotate(0.8deg); }
}

@keyframes iconDriftB {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  30% { transform: translate3d(-3px, -9px, 0) rotate(-1.1deg); }
  55% { transform: translate3d(4px, -13px, 0) rotate(1deg); }
  80% { transform: translate3d(-1px, -4px, 0) rotate(-0.6deg); }
}

@keyframes iconDriftC {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  25% { transform: translate3d(2px, -5px, 0) rotate(0.7deg); }
  50% { transform: translate3d(-5px, -11px, 0) rotate(-1deg); }
  78% { transform: translate3d(3px, -7px, 0) rotate(0.9deg); }
}

@keyframes iconDriftD {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  18% { transform: translate3d(-2px, -4px, 0) rotate(-0.7deg); }
  52% { transform: translate3d(5px, -10px, 0) rotate(1deg); }
  76% { transform: translate3d(-2px, -6px, 0) rotate(-0.5deg); }
}

@keyframes iconDriftE {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  28% { transform: translate3d(4px, -7px, 0) rotate(1deg); }
  48% { transform: translate3d(-3px, -14px, 0) rotate(-1.2deg); }
  72% { transform: translate3d(2px, -5px, 0) rotate(0.5deg); }
}

@keyframes iconDriftF {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  22% { transform: translate3d(-4px, -6px, 0) rotate(-0.8deg); }
  58% { transform: translate3d(3px, -12px, 0) rotate(1.1deg); }
  82% { transform: translate3d(-1px, -5px, 0) rotate(-0.4deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .hero-grid,
  .careers-card,
  .footer-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-grid {
    gap: 28px;
  }

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

  .service-art {
    min-height: 170px;
  }

  .service-chip {
    font-size: 0.64rem;
  }

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

  .hero-visual {
    width: min(100%, 30rem);
  }

  .hero-icon {
    width: 58px;
    height: 58px;
  }

  .hero-icon::before {
    opacity: 0.5;
  }

  .icon-radar::before { width: 158px; }
  .icon-activity::before { width: 132px; }
  .icon-scan::before { width: 146px; }
  .icon-network::before { width: 124px; }
  .icon-lock::before { width: 122px; }
  .icon-fingerprint::before { width: 126px; }
}

@media (max-width: 860px) {
  .site-header {
    backdrop-filter: blur(18px);
  }

  .header-inner {
    height: 76px;
  }

  .site-logo {
    width: 128px;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 108px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: rgba(255,255,255,0.96);
    color: #0f172a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }

  .nav-toggle-bars {
    display: inline-grid;
    gap: 4px;
  }

  .nav-toggle-bars span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
  }

  .nav-toggle-bars span:nth-child(1) {
    width: 16px;
  }

  .nav-toggle-bars span:nth-child(2) {
    width: 12px;
  }

  .nav-toggle-bars span:nth-child(3) {
    width: 16px;
  }

  .nav-toggle-text {
    line-height: 1;
  }

  .mobile-nav {
    display: none;
    padding: 12px 16px 16px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(24px);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .mobile-nav a {
    padding: 14px 16px;
    border-radius: 16px;
    color: #475569;
    background: rgba(248, 250, 252, 0.85);
  }

  .mobile-nav a:first-child {
    margin-top: 4px;
  }

  .mobile-nav a:hover {
    background: #f1f5f9;
  }

  .mobile-lang {
    margin-top: 10px;
    justify-content: flex-start;
  }

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

  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-panel {
    padding: 32px 0 36px;
    overflow: hidden;
  }

  .hero-copy {
    max-width: none;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .hero-badge {
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
    line-height: 0.98;
  }

  .hero-copy p {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions {
    justify-content: center;
    margin-top: 28px;
  }

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

  .hero-visual {
    position: absolute;
    left: 50%;
    top: 45%;
    width: min(100%, 25rem);
    transform: translate(-50%, -50%);
    opacity: 0.34;
    z-index: 1;
    pointer-events: none;
  }

  .hero-aura-two,
  .hero-ring-two,
  .hero-arc-two {
    opacity: 0.72;
  }

  .hero-icon {
    width: 54px;
    height: 54px;
  }

  .security-glyph {
    width: 24px;
    height: 24px;
  }

  .icon-radar { left: 6%; top: 12%; }
  .icon-activity { left: 24%; top: 6%; }
  .icon-scan { right: 10%; top: 16%; }
  .icon-network { right: 4%; top: 44%; }
  .icon-lock { left: 14%; bottom: 14%; }
  .icon-fingerprint { right: 17%; bottom: 10%; }

  .icon-radar::before { width: 132px; transform: translate(6px, -50%) rotate(41deg); }
  .icon-activity::before { width: 110px; transform: translate(8px, -50%) rotate(59deg); }
  .icon-scan::before { width: 120px; transform: translate(-2px, -50%) rotate(132deg); }
  .icon-network::before { width: 104px; transform: translate(-2px, -50%) rotate(180deg); }
  .icon-lock::before { width: 104px; transform: translate(8px, -50%) rotate(-54deg); }
  .icon-fingerprint::before { width: 112px; transform: translate(0, -50%) rotate(-126deg); }

  .services-section,
  .careers-section,
  .page-main {
    padding-top: 52px;
    padding-bottom: 64px;
  }

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

  .services-section .section-head {
    text-align: left;
    padding-inline: 4px;
  }

  .section-head h2 {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }

  .services-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82%, 82%);
    gap: 14px;
    overflow-x: auto;
    padding: 4px 4px 10px;
    margin: 0 -4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    scroll-snap-align: start;
  }

  .service-body {
    padding: 18px;
  }

  .service-meta {
    flex-direction: column;
    gap: 12px;
  }

  .service-link-label {
    align-self: flex-start;
  }

  .service-body h3 {
    font-size: 1.28rem;
  }

  .service-body p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .service-art {
    min-height: 148px;
  }

  .service-chip {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }

  .careers-card {
    border-radius: 28px;
    background: transparent;
    border: 0;
    box-shadow: none;
    gap: 0;
  }

  .careers-copy,
  .careers-form-wrap,
  .content-card,
  .dark-card {
    padding: 28px;
  }

  .careers-copy h2 {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .careers-intro {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .careers-list {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .careers-copy {
    border-radius: 28px 28px 0 0;
  }

  .careers-form-wrap {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: 0;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  }

  .careers-list-item {
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .content-stack,
  .detail-grid {
    gap: 18px;
  }

  .form-actions p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .site-footer {
    padding: 52px 0;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-copy {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .social-list {
    margin-top: 20px;
  }

  .footer-columns {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 32px, 1200px);
  }

  .header-inner {
    height: 72px;
  }

  .site-logo {
    width: 118px;
  }

  .nav-toggle {
    min-width: 96px;
    height: 40px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .hero-panel {
    padding: 24px 0 28px;
  }

  .hero-section {
    padding-bottom: 28px;
  }

  .hero-grid {
    position: relative;
    min-height: 460px;
    align-items: start;
  }

  .hero-badge {
    padding: 10px 14px;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .hero-copy p,
  .careers-intro {
    font-size: 0.96rem;
  }

  .hero-actions {
    margin-top: 18px;
  }

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

  .hero-visual {
    top: 41%;
    width: min(100%, 20.5rem);
    opacity: 0.22;
  }

  .hero-aura-two,
  .hero-beam,
  .hero-ring-two,
  .hero-arc-two {
    display: none;
  }

  .hero-ring-one {
    inset: 20%;
  }

  .hero-arc-one {
    inset: 23%;
  }

  .hero-sweep {
    inset: 20%;
  }

  .hero-core-stack {
    inset: 30%;
  }

  .hero-icon {
    width: 46px;
    height: 46px;
  }

  .hero-icon-panel {
    border-radius: 16px;
  }

  .security-glyph {
    width: 20px;
    height: 20px;
  }

  .hero-icon::before {
    opacity: 0.36;
  }

  .icon-radar { left: 6%; top: 16%; }
  .icon-activity { left: 24%; top: 9%; }
  .icon-scan { right: 10%; top: 19%; }
  .icon-network { right: 4%; top: 46%; }
  .icon-lock { left: 14%; bottom: 14%; }
  .icon-fingerprint { right: 16%; bottom: 12%; }

  .icon-radar::before { width: 96px; }
  .icon-activity::before { width: 78px; }
  .icon-scan::before { width: 90px; }
  .icon-network::before { width: 76px; }
  .icon-lock::before { width: 76px; }
  .icon-fingerprint::before { width: 82px; }

  .section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.26em;
  }

  .service-art {
    min-height: 138px;
  }

  .service-card {
    border-radius: 22px;
  }

  .service-body {
    padding: 16px;
  }

  .service-body ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-body li {
    padding: 11px 14px 11px 30px;
    border-radius: 16px;
    font-size: 0.86rem;
  }

  .service-body li::before {
    left: 12px;
    top: 16px;
  }

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

  .partner-logo-wrap {
    min-width: 160px;
    margin: 0 20px;
  }

  .careers-copy,
  .careers-form-wrap,
  .content-card,
  .dark-card {
    padding: 22px;
  }

  .careers-copy {
    border-radius: 24px 24px 0 0;
  }

  .careers-form-wrap {
    border-radius: 0 0 24px 24px;
  }

  .careers-list-item {
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.9rem;
  }

  .content-stack,
  .detail-grid {
    gap: 16px;
  }

  .form-actions p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .site-footer {
    margin-top: 12px;
    padding: 44px 0;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-logo {
    width: 164px;
  }

  .footer-columns h3 {
    font-size: 1rem;
  }

  .footer-links {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .page-main {
    padding-top: 28px;
  }

  .dark-card {
    border-radius: 28px;
  }

  .page-hero p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .content-card {
    border-radius: 24px;
  }

  .content-card h2 {
    font-size: 1.35rem;
  }

  .detail-list {
    gap: 12px;
    margin-top: 18px;
  }

  .detail-list li {
    padding: 14px 16px;
    border-radius: 16px;
    line-height: 1.65;
  }
}

@media (max-width: 420px) {
  .shell {
    width: min(100% - 24px, 1200px);
  }

  .header-inner {
    height: 68px;
  }

  .site-logo {
    width: 110px;
  }

  .nav-toggle {
    min-width: 88px;
    height: 40px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .mobile-nav {
    padding: 0 12px 12px;
  }

  .mobile-nav a:first-child {
    margin-top: 8px;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 12vw, 2.6rem);
  }

  .hero-copy p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .hero-visual {
    width: min(100%, 18.25rem);
    top: 40%;
  }

  .hero-icon {
    width: 42px;
    height: 42px;
  }

  .hero-icon-panel {
    border-radius: 14px;
  }

  .security-glyph {
    width: 18px;
    height: 18px;
  }

  .icon-radar::before { width: 82px; }
  .icon-activity::before { width: 66px; }
  .icon-scan::before { width: 76px; }
  .icon-network::before { width: 62px; }
  .icon-lock::before { width: 62px; }
  .icon-fingerprint::before { width: 68px; }

  .hero-actions .btn,
  .form-actions .btn {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-art {
    min-height: 130px;
  }

  .service-chip {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .services-grid {
    grid-auto-columns: minmax(86%, 86%);
    gap: 12px;
  }

  .careers-copy,
  .careers-form-wrap {
    padding: 18px;
  }

  .careers-intro {
    font-size: 0.92rem;
  }

  .careers-list {
    gap: 8px;
  }

  .careers-list-item {
    font-size: 0.78rem;
    padding: 9px 11px;
  }

  .footer-columns {
    gap: 20px;
  }

  .service-body h3 {
    font-size: 1.22rem;
  }

  .service-link-label {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .careers-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .footer-copy,
  .footer-links,
  .social-list span {
    font-size: 0.9rem;
  }
}
