:root {
  --bg: #030711;
  --bg-2: #07111f;
  --panel: rgba(7, 18, 33, 0.9);
  --panel-2: rgba(10, 24, 43, 0.96);
  --line: rgba(58, 142, 255, 0.28);
  --line-strong: rgba(68, 169, 255, 0.58);
  --text: #f2f7ff;
  --muted: #b2c3d8;
  --soft: #d7e4f2;
  --blue: #227cff;
  --cyan: #38cfff;
  --green: #32e68e;
  --danger: #ff4f76;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --header: 92px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 78% 8%, rgba(34, 124, 255, 0.18), transparent 35rem),
    linear-gradient(180deg, #02050c 0%, #06101d 55%, #02050c 100%);
}

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 4vw, 72px);
  border-bottom: 1px solid rgba(68, 169, 255, 0.18);
  background: rgba(2, 6, 13, 0.92);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; min-width: 148px; }
.brand img { width: 128px; height: auto; object-fit: contain; }

.brand-text-logo {
  display: none;
  align-items: center;
  color: var(--text);
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
}

.site-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a:hover { color: var(--cyan); }

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 22px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(34, 124, 255, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
  border-color: rgba(56, 207, 255, 0.82);
}

.button.primary {
  border-color: rgba(34, 124, 255, 0.92);
  background: linear-gradient(135deg, #237dff, #0d5be5);
}

.button.secondary { background: rgba(4, 14, 28, 0.75); }

.section-shell {
  width: min(1360px, calc(100% - 44px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(32px, 5vw, 84px);
  padding-top: calc(var(--header) + 34px);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: var(--header) calc(50% - 50vw) 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 6, 13, 0.98) 0%, rgba(2, 6, 13, 0.72) 32%, rgba(2, 6, 13, 0.28) 66%, rgba(2, 6, 13, 0.74) 100%),
    radial-gradient(circle at 88% 36%, rgba(56, 207, 255, 0.22), transparent 18rem),
    repeating-linear-gradient(90deg, rgba(34, 124, 255, 0.16) 0 1px, transparent 1px 86px),
    linear-gradient(135deg, #06101d, #02050c 55%, #0a1f3a);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 7.4vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span,
.text-blue { color: var(--blue); }

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 { margin-bottom: 12px; font-size: 1.03rem; }

.hero-subtitle,
.section-heading p,
.solution-card li,
.brainiac-copy,
blockquote,
.footer-copy {
  color: var(--muted);
  line-height: 1.7;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 1.1rem;
  font-weight: 650;
}

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

.noc-card,
.solution-card,
.proof-card,
.testimonial,
.cta-band,
.brainiac-chat,
.stat-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(9, 22, 41, 0.92), rgba(3, 9, 18, 0.94));
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,0.025);
}

.noc-card {
  width: min(390px, 100%);
  justify-self: center;
  padding: 26px;
}

.noc-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.noc-head strong { display: block; font-size: 1.35rem; }
.online { color: var(--green); font-weight: 900; font-size: 0.75rem; }
.noc-sub { color: var(--cyan); font-size: 0.82rem; font-weight: 900; text-transform: uppercase; }

.noc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0 24px;
}

.noc-metrics div {
  border: 1px solid rgba(68,169,255,0.16);
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
  background: rgba(2, 9, 19, 0.6);
}

.noc-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.noc-metrics strong { display: block; margin: 8px 0 4px; font-size: 1.35rem; }
.danger { color: var(--danger); }
.ok { color: var(--green); font-size: 0.72rem; font-weight: 900; text-transform: uppercase; }

.bar-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 76px;
  margin: 18px 0;
}

.bar-chart span {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #55c9ff, #1269ff);
  box-shadow: 0 0 14px rgba(56, 207, 255, 0.28);
}

.traffic { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.85rem; font-weight: 900; }
.traffic strong { color: var(--text); }

.stats-strip {
  border-block: 1px solid rgba(68,169,255,0.18);
  background: rgba(4, 11, 21, 0.78);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 24px 0;
}

.stat-item {
  min-height: 78px;
  padding: 16px;
  box-shadow: none;
}

.stat-item strong { display: block; color: var(--blue); font-size: 1.35rem; }
.stat-item span { color: var(--muted); font-size: 0.82rem; }

.section-pad { padding: 72px 0; }
.section-row { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }

.lead-text {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
}

.intro-conversion {
  padding-bottom: 42px;
}

.wp-editable-area {
  color: var(--soft);
}

.wp-editable-area > * {
  max-width: 980px;
}

.wp-editable-area h2,
.wp-editable-area h3 {
  text-transform: none;
}

.wp-editable-area p,
.wp-editable-area li {
  color: var(--muted);
  line-height: 1.72;
}

.view-all {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.solution-card {
  min-height: 285px;
  padding: 24px 20px;
}

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

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

.result-card p {
  color: var(--muted);
  line-height: 1.65;
}

.mini-title {
  display: block;
  margin: 18px 0 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.result-title {
  color: var(--green);
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.result-tags span {
  border: 1px solid rgba(50, 230, 142, 0.26);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--soft);
  font-size: 0.78rem;
  background: rgba(50, 230, 142, 0.08);
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--cyan);
  font-weight: 900;
}

.solution-card h3 { text-transform: uppercase; }
.solution-card ul { margin: 0; padding-left: 18px; }
.solution-card li { margin: 7px 0; font-size: 0.9rem; }
.card-link { display: inline-block; margin-top: 20px; color: var(--cyan); font-weight: 900; font-size: 0.78rem; text-transform: uppercase; }

.brainiac-band {
  position: relative;
  border-block: 1px solid rgba(68,169,255,0.16);
  background:
    radial-gradient(circle at 16% 38%, rgba(56,207,255,0.22), transparent 18rem),
    linear-gradient(90deg, rgba(2, 6, 13, 0.96), rgba(5, 14, 27, 0.9));
}

.problem-panel,
.method-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at 92% 8%, rgba(56, 207, 255, 0.13), transparent 18rem),
    linear-gradient(180deg, rgba(9, 22, 41, 0.92), rgba(3, 9, 18, 0.94));
  box-shadow: var(--shadow);
}

.problem-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 34px;
  align-items: center;
}

.problem-panel p {
  color: var(--muted);
  line-height: 1.72;
}

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

.problem-grid span {
  border: 1px solid rgba(68,169,255,0.2);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--soft);
  background: rgba(2, 9, 19, 0.72);
}

.problem-grid span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(56, 207, 255, 0.5);
}

.method-panel {
  margin-top: 0;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.method-grid article {
  min-height: 150px;
  border: 1px solid rgba(68,169,255,0.2);
  border-radius: 8px;
  padding: 18px;
  background: rgba(2, 9, 19, 0.7);
}

.method-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--cyan);
  font-weight: 900;
}

.method-grid strong {
  display: block;
  font-size: 1.02rem;
  text-transform: uppercase;
}

.brainiac-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: center;
  padding: 58px 0;
}

.brainiac-art {
  min-height: 360px;
  border: 1px solid rgba(68,169,255,0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 40%, rgba(56,207,255,0.36), transparent 12rem),
    repeating-linear-gradient(90deg, rgba(56,207,255,0.12) 0 1px, transparent 1px 32px),
    #03101f;
}

.brainiac-chat { padding: 20px; }
.chat-bubble {
  margin-bottom: 16px;
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(34, 124, 255, 0.18);
}

.chart-mini {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 155px;
  margin: 20px 0;
  border: 1px solid rgba(68,169,255,0.14);
  border-radius: 8px;
  padding: 16px;
}

.chart-mini span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #2f8cff, #154bd4);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr 0.85fr;
  gap: 14px;
}

.proof-card,
.testimonial { padding: 24px; }

.story-card strong {
  display: block;
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 0.78rem;
}

.story-card p {
  color: var(--muted);
  line-height: 1.65;
}

.logos-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 140px;
}

.logos-row span {
  display: grid;
  min-height: 60px;
  place-items: center;
  border: 1px solid rgba(68,169,255,0.14);
  border-radius: 8px;
  color: var(--soft);
  font-weight: 900;
  background: rgba(255,255,255,0.025);
}

blockquote { margin: 0; }
blockquote cite { display: block; margin-top: 18px; color: var(--text); font-style: normal; }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
}

.site-footer {
  border-top: 1px solid rgba(68,169,255,0.18);
  background: rgba(2, 6, 13, 0.94);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 28px;
  padding: 38px 0;
}

.footer-brand img { width: 122px; margin-bottom: 14px; }
.footer-col strong { display: block; margin-bottom: 12px; color: var(--blue); text-transform: uppercase; font-size: 0.82rem; }
.footer-col a, .footer-col span { display: block; margin: 7px 0; color: var(--muted); font-size: 0.9rem; }
.copyright { border-top: 1px solid rgba(68,169,255,0.12); padding: 14px 0; color: var(--muted); font-size: 0.8rem; }

@media (max-width: 1180px) {
  .solutions-grid,
  .result-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .method-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .site-header { height: auto; min-height: var(--header); flex-wrap: wrap; padding-block: 16px; }
  .menu-toggle { display: flex; margin-left: auto; }
  .site-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }
  .site-nav.is-open { display: flex; }
  .header-cta { display: none; }
  .hero,
  .brainiac-inner,
  .problem-panel,
  .proof-grid,
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 140px; }
  .section-row, .cta-band { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .section-shell { width: min(100% - 28px, 1360px); }
  h1 { font-size: clamp(2.7rem, 15vw, 4rem); }
  .solutions-grid,
  .result-grid,
  .stats-inner,
  .logos-row,
  .problem-grid,
  .method-grid { grid-template-columns: 1fr; }
  .noc-metrics { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
}
