:root {
  --bg: #050713;
  --bg-soft: #081024;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.15);
  --text: #f7f9ff;
  --muted: #aab6d6;
  --muted-2: #7885a6;
  --cyan: #00eaff;
  --cyan-soft: rgba(0, 234, 255, 0.12);
  --violet: #9b5cff;
  --blue: #3b82f6;
  --green: #42f5a7;
  --pink: #ff5cb8;
  --shadow: 0 32px 96px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 234, 255, 0.16), transparent 30%),
    radial-gradient(circle at 90% 6%, rgba(155, 92, 255, 0.2), transparent 32%),
    radial-gradient(circle at 48% 92%, rgba(59, 130, 246, 0.13), transparent 38%),
    var(--bg);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 74%);
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid rgba(0, 234, 255, 0.7); outline-offset: 3px; }
::selection { background: rgba(0, 234, 255, 0.28); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--cyan);
  color: #02040a;
  font-weight: 900;
}
.skip-link:focus { left: 12px; }
.page-shell { position: relative; z-index: 1; }
.container { width: min(var(--max), 92%); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 19, 0.74);
  backdrop-filter: blur(22px);
}
.site-header.is-scrolled { box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22); }
.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 0 auto;
}
.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 55%, var(--violet));
  box-shadow: 0 0 28px rgba(0, 234, 255, 0.28), inset 0 0 18px rgba(255, 255, 255, 0.18);
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 3px solid rgba(5, 7, 19, 0.85);
  border-radius: 50%;
}
.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  bottom: 9px;
  width: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: repeating-linear-gradient(to bottom, rgba(247, 249, 255, 0.96) 0 9px, rgba(5, 7, 19, 0.9) 9px 15px);
}
.brand-text {
  display: grid;
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 900;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}
.brand-text small {
  margin-top: 4px;
  color: var(--cyan);
  font-size: 0.72em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.95rem;
}
.nav-links a { transition: color 0.2s ease; white-space: nowrap; }
.nav-links a:hover, .nav-links a:focus { color: var(--cyan); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover, .btn:focus { transform: translateY(-2px); border-color: rgba(0, 234, 255, 0.5); box-shadow: 0 0 30px rgba(0, 234, 255, 0.13); }
.btn.primary { color: #02040a; border-color: transparent; background: linear-gradient(135deg, var(--cyan), var(--violet)); box-shadow: 0 0 36px rgba(0, 234, 255, 0.24); }
.btn.glass, .btn.ghost { background: rgba(255, 255, 255, 0.058); }
.btn.large { min-height: 56px; padding-inline: 24px; font-size: 1rem; }
.menu-toggle { display: none; }

.hero-section {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(34px, 5vw, 62px);
  padding: clamp(58px, 8vw, 92px) 0 clamp(64px, 7vw, 88px);
}
.hero-content { min-width: 0; }
.eyebrow {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 234, 255, 0.32);
  background: rgba(0, 234, 255, 0.075);
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.35;
  margin: 0 0 24px;
}
.eyebrow span {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(66, 245, 167, 0.95);
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; color: var(--text); }
h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 6.3vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.058em;
  text-wrap: balance;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
h3 { line-height: 1.2; }
.gradient-text { background: linear-gradient(90deg, var(--cyan), var(--violet) 58%, #fff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy {
  max-width: 720px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.78;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-actions.centered { justify-content: center; margin-bottom: 0; }
.proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 720px; }
.proof-grid div { min-width: 0; border: 1px solid rgba(255, 255, 255, 0.11); background: rgba(255, 255, 255, 0.048); border-radius: 18px; padding: 16px; }
.proof-grid strong { display: block; margin-bottom: 6px; font-size: 1.03rem; letter-spacing: -0.02em; }
.proof-grid span { display: block; color: var(--muted); font-size: 0.86rem; line-height: 1.48; }

.hero-visual { position: relative; min-width: 0; }
.visual-card {
  position: relative;
  min-height: 690px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(24px);
}
.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-105%);
  animation: scan 8s ease-in-out infinite;
}
.visual-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  top: -110px;
  left: 50%;
  border-radius: 999px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 234, 255, 0.45), transparent 70%);
  filter: blur(8px);
  animation: pulse 4.5s ease-in-out infinite;
}
.dashboard-panel {
  position: absolute;
  inset: 24px;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: rgba(5, 8, 20, 0.82);
  overflow: hidden;
}
.dashboard-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.window-dots { display: flex; gap: 8px; }
.window-dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, 0.24); }
.window-dots span:nth-child(1) { background: var(--pink); }
.window-dots span:nth-child(2) { background: #ffd166; }
.window-dots span:nth-child(3) { background: var(--green); }
.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 760;
  border: 1px solid rgba(66, 245, 167, 0.25);
  background: rgba(66, 245, 167, 0.09);
  border-radius: 999px;
  white-space: nowrap;
}
.metric-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.metric-row article { border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; background: rgba(255, 255, 255, 0.055); padding: 15px; min-width: 0; }
.metric-row span { display: block; margin-bottom: 10px; color: var(--cyan); font-size: 0.82rem; font-weight: 900; }
.metric-row strong { display: block; margin-bottom: 8px; letter-spacing: -0.03em; }
.metric-row p { margin: 0; color: var(--muted); line-height: 1.5; font-size: 0.82rem; }
.system-map {
  position: relative;
  min-height: 220px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at center, rgba(0, 234, 255, 0.2), transparent 30%),
    rgba(255, 255, 255, 0.044);
  overflow: hidden;
}
.system-map::before, .system-map::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(0, 234, 255, 0.18);
  border-radius: 50%;
}
.system-map::after { inset: 58px; border-color: rgba(155, 92, 255, 0.18); }
.core-node {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 170px;
  min-height: 92px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(0, 234, 255, 0.34);
  background: rgba(5, 8, 20, 0.86);
  box-shadow: 0 0 44px rgba(0, 234, 255, 0.12);
}
.core-node span { color: var(--cyan); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.core-node strong { margin-top: 6px; line-height: 1.2; }
.node {
  position: absolute;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}
.node-a { left: 9%; top: 18%; }
.node-b { right: 12%; top: 18%; }
.node-c { left: 12%; bottom: 20%; }
.node-d { right: 10%; bottom: 20%; }
.node-e { left: 41%; top: 8%; }
.node-f { left: 42%; bottom: 8%; }
.pipeline-list { display: grid; gap: 10px; }
.pipeline-list div { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 12px; border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 18px; background: rgba(255, 255, 255, 0.052); }
.pipeline-list strong { font-size: 0.92rem; }
.pipeline-list em { color: var(--green); font-style: normal; font-size: 0.78rem; }
.pulse-dot { width: 9px; height: 9px; border-radius: 999px; background: var(--green); box-shadow: 0 0 16px rgba(66, 245, 167, 0.8); }
.floating-card {
  position: absolute;
  left: auto;
  right: 24px;
  bottom: -36px;
  z-index: 2;
  width: min(250px, 80%);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 13, 31, 0.86);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.38);
  padding: 18px;
  animation: float 5.5s ease-in-out infinite;
}
.floating-card strong { display: block; margin-bottom: 7px; font-size: 1.3rem; letter-spacing: -0.035em; }
.floating-card span { color: var(--muted); font-size: 0.86rem; line-height: 1.5; }

.logo-strip-section { padding-bottom: 46px; }
.logo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}
.logo-strip p { grid-column: span 2; margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.logo-strip span { min-height: 44px; display: grid; place-items: center; border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.045); color: rgba(246, 248, 255, 0.82); font-weight: 900; letter-spacing: -0.02em; }

.section { padding: clamp(66px, 8vw, 92px) 0; scroll-margin-top: 96px; }
.section-heading { max-width: 790px; margin-bottom: 38px; }
.kicker { margin: 0 0 14px; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 950; font-size: 0.8rem; line-height: 1.35; }
.section-heading p:not(.kicker), .feature-panel p, .contact-card p, .cta-box p { color: var(--muted); font-size: clamp(1rem, 1.2vw, 1.07rem); line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-card, .outcome-card, .service-block, .contact-card, .feature-panel, .step-card, .faq-item {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
}
.service-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  min-height: 288px;
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-card::before { content: ""; position: absolute; width: 170px; height: 170px; top: -82px; right: -82px; border-radius: 50%; background: radial-gradient(circle, rgba(0, 234, 255, 0.15), transparent 70%); }
.service-card:hover { transform: translateY(-6px); border-color: rgba(0, 234, 255, 0.42); box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28); }
.service-number { position: relative; width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 17px; background: rgba(0, 234, 255, 0.095); border: 1px solid rgba(0, 234, 255, 0.22); color: var(--cyan); font-weight: 950; }
.service-card h3 { position: relative; margin-bottom: 12px; font-size: 1.15rem; letter-spacing: -0.025em; }
.service-card p { position: relative; margin: 0 0 18px; color: var(--muted); line-height: 1.65; font-size: 0.95rem; }
.text-link { position: relative; color: var(--cyan); font-weight: 900; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.split-layout { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 28px; align-items: stretch; }
.feature-panel { position: relative; overflow: hidden; padding: 34px; }
.feature-panel::after, .cta-box::after { content: ""; position: absolute; width: 280px; height: 280px; right: -110px; bottom: -125px; border-radius: 50%; background: radial-gradient(circle, rgba(0, 234, 255, 0.22), transparent 70%); }
.feature-panel > * { position: relative; z-index: 1; }
.steps-list { display: grid; gap: 14px; }
.step-card { display: grid; grid-template-columns: 70px 1fr; gap: 18px; padding: 20px; }
.step-card span { color: var(--cyan); font-weight: 950; }
.step-card h3 { margin-bottom: 6px; font-size: 1.08rem; letter-spacing: -0.025em; }
.step-card p { margin: 0; color: var(--muted); line-height: 1.62; }
.chip-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.chip-cloud span { border: 1px solid rgba(255, 255, 255, 0.13); background: rgba(255, 255, 255, 0.055); border-radius: 999px; padding: 11px 14px; color: var(--muted); }
.outcome-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.outcome-card { padding: 28px; }
.outcome-card strong { display: block; margin-bottom: 12px; font-size: 1.18rem; letter-spacing: -0.03em; }
.outcome-card p { margin: 0; color: var(--muted); line-height: 1.68; }
.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 18px 20px; }
.faq-item summary { cursor: pointer; font-weight: 900; line-height: 1.4; }
.faq-item p { margin: 14px 0 0; color: var(--muted); line-height: 1.72; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 24px; }
.contact-card { padding: 32px; }
.contact-methods { display: grid; gap: 14px; margin-top: 24px; color: var(--muted); }
.contact-methods a { color: var(--cyan); font-weight: 900; }
.form-card { display: grid; gap: 14px; }
.form-card label { display: grid; gap: 8px; color: var(--muted); font-weight: 780; }
.input, textarea, select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(3, 5, 14, 0.66);
  color: var(--text);
  padding: 14px 15px;
  outline: none;
}
.input:focus, textarea:focus, select:focus { border-color: rgba(0, 234, 255, 0.54); box-shadow: 0 0 0 3px rgba(0, 234, 255, 0.12); }
textarea { min-height: 132px; resize: vertical; }
.cta-section { padding: clamp(70px, 8vw, 98px) 0; }
.cta-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(48px, 7vw, 72px) 28px;
  border-radius: 38px;
  border: 1px solid rgba(0, 234, 255, 0.25);
  background: radial-gradient(circle at 20% 20%, rgba(0, 234, 255, 0.22), transparent 34%), radial-gradient(circle at 80% 20%, rgba(155, 92, 255, 0.22), transparent 34%), rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}
.cta-box::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(circle, black, transparent 72%); pointer-events: none; }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { max-width: 850px; margin-inline: auto; }
.cta-box p { max-width: 680px; margin: 0 auto 30px; }

.site-footer { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 34px 0; color: var(--muted); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 0.92rem; }
.footer-inner p { margin: 0; line-height: 1.5; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a:hover { color: var(--cyan); }

.service-hero { padding: clamp(72px, 9vw, 104px) 0 54px; }
.service-hero h1 { max-width: 960px; }
.service-layout { display: grid; grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr); gap: 28px; align-items: start; }
.service-sidebar { position: sticky; top: 104px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: rgba(255, 255, 255, 0.055); padding: 20px; }
.service-sidebar strong { display: block; margin-bottom: 10px; }
.service-sidebar a { display: block; padding: 12px 14px; border-radius: 14px; color: var(--muted); line-height: 1.35; }
.service-sidebar a:hover, .service-sidebar a:focus { background: rgba(255, 255, 255, 0.06); color: var(--cyan); }
.service-content { display: grid; gap: 18px; min-width: 0; }
.service-block { padding: 28px; }
.service-block h2 { font-size: clamp(1.75rem, 3vw, 2.55rem); }
.service-block p, .service-block li { color: var(--muted); line-height: 1.75; }
.service-block ul { margin: 0; padding-left: 1.15rem; }
.final-block { background: radial-gradient(circle at top right, rgba(0, 234, 255, 0.16), transparent 36%), rgba(255, 255, 255, 0.055); }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes pulse { 0%, 100% { opacity: 0.45; transform: translateX(-50%) scale(1); } 50% { opacity: 0.72; transform: translateX(-50%) scale(1.12); } }
@keyframes scan { 0%, 55% { transform: translateX(-105%); } 75%, 100% { transform: translateX(105%); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 1180px) {
  .nav-actions .ghost:not(.menu-toggle) { display: none; }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .nav-shell { min-height: 76px; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 4%;
    right: 4%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(5, 7, 19, 0.96);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.36);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; border-radius: 14px; }
  .nav-links a:hover { background: rgba(255, 255, 255, 0.06); }
  .hero-section, .split-layout, .contact-layout, .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .hero-section { min-height: auto; }
  .hero-visual { max-width: 720px; width: 100%; margin-inline: auto; }
  .logo-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .logo-strip p { grid-column: 1 / -1; }
  .outcome-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 32px, var(--max)); }
  .nav-actions .primary { display: none; }
  .hero-section { padding-top: 48px; }
  h1 { font-size: clamp(2.55rem, 13vw, 4.4rem); line-height: 1.05; letter-spacing: -0.045em; }
  h2 { font-size: clamp(2rem, 9vw, 3.2rem); line-height: 1.1; letter-spacing: -0.04em; }
  .eyebrow { border-radius: 18px; }
  .proof-grid, .service-grid, .logo-strip { grid-template-columns: 1fr; }
  .logo-strip p { grid-column: auto; }
  .visual-card { min-height: 650px; }
  .dashboard-panel { inset: 16px; padding: 16px; }
  .system-map { min-height: 205px; }
  .core-node { width: 150px; }
  .node { font-size: 0.76rem; padding: 7px 10px; }
  .floating-card { position: relative; left: auto; right: auto; bottom: auto; width: 100%; margin-top: 18px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .brand-mark { width: 38px; height: 38px; border-radius: 13px; }
  .brand-text { font-size: 0.98rem; }
  .btn, .btn.large { width: 100%; white-space: normal; }
  .nav-actions .menu-toggle { width: auto; min-width: 86px; }
  .hero-actions { align-items: stretch; }
  .visual-card { min-height: 650px; }
  .metric-row article { padding: 12px 10px; }
  .metric-row p { display: none; }
  .dashboard-top { align-items: flex-start; flex-direction: column; }
  .pipeline-list div { grid-template-columns: auto 1fr; }
  .pipeline-list em { grid-column: 2; }
  .step-card { grid-template-columns: 1fr; }
  .contact-card, .feature-panel, .service-block { padding: 24px; }
  .service-card { min-height: auto; }
}
@media (max-width: 390px) {
  .brand-text small { display: none; }
  .visual-card { min-height: 690px; }
  .node-e, .node-f { display: none; }
}


.brand-logo{width:40px;height:40px;border-radius:10px;display:block;object-fit:contain;}
.brand-mark{display:none;}
