/* 007.llc — Premium On-Call IT & Cyber Consulting */
/* Production-ready styles — June 2026 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&amp;family=Space+Grotesk:wght@500;600&amp;display=swap');

:root {
  --accent: #ff5f00;
  --accent-light: #ff7a33;
  --bg: #05070f;
  --surface: #0a0c17;
  --surface-2: #11131f;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: rgba(255,255,255,0.08);
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', system_ui, -apple-system, sans-serif;
}

/* Typography */
.display-font {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.section-header {
  font-size: 2.25rem;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
}

/* Navigation */
.nav-active {
  color: var(--accent);
  position: relative;
}
.nav-active:after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--accent), #00e5ff);
}

/* Cyber Grid Background */
.cyber-grid {
  background-image: 
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

/* Glass Cards */
.glass-card {
  background: rgba(10, 12, 23, 0.65);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), 
              box-shadow 0.2s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.2s ease;
}
.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 30px -12px rgb(0 0 0 / 0.15), 0 10px 12px -6px rgb(0 0 0 / 0.1);
  border-color: rgba(255,255,255,0.15);
}

/* Service Cards */
.service-card {
  transition: all 0.2s cubic-bezier(0.23, 1.0, 0.32, 1);
}
.service-card:hover {
  border-color: rgba(249, 115, 22, 0.35);
}

/* Scanline Animation (Hero) */
.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #ff5f00, transparent);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}
.scan-line.is-active {
  animation: scan 1.1s cubic-bezier(0.23, 1.0, 0.32, 1);
  opacity: 0.65;
}
@keyframes scan {
  0% { top: 8%; }
  100% { top: 92%; }
}

/* Logo Thumbs */
.logo-thumb {
  transition: all 0.15s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}
.logo-thumb:hover {
  transform: scale(1.035);
  border-color: rgba(249, 115, 22, 0.6) !important;
  box-shadow: 0 0 0 1px rgba(255, 95, 0, 0.2);
}
.logo-thumb.active {
  border-color: #ff5f00 !important;
  box-shadow: 0 0 0 3px rgba(255, 95, 0, 0.15);
}

/* Modals */
.modal {
  animation: modalPop 0.22s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Form Inputs */
.input {
  background-color: #0a0c17;
  border: 1px solid rgba(255,255,255,0.1);
  color: #f1f5f9;
  transition: all 0.15s ease;
}
.input:focus {
  outline: none;
  border-color: #ff5f00;
  box-shadow: 0 0 0 3px rgba(255, 95, 0, 0.1);
}

/* Buttons */
.btn-primary {
  background-color: #ff5f00;
  color: white;
  transition: all 0.15s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn-primary:hover {
  background-color: #ff7a33;
  transform: translateY(-1px);
}
.btn-secondary {
  transition: all 0.15s ease;
}

/* Project Cards */
.project-card {
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
}

/* FAQ */
.faq-question {
  transition: all 0.2s ease;
}
.faq-question:hover {
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.2s ease;
}
.faq-answer.open {
  max-height: 200px;
  padding-top: 0.5rem;
}

/* Subtle Orbital Glow for Logo */
.logo-orbital {
  position: relative;
}
.logo-orbital::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(255,95,0,0.08) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
  animation: orbital-pulse 4s ease-in-out infinite;
}
@keyframes orbital-pulse {
  0%, 100% { transform: scale(0.96); opacity: 0.5; }
  50% { transform: scale(1.04); opacity: 0.75; }
}

/* Engagement Model Cards */
.model-card {
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.model-card.recommended {
  border-color: rgba(255, 95, 0, 0.4);
  position: relative;
}
.model-card.recommended::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -9px;
  right: 20px;
  background: #ff5f00;
  color: white;
  font-size: 9px;
  font-weight: 600;
  padding: 1px 9px;
  border-radius: 9999px;
  letter-spacing: 0.5px;
}

/* Stats */
.stat-number {
  font-variant-numeric: tabular-nums;
}