/* CenterOps Shared Stylesheet v1.0 */
/* Self-hosted icons + fonts — no third-party requests */
@import url('assets/tabler-icons.min.css');

@font-face { font-family: 'IBM Plex Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('assets/fonts/ibm-plex-sans-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('assets/fonts/ibm-plex-sans-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('assets/fonts/ibm-plex-sans-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('assets/fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('assets/fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('assets/fonts/inter-latin-600-normal.woff2') format('woff2'); }

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

:root {
  --ultra-blue: #0055FF;
  --indigo: #2C3B8E;
  --seafoam: #36C29F;
  --seafoam-lite: #E8F8F4;
  --seafoam-dark: #1A7A62;
  --powder: #EEF7FF;
  --slate: #404142;
  --sky: #59D0FF;
  --indigo-lite: #C7CADE;
  --muted: #6b6c6d;
  --border: #E6E6E6;
}

body { font-family: 'Inter', sans-serif; color: var(--slate); background: #fff; }

/* NAV */
.co-nav { background: var(--ultra-blue); padding: 0 48px; height: 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.co-nav-logo { color: #fff; font-size: 20px; font-weight: 600; font-family: 'IBM Plex Sans', sans-serif; text-decoration: none; }
.co-nav-logo span { color: var(--sky); }
.co-nav-links { display: flex; gap: 24px; align-items: center; }
.co-nav-links a { color: rgba(255,255,255,0.85); font-size: 13px; text-decoration: none; transition: color 0.15s; }
.co-nav-links a:hover, .co-nav-links a.active { color: #fff; }
.co-nav-links a.co-nav-cta { background: #fff; color: var(--ultra-blue); border: none; border-radius: 6px; padding: 7px 16px; font-size: 13px; font-weight: 500; cursor: pointer; text-decoration: none; }
.co-nav-links a.co-nav-cta:hover { color: var(--ultra-blue); }
/* Hamburger (mobile only) — pure CSS checkbox toggle, no JS */
.co-nav-toggle { display: none; }
.co-nav-burger { display: none; color: #fff; font-size: 26px; line-height: 1; cursor: pointer; }

/* FOOTER */
.co-footer { background: var(--indigo); padding: 32px 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.co-footer-logo { color: #fff; font-family: 'IBM Plex Sans', sans-serif; font-size: 15px; font-weight: 600; }
.co-footer-logo span { color: var(--sky); }
.co-footer-links { display: flex; gap: 24px; }
.co-footer-links a { color: rgba(255,255,255,0.6); font-size: 13px; text-decoration: none; }
.co-footer-copy { color: rgba(255,255,255,0.4); font-size: 12px; }

/* UTILITIES */
.ibm { font-family: 'IBM Plex Sans', sans-serif; }
.eyebrow { font-size: 12px; font-weight: 600; color: var(--ultra-blue); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.section { padding: 64px 48px; }
.section-title { font-family: 'IBM Plex Sans', sans-serif; font-size: 28px; font-weight: 600; color: var(--slate); margin-bottom: 10px; }
.section-sub { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 540px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: 15px; padding: 24px; }
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 500; }
.badge-blue { background: var(--powder); color: var(--indigo); }
.badge-green { background: var(--seafoam-lite); color: var(--seafoam-dark); }
.btn-primary { background: var(--ultra-blue); color: #fff; border: none; border-radius: 8px; padding: 12px 28px; font-size: 15px; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.15s; }
.btn-primary:hover { background: var(--indigo); }
.btn-ghost-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); border-radius: 8px; padding: 12px 28px; font-size: 15px; cursor: pointer; text-decoration: none; display: inline-block; }

/* PROOF BAR */
.proof-bar { background: var(--powder); padding: 12px 48px; display: flex; gap: 32px; justify-content: center; align-items: center; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.proof-item { font-size: 13px; color: var(--indigo); display: flex; align-items: center; gap: 6px; font-weight: 500; }
.proof-item i { color: var(--seafoam); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .co-nav { padding: 0 20px; }
  .co-nav-burger { display: block; }
  .co-nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ultra-blue); padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  }
  .co-nav-toggle:checked ~ .co-nav-links { display: flex; }
  .co-nav-links a { padding: 13px 20px; font-size: 15px; }
  .co-nav-links a.co-nav-cta { margin: 8px 20px 4px; text-align: center; padding: 11px 16px; font-size: 15px; }
  .section { padding: 48px 20px; }
  .co-footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
}
