/* ===== OPS INTEL — LANDING PAGE ===== */
/* Minimax-inspired dark tactical aesthetic */
/* Palette: #0a0a0a bg, #c5a572 gold accent, #1a1a1a cards, #b0b0b0 body text */

/* --- Override base.html font for landing page --- */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0a0a;
  color: #b0b0b0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Navbar --- */
.landing-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.landing-nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
}
.landing-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo {
  height: 28px; width: auto; display: block;
}
.footer-logo {
  height: 52px; width: auto; display: block;
}
.brand-name {
  font-size: 16px; font-weight: 800; color: #fff;
  letter-spacing: 2px;
}
.brand-sub {
  font-size: 10px; font-weight: 500; color: #c5a572;
  letter-spacing: 2px; text-transform: uppercase;
  opacity: 0.85;
}
.landing-nav-links {
  display: flex; gap: 36px;
}
.landing-nav-links a {
  color: #808080; text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.landing-nav-links a:hover { color: #fff; }
.landing-nav-actions {
  display: flex; gap: 12px; align-items: center;
}
.mobile-menu-toggle { display: none; }

/* --- Buttons --- */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: #c5a572; color: #0a0a0a;
  font-size: 13px; font-weight: 700; text-decoration: none;
  text-transform: uppercase; letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none; cursor: pointer;
}
.btn-gold:hover {
  background: #d4b785;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(197, 165, 114, 0.25);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: transparent; color: #b0b0b0;
  font-size: 13px; font-weight: 500; text-decoration: none;
  text-transform: uppercase; letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-lg {
  padding: 18px 40px; font-size: 14px;
}
.btn-arrow { font-size: 18px; }

/* --- Helper classes --- */
.text-gold { color: #c5a572; }

/* --- Hero --- */
.hero {
  position: relative; padding: 200px 32px 120px;
  text-align: center; overflow: hidden;
}
.hero-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(197, 165, 114, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1; max-width: 900px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: rgba(197, 165, 114, 0.08);
  border: 1px solid rgba(197, 165, 114, 0.2);
  font-size: 11px; font-weight: 600; color: #c5a572;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 32px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #c5a572;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: 72px; font-weight: 800; line-height: 1.05;
  letter-spacing: -2px; color: #fff;
  margin: 0 0 24px;
}
.hero-sub {
  font-size: 17px; line-height: 1.8; color: #808080;
  max-width: 640px; margin: 0 auto 40px;
}
.hero-sub strong { color: #b0b0b0; }
.hero-actions {
  display: flex; gap: 16px; justify-content: center;
  margin-bottom: 80px;
}
.hero-stats {
  display: flex; gap: 0; justify-content: center; align-items: center;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-stat { text-align: center; padding: 0 48px; }
.hero-stat strong {
  display: block; font-size: 32px; font-weight: 800; color: #c5a572;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: 12px; color: #666; text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-stat-divider {
  width: 1px; height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

/* --- Sections --- */
.section {
  padding: 120px 32px;
}
.section-alt {
  background: #111111;
}
.section-mission {
  background: #0f0f0f;
}
.section-container {
  max-width: 1200px; margin: 0 auto;
}
.section-label {
  font-size: 11px; font-weight: 700; color: #c5a572;
  text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 16px; text-align: center;
}
.section-title {
  font-size: 48px; font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px; color: #fff;
  margin: 0 0 16px; text-align: center;
}
.section-sub {
  font-size: 16px; color: #666; line-height: 1.8;
  max-width: 560px; margin: 0 auto 60px; text-align: center;
}

/* --- Services Grid --- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 40px 36px;
  background: #1a1a1a;
  border-left: 3px solid #c5a572;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.service-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: #c5a572;
}
.service-card h3 {
  font-size: 20px; font-weight: 700; color: #fff;
  margin: 0 0 20px;
}
.service-list {
  list-style: none; margin: 0 0 24px; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.service-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #999; line-height: 1.6;
}
.check {
  width: 18px; height: 18px; flex-shrink: 0;
  fill: #c5a572; margin-top: 2px;
}
.service-result {
  font-size: 13px; font-weight: 600; color: #c5a572;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0;
}

/* --- Mission Brief --- */
.mission-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 60px; align-items: start;
}
.mission-text .section-label { text-align: left; }
.mission-text .section-title { text-align: left; }
.mission-author {
  margin-bottom: 28px;
}
.mission-author h3 {
  font-size: 18px; font-weight: 700; color: #c5a572;
  margin: 0 0 4px;
}
.mission-author p {
  font-size: 13px; color: #666;
  text-transform: uppercase; letter-spacing: 1px;
  margin: 0;
}
.mission-bio p {
  font-size: 15px; line-height: 1.8; color: #999;
  margin: 0 0 16px;
}
.mission-bio p:last-child { margin-bottom: 0; }
.mission-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  padding: 28px 24px; text-align: center;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.stat-number {
  font-size: 36px; font-weight: 800; color: #c5a572;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px; color: #666;
  text-transform: uppercase; letter-spacing: 1px;
}

/* --- Process --- */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card {
  padding: 36px 28px;
  background: #1a1a1a;
  position: relative;
  transition: all 0.3s ease;
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.process-number {
  font-size: 64px; font-weight: 800;
  color: rgba(197, 165, 114, 0.12);
  line-height: 1; margin-bottom: 16px;
}
.process-card h3 {
  font-size: 18px; font-weight: 700; color: #fff;
  margin: 0 0 12px;
}
.process-card p {
  font-size: 14px; color: #999; line-height: 1.7;
  margin: 0 0 12px;
}
.process-detail {
  font-size: 13px !important; color: #666 !important;
  font-style: italic;
}

/* --- Tactical Advantages --- */
.advantages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.advantage-card {
  padding: 32px;
  background: #1a1a1a;
  transition: all 0.3s ease;
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.advantage-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: #c5a572;
}
.advantage-card h3 {
  font-size: 16px; font-weight: 700; color: #fff;
  margin: 0 0 10px;
}
.advantage-card p {
  font-size: 14px; color: #808080; line-height: 1.7;
  margin: 0;
}

/* --- CTA --- */
.section-cta {
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(197, 165, 114, 0.06) 0%, transparent 70%),
    #0a0a0a;
  padding: 140px 32px;
}
.section-cta .section-title {
  margin-bottom: 16px;
}
.section-cta .section-sub {
  margin-bottom: 40px;
}
.section-cta .section-sub strong { color: #b0b0b0; }
.cta-checks {
  display: flex; gap: 32px; justify-content: center;
  margin-top: 40px;
}
.cta-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #808080;
}
.cta-check .check {
  width: 16px; height: 16px;
}

/* --- Footer --- */
.landing-footer {
  padding: 80px 32px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0f0f0f;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p {
  margin: 20px 0 0; font-size: 14px; color: #666; line-height: 1.7;
}
.footer-brand-name {
  display: flex; align-items: center; gap: 12px;
}
.footer-brand-name .brand-name { font-size: 15px; }
.footer-brand-name .brand-sub { font-size: 9px; }
.footer-links {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-links h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: #fff; margin: 0 0 8px;
}
.footer-links a {
  font-size: 14px; color: #666; text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: #b0b0b0; }
.footer-contact-link {
  display: flex; align-items: center; gap: 8px;
}
.footer-contact-link svg {
  color: #c5a572; flex-shrink: 0;
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p {
  font-size: 13px; color: #444; margin: 0;
}
.footer-legal {
  display: flex; gap: 24px;
}
.footer-legal a {
  font-size: 13px; color: #444; text-decoration: none;
  transition: color 0.3s ease;
}
.footer-legal a:hover { color: #808080; }

/* --- Responsive: Tablet --- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 52px; }
  .services-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .mission-stats { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* --- Responsive: Mobile --- */
@media (max-width: 768px) {
  .landing-nav-links,
  .landing-nav-actions { display: none; }
  .landing-nav-links.open,
  .landing-nav-actions.open {
    display: flex; flex-direction: column; gap: 16px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .landing-nav-actions.open { padding-top: 0; }
  .mobile-menu-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .mobile-menu-toggle span {
    display: block; width: 22px; height: 2px;
    background: #808080; border-radius: 1px;
  }

  .hero { padding: 150px 20px 80px; }
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-stat { padding: 0; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .hero-glow { width: 400px; height: 300px; }

  .section { padding: 80px 20px; }
  .section-title { font-size: 32px; }
  .section-sub { font-size: 15px; }

  .services-grid,
  .platform-grid,
  .process-grid,
  .advantages-grid { grid-template-columns: 1fr; }

  .mission-grid { grid-template-columns: 1fr; }
  .mission-stats { grid-template-columns: 1fr 1fr; }

  .cta-dual { flex-direction: column; gap: 32px; }
  .cta-divider { flex-direction: row; }
  .cta-divider::before,
  .cta-divider::after { width: 48px; height: 1px; }
  .cta-option { padding: 0 24px; }

  .cta-checks { flex-direction: column; align-items: center; gap: 12px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* --- Platform Section --- */
.section-platform {
  background: #111111;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.platform-card {
  padding: 36px 32px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: all 0.3s ease;
}
.platform-card:hover {
  border-color: rgba(197, 165, 114, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.platform-card-featured {
  border-color: rgba(197, 165, 114, 0.25);
  background: linear-gradient(135deg, #1e1a14 0%, #1a1a1a 100%);
}
.platform-tag {
  position: absolute; top: 20px; right: 20px;
  padding: 4px 10px;
  background: rgba(197, 165, 114, 0.15);
  border: 1px solid rgba(197, 165, 114, 0.3);
  font-size: 10px; font-weight: 700; color: #c5a572;
  letter-spacing: 2px; text-transform: uppercase;
}
.platform-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: #c5a572;
}
.platform-card h3 {
  font-size: 20px; font-weight: 700; color: #fff;
  margin: 0 0 12px;
}
.platform-card p {
  font-size: 14px; color: #808080; line-height: 1.7;
  margin: 0 0 20px;
}
.platform-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.platform-list li {
  font-size: 13px; color: #666; line-height: 1.5;
  padding-left: 16px; position: relative;
}
.platform-list li::before {
  content: '—';
  position: absolute; left: 0; color: #c5a572;
  font-size: 11px; top: 1px;
}
.platform-card-cta {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
  border: 1px solid rgba(197, 165, 114, 0.15);
}
.platform-card-cta:hover {
  border-color: rgba(197, 165, 114, 0.3);
}
.platform-cta-inner {
  text-align: center; padding: 12px 0;
}
.platform-cta-inner h3 {
  font-size: 22px; font-weight: 800; color: #fff;
  margin: 0 0 12px;
}
.platform-cta-inner p {
  font-size: 14px; color: #666; line-height: 1.6;
  margin: 0 0 24px;
}
.platform-cta-note {
  margin-top: 16px;
  font-size: 13px; color: #555;
}
.platform-cta-note a {
  color: #c5a572; text-decoration: none;
}
.platform-cta-note a:hover { color: #d4b785; }

/* --- Dual CTA --- */
.cta-dual {
  display: flex; align-items: center; justify-content: center; gap: 0;
  margin-bottom: 48px;
}
.cta-option {
  text-align: center; padding: 0 48px;
}
.cta-option-label {
  font-size: 11px; font-weight: 700; color: #c5a572;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 20px;
}
.cta-option-note {
  margin-top: 14px;
  font-size: 12px; color: #555;
}
.cta-divider {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 24px;
}
.cta-divider::before,
.cta-divider::after {
  content: '';
  display: block; width: 1px; height: 48px;
  background: rgba(255, 255, 255, 0.08);
}
.cta-divider span {
  display: block; padding: 10px 0;
  font-size: 12px; color: #444; text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- Smooth scroll --- */
html {
  scroll-behavior: smooth;
}

/* --- Selection colour --- */
::selection {
  background: rgba(197, 165, 114, 0.3);
  color: #fff;
}

/* --- Legal pages --- */
.legal-page {
  min-height: calc(100vh - 80px);
  padding: 80px 0 60px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  color: #ccc;
  line-height: 1.8;
}

.legal-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.legal-updated {
  font-size: 0.875rem;
  color: #555;
  margin: 0 0 48px;
}

.legal-content h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e0e0e0;
  margin: 36px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 1.5rem;
}

.legal-content ul li {
  margin-bottom: 8px;
}

.legal-content a {
  color: #c5a572;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}
