/* OpenCyOps Brand System */
:root {
  --bg-base: #0A1628;
  --bg-panel: #0D1117;
  --bg-elevated: #111827;
  --accent-cyan: #00E5FF;
  --signal-green: #00FF94;
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-default: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(0, 229, 255, 0.3);
}

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

html, body {
  background: var(--bg-base);
  color: #E5E7EB;
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

::selection { background: rgba(0, 229, 255, 0.3); color: #fff; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  height: 80px;
}
.site-header .container {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.logo-mark { width: 32px; height: 32px; flex-shrink: 0; }
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1;
}
.logo-text .light { font-weight: 300; }
.logo-text .bold { font-weight: 700; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  position: relative;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 200ms ease;
  white-space: nowrap;
}
.nav a:hover { color: var(--accent-cyan); }
.nav a.active { color: var(--accent-cyan); }

.cta-header {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-cyan);
  color: var(--bg-base);
  font-weight: 600; font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 200ms ease;
  white-space: nowrap;
}
.cta-header:hover {
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.25);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: transparent; border: none; color: #fff;
  cursor: pointer; padding: 8px;
}

@media (max-width: 1024px) {
  .nav, .cta-header { display: none; }
  .mobile-toggle { display: block; }
  .site-header.open .nav {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 80px; left: 0; right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 24px;
  }
  .site-header.open .nav a { padding: 14px 16px; font-size: 16px; }
  .site-header.open .cta-header { display: inline-flex; margin: 16px 24px 24px; }
}

/* BACKGROUND EFFECTS */
.dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0, 229, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
  pointer-events: none;
}
.mesh-glow {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 229, 255, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0, 229, 255, 0.05), transparent 60%);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

/* SECTIONS */
.section { position: relative; padding: 96px 0; }
.section-panel { background: var(--bg-panel); }

/* HERO */
.hero {
  position: relative;
  padding: 160px 0 96px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero h1 {
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero h1 .accent { color: var(--accent-cyan); }
.hero .lead {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 36px;
}

/* PAGE HERO (non-home) */
.page-hero {
  padding: 160px 0 72px;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero .lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.65;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  font-weight: 600; font-size: 15px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 200ms ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent-cyan);
  color: var(--bg-base);
}
.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(0, 229, 255, 0.35);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-ghost:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}
.btn-row {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 40px;
}

/* TRUST PILLS */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12.5px;
  color: #D1D5DB;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-cyan); }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.hero-visual::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.25), transparent 60%);
  filter: blur(48px);
  opacity: 0.7;
}

/* GRID LAYOUTS */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

/* CARDS */
.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px;
  transition: all 300ms ease;
  display: flex; flex-direction: column;
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

/* COMMITMENT BIG NUMBERS */
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
}

/* SECTION HEADERS */
.section-header { max-width: 720px; margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* PACKAGE CARDS */
.pkg-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  display: flex; flex-direction: column;
  transition: all 300ms ease;
}
.pkg-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.pkg-card.recommended {
  border-color: rgba(0, 229, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.15);
}
.pkg-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--accent-cyan);
  color: var(--bg-base);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px;
}
.pkg-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.pkg-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}
.pkg-card .outcome {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 20px;
}
.pkg-card .price {
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 14px;
}
.pkg-card .learn {
  color: var(--accent-cyan);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 200ms ease;
}
.pkg-card:hover .learn { gap: 10px; }

/* FOUNDER CARDS */
.founder-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  display: flex; flex-direction: column;
  transition: border-color 300ms ease;
}
.founder-card:hover { border-color: var(--border-hover); }
.founder-header {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 24px;
}
.avatar {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.25), rgba(0, 229, 255, 0.05));
  border: 1px solid rgba(0, 229, 255, 0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--accent-cyan);
}
.founder-header h3 {
  font-size: 22px;
  line-height: 1.2;
}
.founder-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-top: 6px;
}
.founder-discipline {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 2px;
}
.founder-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}
.founder-handles {
  font-size: 12.5px;
  color: var(--text-secondary);
  border-left: 2px solid rgba(0, 229, 255, 0.25);
  padding-left: 14px;
  margin-bottom: 20px;
}
.founder-handles .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.founder-links {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: auto;
}
.link-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 16px;
  border-radius: 9px;
  font-size: 13px; font-weight: 500;
  transition: all 200ms ease;
}
.link-btn-email {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.link-btn-email:hover {
  background: var(--accent-cyan);
  color: var(--bg-base);
  border-color: var(--accent-cyan);
}
.link-btn-linkedin {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #CBD5E1;
}
.link-btn-linkedin:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

/* FINAL CTA */
.final-cta {
  padding: 112px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1; margin-bottom: 24px;
}
.final-cta .dim { color: var(--text-secondary); }
.final-cta p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 640px; margin: 0 auto 40px;
  line-height: 1.65;
}
.final-cta .btn-row { justify-content: center; }

/* FOOTER */
.site-footer {
  background: #060B14;
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 13.5px;
  color: #CBD5E1;
  transition: color 200ms;
}
.footer-col a:hover { color: var(--accent-cyan); }
.footer-brand p {
  font-size: 13.5px;
  color: var(--text-secondary);
  max-width: 320px;
  margin: 12px 0 20px;
  line-height: 1.6;
}
.footer-emails { margin-top: 20px; }
.footer-emails a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: #fff;
  margin-bottom: 6px;
}
.footer-emails a:hover { color: var(--accent-cyan); }
.promises { margin-top: 24px; }
.promise {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.promise::before {
  content: "✓"; color: var(--signal-green); font-weight: bold;
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-bottom a { margin-left: 20px; }
.footer-bottom a:first-child { margin-left: 0; }
.signoff { text-align: center; font-style: italic; color: #475569; font-size: 11.5px; margin-top: 12px; }

/* TABLE */
.sla-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  font-size: 14px;
}
.sla-table th, .sla-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}
.sla-table thead { background: rgba(255, 255, 255, 0.03); }
.sla-table th {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  font-weight: 500;
}
.sla-table tr:last-child td { border-bottom: none; }

/* QUALIFIER */
.q-step-indicator {
  display: flex; align-items: center; gap: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.q-step-indicator .active { color: var(--accent-cyan); }
.q-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  cursor: pointer;
  transition: all 200ms ease;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  text-align: left;
  width: 100%;
}
.q-option:hover {
  border-color: rgba(0, 229, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
}
.q-option.selected {
  border-color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.08);
}
.q-option .arrow { color: var(--text-muted); transition: transform 200ms; }
.q-option:hover .arrow { color: var(--accent-cyan); transform: translateX(4px); }
.q-check {
  width: 20px; height: 20px; border: 2px solid #64748B;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.q-option.selected .q-check {
  background: var(--accent-cyan); border-color: var(--accent-cyan); color: var(--bg-base);
}
.q-checkbox-row { display: flex; align-items: center; gap: 14px; }

.q-result {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), transparent);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
}
.q-result .rec-tag {
  display: inline-block;
  background: var(--accent-cyan);
  color: var(--bg-base);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px;
  margin-bottom: 20px;
}

/* SUPPORT NOTE (About page) */
.support-note {
  margin-top: 48px;
  max-width: 720px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}
.support-note .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 10px;
}
.support-note p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.support-note strong { color: #fff; font-weight: 600; }
.support-note a { color: var(--accent-cyan); }
.support-note a:hover { text-decoration: underline; }

/* TIMELINE */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.timeline-step {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  position: relative;
}
.timeline-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; color: var(--accent-cyan);
  margin-bottom: 10px; display: block;
  letter-spacing: 0.1em;
}
.timeline-step h4 {
  font-size: 15px;
  margin-bottom: 8px;
}
.timeline-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* FORMS */
.form label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form input, .form textarea, .form select {
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 200ms;
}
.form input:focus, .form textarea:focus, .form select:focus {
  border-color: var(--accent-cyan);
}
.form-row { margin-bottom: 18px; }

/* UTILITY */
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.text-accent { color: var(--accent-cyan); }
.italic { font-style: italic; }
.center { text-align: center; }
