/* ShieldCore — Compliance-first Managed IT */
:root {
  --bg: #f8f7f5;
  --fg: #0f1923;
  --accent: #14b8a6;
  --accent-dark: #0d9488;
  --surface: #ffffff;
  --border: #e2e0dc;
  --muted: #6b7280;
  --fg-2: #374151;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav { background: var(--fg); color: var(--bg); }
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--bg);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: rgba(248,247,245,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,184,166,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,184,166,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--bg);
}
.hero-lede {
  font-size: 18px;
  color: rgba(248,247,245,0.7);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
}
.metric {}
.metric-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.metric-label {
  font-size: 12px;
  color: rgba(248,247,245,0.5);
  margin-top: 2px;
  max-width: 120px;
  line-height: 1.3;
}
.metric-divider {
  width: 1px;
  height: 40px;
  background: rgba(248,247,245,0.15);
}
.hero-shield {
  width: 220px;
  flex-shrink: 0;
  opacity: 0.85;
}
.hero-shield svg { width: 100%; height: auto; }

/* Sections */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* Verticals */
.verticals { padding: 96px 0; }
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.vertical-card {
  background: var(--surface);
  padding: 32px;
  transition: background 0.2s;
}
.vertical-card:hover { background: #f0fdf9; }
.vertical-icon { margin-bottom: 20px; }
.vertical-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.vertical-card p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}

/* Services */
.services {
  background: var(--fg);
  color: var(--bg);
  padding: 96px 0;
}
.services .section-label { color: rgba(248,247,245,0.5); }
.services .section-title { color: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service-item {
  padding: 40px 36px;
  border-top: 1px solid rgba(248,247,245,0.1);
  border-right: 1px solid rgba(248,247,245,0.1);
}
.service-item:nth-child(3n) { border-right: none; }
.service-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.service-item h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-item p {
  font-size: 14px;
  color: rgba(248,247,245,0.6);
  line-height: 1.65;
}

/* Differentiators */
.differentiators { padding: 96px 0; }
.diff-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}
.diff-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.diff-body {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 28px;
}
.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg-2);
}
.diff-list svg { flex-shrink: 0; margin-top: 2px; }
.diff-stat-block {
  background: var(--fg);
  color: var(--bg);
  padding: 40px;
  text-align: center;
}
.stat-large {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.stat-desc {
  font-size: 12px;
  color: rgba(248,247,245,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}
.stat-divider {
  height: 1px;
  background: rgba(248,247,245,0.1);
  margin: 28px 0;
}
.stat-item { margin-bottom: 16px; }
.stat-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--bg);
}
.stat-key {
  font-size: 11px;
  color: rgba(248,247,245,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Closing */
.closing { padding: 96px 0; }
.closing-inner { max-width: 760px; }
.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 32px;
}
.closing-cta {
  background: var(--fg);
  color: var(--bg);
  padding: 24px 32px;
  display: inline-block;
}
.closing-cta-text {
  font-size: 15px;
  color: rgba(248,247,245,0.8);
}

/* Footer */
.footer {
  background: var(--fg);
  color: var(--bg);
  padding: 40px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(248,247,245,0.5);
  margin-bottom: 6px;
}
.footer-legal {
  font-size: 12px;
  color: rgba(248,247,245,0.3);
}

/* Responsive */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-shield { display: none; }
  .verticals-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-item:nth-child(3n) { border-right: 1px solid rgba(248,247,245,0.1); }
  .service-item:nth-child(2n) { border-right: none; }
  .diff-inner { grid-template-columns: 1fr; }
  .diff-stat-block { display: none; }
}
@media (max-width: 540px) {
  .verticals-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none !important; }
  .hero-metrics { flex-direction: column; gap: 20px; }
  .metric-divider { display: none; }
  .nav-tagline { display: none; }
}