/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #06060A;
  --bg-2: #0C0C14;
  --surface: #10101C;
  --border: #1E1E30;
  --accent: #00E5C4;
  --accent-dim: rgba(0, 229, 196, 0.12);
  --accent-glow: rgba(0, 229, 196, 0.25);
  --text: #EEEEF2;
  --text-muted: #7A7A94;
  --text-dim: #4A4A68;
  --warn: #F5A623;
  --good: #00E5C4;
}
html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}
/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(6, 6, 10, 0.85);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.nav-badge {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* === SECTION LABEL === */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 1rem;
}
/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 2rem 80px;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  max-width: 100px;
  line-height: 1.4;
}
/* Hero visual: node grid */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.node-grid {
  position: relative;
  width: 320px;
  height: 320px;
}
.node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}
.node:nth-child(odd) { background: rgba(255,255,255,0.85); box-shadow: 0 0 8px rgba(255,255,255,0.3); }
.node-1 { top: 12%; left: 12%; }
.node-2 { top: 8%; left: 50%; transform: translateX(-50%); width: 14px; height: 14px; }
.node-3 { top: 12%; right: 12%; }
.node-4 { top: 38%; left: 6%; width: 8px; height: 8px; }
.node-5 { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 20px; height: 20px; box-shadow: 0 0 24px var(--accent-glow), 0 0 48px var(--accent-dim); }
.node-6 { top: 38%; right: 6%; width: 8px; height: 8px; }
.node-7 { top: 62%; left: 18%; }
.node-8 { top: 68%; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; }
.node-9 { top: 62%; right: 18%; }
.node-10 { top: 85%; left: 22%; width: 12px; height: 12px; }
.node-11 { top: 82%; left: 50%; transform: translateX(-50%); }
.node-12 { top: 85%; right: 22%; width: 12px; height: 12px; }
.node-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/* === MANIFESTO === */
.manifesto { padding: 100px 2rem; background: var(--bg-2); }
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.manifesto-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 780px;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  margin-bottom: 3rem;
}
.manifesto-grid p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; }
.manifesto-callout {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  padding: 1.5rem 2rem;
  border-radius: 0 8px 8px 0;
}
.callout-bar { width: 2px; background: var(--accent); align-self: stretch; }
.manifesto-callout p { font-size: 1rem; color: var(--text); line-height: 1.65; font-weight: 400; }
/* === SERVICES === */
.services { padding: 100px 2rem; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header { margin-bottom: 3.5rem; }
.services-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  max-width: 520px;
  line-height: 1.2;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: 2.25rem 2.25rem 2rem;
  transition: background 0.2s;
}
.service-card:hover { background: var(--bg-2); }
.service-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 8px;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: 'Syne', sans-serif;
}
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.service-tags span {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
/* === THREATMAP === */
.threatmap { padding: 100px 2rem; background: var(--bg-2); }
.threatmap-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.threatmap-title {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  max-width: 440px;
  margin: 0.75rem 0 1.25rem;
  line-height: 1.2;
}
.threatmap-body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2.5rem; }
.threat-stats { display: flex; flex-direction: column; gap: 1.25rem; }
.tstat { display: flex; align-items: baseline; gap: 1rem; }
.tstat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 80px;
}
.tstat-desc { font-size: 0.85rem; color: var(--text-muted); }
.threatmap-right { display: flex; flex-direction: column; gap: 0; }
.meter { margin-bottom: 0; }
.meter-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }
.meter-bar {
  height: 6px;
  background: var(--surface);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.6rem;
}
.meter-fill {
  height: 100%;
  width: 12%;
  background: linear-gradient(90deg, var(--warn), #FF6B6B);
  border-radius: 3px;
}
.meter-caption { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 2.5rem; }
.meter-spacer { height: 1px; background: var(--border); margin-bottom: 2.5rem; }
.compare-block { display: flex; flex-direction: column; gap: 1rem; }
.compare-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.compare-label { font-size: 0.82rem; color: var(--text-muted); }
.compare-val { font-size: 0.78rem; font-weight: 600; }
.compare-val.warn { color: var(--warn); }
.compare-val.good { color: var(--good); }
/* === APPROACH === */
.approach { padding: 100px 2rem; }
.approach-inner { max-width: 1200px; margin: 0 auto; }
.approach-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  max-width: 560px;
  margin: 0.75rem 0 3.5rem;
  line-height: 1.2;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
}
.approach-item {}
.approach-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}
.approach-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  font-family: 'Syne', sans-serif;
}
.approach-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
/* === CLOSING === */
.closing { padding: 100px 2rem 120px; }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-content { max-width: 680px; }
.closing-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 0.75rem 0 1.5rem;
  line-height: 1.15;
}
.closing-content > p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2.5rem; max-width: 560px; }
.closing-cta-block { padding: 2rem 2.5rem; background: var(--accent-dim); border: 1px solid rgba(0,229,196,0.2); border-radius: 10px; }
.closing-tagline { font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--accent); }
/* === FOOTER === */
.footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2.5rem; }
.footer-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; display: block; margin-bottom: 0.25rem; }
.footer-tagline { font-size: 0.75rem; color: var(--text-dim); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links span { font-size: 0.8rem; color: var(--text-muted); cursor: default; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); }
.footer-copy { font-size: 0.75rem !important; }
/* === vCISO PAGE === */
.vciso-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 2rem 80px;
  background: var(--bg);
}
.vciso-hero-inner { max-width: 1200px; margin: 0 auto; }
.vciso-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,196,0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  font-weight: 500;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent-glow);
}
.vciso-headline {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.vciso-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.vciso-trust {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; gap: 0.25rem; }
.trust-stat {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}
.trust-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.trust-divider { width: 1px; height: 40px; background: var(--border); }
/* Credentials section */
.vciso-credentials { padding: 100px 2rem; background: var(--bg-2); }
.vciso-cred-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.cred-title { font-size: clamp(1.8rem, 2.5vw, 2.4rem); line-height: 1.15; margin-top: 0.75rem; }
.cred-body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; }
.cred-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.cred-badge {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,196,0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
}
/* vCISO services */
.vciso-services { padding: 100px 2rem; }
.vciso-services-inner { max-width: 1200px; margin: 0 auto; }
.vciso-services-title { font-size: clamp(1.5rem, 2.5vw, 2.1rem); max-width: 560px; line-height: 1.2; margin: 0.75rem 0 3rem; }
.vciso-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.vciso-svc-card {
  background: var(--bg);
  padding: 2.25rem 2.25rem 2rem;
  transition: background 0.2s;
}
.vciso-svc-card:hover { background: var(--bg-2); }
.vciso-svc-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 8px;
}
.vciso-svc-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem; font-family: 'Syne', sans-serif; }
.vciso-svc-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.vciso-svc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.vciso-svc-tags span {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
/* Pricing section */
.vciso-pricing { padding: 100px 2rem; background: var(--bg-2); }
.vciso-pricing-inner { max-width: 1200px; margin: 0 auto; }
.vciso-pricing-title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); max-width: 520px; line-height: 1.2; margin: 0.75rem 0 3rem; }
.pricing-block { margin-bottom: 4rem; }
.price-display { display: flex; align-items: center; gap: 2rem; margin-bottom: 3rem; }
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.price-meta { display: flex; flex-direction: column; gap: 0.35rem; }
.price-per { font-size: 1.4rem; font-weight: 600; color: var(--text); }
.price-note { font-size: 0.82rem; color: var(--text-muted); }
.pricing-facts { display: flex; flex-direction: column; gap: 1rem; max-width: 560px; }
.pricing-fact { display: flex; align-items: flex-start; gap: 0.85rem; }
.pricing-fact-check { color: var(--accent); flex-shrink: 0; margin-top: 0.1rem; }
.pricing-fact span { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.pricing-fact strong { color: var(--text); font-weight: 600; }
/* CTA */
.pricing-cta { margin-bottom: 5rem; }
.cta-intro { font-size: 1rem; color: var(--text-muted); line-height: 1.75; max-width: 580px; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--accent); color: #06060A; }
.btn-primary:hover { background: #00d4b0; transform: translateY(-1px); }
.btn-secondary { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.cta-meta { font-size: 0.78rem; color: var(--text-dim); }
/* FAQ */
.vciso-pricing-title { margin-bottom: 3rem; }
.faq-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 2rem; font-family: 'Syne', sans-serif; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem 1.75rem; }
.faq-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.65rem; font-family: 'Syne', sans-serif; }
.faq-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .threatmap-inner { grid-template-columns: 1fr; gap: 3rem; }
  .approach-grid { grid-template-columns: 1fr; }
  .vciso-cred-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .vciso-service-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 1.25rem 60px; }
  .manifesto, .services, .threatmap, .approach, .closing { padding: 60px 1.25rem; }
  .vciso-hero { padding: 100px 1.25rem 60px; }
  .vciso-credentials, .vciso-services, .vciso-pricing { padding: 60px 1.25rem; }
  .hero-stats { gap: 1.5rem; }
  .vciso-trust { gap: 1.5rem; }
  .price-display { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .cta-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
}