/* Strategic IQ — Black/Gold Enterprise Theme */
:root {
  --bg: #0a0a0a;
  --bg-alt: #0f0f0f;
  --surface: #141414;
  --surface-2: #1a1a1a;
  --fg: #f5f0e8;
  --fg-muted: #9a9080;
  --accent: #c9a84c;
  --accent-dim: rgba(201, 168, 76, 0.08);
  --accent-border: rgba(201, 168, 76, 0.2);
  --accent-light: rgba(201, 168, 76, 0.06);
  --font-head: 'Syne', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-head);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-border); border-radius: 3px; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 48px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 28px; height: 28px; flex-shrink: 0;
}
.nav-brand { display: flex; flex-direction: column; }
.nav-name {
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.12em; color: var(--fg); text-transform: uppercase;
}
.nav-tagline {
  font-family: var(--font-mono); font-size: 0.6rem; color: var(--fg-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--fg-muted);
  letter-spacing: 0.06em; text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--accent); }
.nav-cta {
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--accent);
  border: 1px solid var(--accent-border); padding: 8px 18px;
  text-decoration: none; letter-spacing: 0.06em;
  transition: background 0.2s, border-color 0.2s;
}
.nav-cta:hover { background: var(--accent-dim); border-color: var(--accent); }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 48px 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_189848/0ff0605b-800a-4711-9324-57a87a9efc92.jpg');
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.85) 60%, rgba(10,10,10,1) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 100%);
}
.hero-content {
  max-width: 1200px; margin: 0 auto; width: 100%; position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-left { }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--accent);
  letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid var(--accent-border); padding: 6px 14px;
  border-radius: 2px; background: var(--accent-dim);
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--fg); margin-bottom: 24px;
}
.hero-title .accent { color: var(--accent); }
.hero-sub {
  font-size: 1.05rem; color: var(--fg-muted); max-width: 480px;
  line-height: 1.75; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #0a0a0a;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em; text-decoration: none;
  padding: 14px 28px;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-primary .arrow { font-size: 1rem; }
.btn-secondary {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--fg-muted); letter-spacing: 0.06em; text-decoration: none;
  padding: 14px 20px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--accent); border-color: var(--accent-border); }
.hero-badges { display: flex; gap: 0; margin-top: 36px; }
.badge-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--fg-muted);
  letter-spacing: 0.06em; padding: 10px 20px 10px 0;
  border-right: 1px solid rgba(201, 168, 76, 0.12);
  margin-right: 20px;
}
.badge-item .check { color: var(--accent); font-size: 0.8rem; }
.badge-item:last-child { border-right: none; }

/* Hero right — credentials */
.hero-right { display: flex; flex-direction: column; gap: 16px; }
.cred-card {
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 24px 28px;
  display: flex; align-items: flex-start; gap: 16px;
  backdrop-filter: blur(8px);
}
.cred-icon { flex-shrink: 0; width: 36px; height: 36px; }
.cred-label {
  font-family: var(--font-mono); font-size: 0.6rem; color: var(--accent);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px;
}
.cred-value { font-size: 0.95rem; font-weight: 600; color: var(--fg); line-height: 1.4; }
.cred-sub { font-size: 0.8rem; color: var(--fg-muted); margin-top: 2px; }

/* PROBLEM */
.problem {
  padding: 120px 48px;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
}
.problem-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--accent);
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 24px;
}
.section-sub {
  font-size: 1rem; color: var(--fg-muted); max-width: 560px;
  line-height: 1.75; margin-bottom: 72px;
}
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.problem-card {
  background: var(--surface); border: 1px solid rgba(201, 168, 76, 0.06);
  padding: 36px 32px;
  position: relative; overflow: hidden;
}
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  opacity: 0.4;
}
.problem-num {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--accent);
  letter-spacing: 0.1em; margin-bottom: 16px; opacity: 0.7;
}
.problem-card h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.problem-card p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.7; }

/* SOLUTION */
.solution {
  padding: 120px 48px; background: var(--bg-alt);
  border-top: 1px solid rgba(201, 168, 76, 0.06);
}
.solution-inner { max-width: 1200px; margin: 0 auto; }
.solution-main {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  margin-bottom: 80px;
}
.solution-visual {
  background: var(--surface); border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 48px; display: flex; flex-direction: column; gap: 24px;
}
.sv-header { display: flex; align-items: center; gap: 12px; }
.sv-badge {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--accent);
  border: 1px solid var(--accent-border); padding: 5px 12px;
  background: var(--accent-dim); letter-spacing: 0.08em;
}
.sv-title { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.01em; }
.sv-title .accent { color: var(--accent); }
.sv-divider { height: 1px; background: rgba(201, 168, 76, 0.12); }
.sv-row { display: flex; align-items: center; gap: 16px; }
.sv-icon-wrap {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim); border: 1px solid var(--accent-border); border-radius: 2px;
  flex-shrink: 0;
}
.sv-text { font-size: 0.875rem; color: var(--fg); }
.sv-sub { font-size: 0.75rem; color: var(--fg-muted); margin-top: 2px; }
.sv-status {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--accent);
  letter-spacing: 0.06em;
}
.sv-status-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: pulse 2s infinite;
}
.solution-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.pillar {
  background: var(--surface-2); border: 1px solid rgba(201, 168, 76, 0.08);
  padding: 32px 28px;
}
.pillar-icon { margin-bottom: 20px; }
.pillar h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.pillar p { font-size: 0.825rem; color: var(--fg-muted); line-height: 1.65; }

/* FEATURES */
.features {
  padding: 120px 48px; border-top: 1px solid rgba(201, 168, 76, 0.06);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-header { margin-bottom: 64px; }
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
}
.feature-card {
  background: var(--surface); border: 1px solid rgba(201, 168, 76, 0.06);
  padding: 44px 40px; display: flex; gap: 20px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(201, 168, 76, 0.2); }
.feature-icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim); border: 1px solid var(--accent-border); border-radius: 2px;
}
.feature-body { flex: 1; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.7; }
.feature-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 0.6rem; color: var(--accent);
  letter-spacing: 0.08em; margin-top: 16px;
  border: 1px solid var(--accent-border); padding: 4px 10px;
  background: var(--accent-dim);
}
.tag-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

/* DIFFERENTIATORS */
.diff {
  padding: 120px 48px; background: var(--bg-alt);
  border-top: 1px solid rgba(201, 168, 76, 0.06);
}
.diff-inner { max-width: 1200px; margin: 0 auto; }
.diff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px;
}
.diff-card {
  background: var(--surface); border: 1px solid rgba(201, 168, 76, 0.08);
  padding: 40px 36px;
}
.diff-num {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--accent);
  letter-spacing: 0.15em; margin-bottom: 20px; opacity: 0.7;
}
.diff-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.diff-card p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 20px; }
.diff-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.6rem; color: var(--fg-muted);
  border: 1px solid rgba(201, 168, 76, 0.1); padding: 5px 12px;
  letter-spacing: 0.06em;
}
.diff-tag .check { color: var(--accent); }

/* PRICING */
.pricing {
  padding: 120px 48px; border-top: 1px solid rgba(201, 168, 76, 0.06);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-header { margin-bottom: 16px; }
.pricing-note {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--fg-muted);
  letter-spacing: 0.06em; margin-top: 8px; opacity: 0.7;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px;
  margin-top: 56px;
}
.price-card {
  background: var(--surface); border: 1px solid rgba(201, 168, 76, 0.06);
  padding: 32px 24px; display: flex; flex-direction: column;
  transition: border-color 0.2s;
}
.price-card:hover { border-color: rgba(201, 168, 76, 0.2); }
.price-card.featured {
  border-color: var(--accent-border); background: var(--surface-2);
}
.price-card.featured .price-label { color: var(--accent); }
.price-tier {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--fg-muted);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
.price-amount {
  font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px;
  color: var(--fg);
}
.price-card.featured .price-amount { color: var(--accent); }
.price-period {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--fg-muted);
  letter-spacing: 0.06em; margin-bottom: 24px;
}
.price-divider { height: 1px; background: rgba(201, 168, 76, 0.08); margin-bottom: 20px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.price-features li {
  font-size: 0.775rem; color: var(--fg-muted); display: flex; align-items: flex-start; gap: 8px;
}
.price-features li::before {
  content: '✓'; color: var(--accent); font-size: 0.7rem; flex-shrink: 0; margin-top: 1px;
}
.price-cta {
  display: block; text-align: center;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em;
  padding: 10px; margin-top: 20px;
  border: 1px solid var(--accent-border);
  color: var(--fg-muted); text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.price-cta:hover { color: var(--accent); border-color: var(--accent); }
.price-card.featured .price-cta {
  background: var(--accent); color: #0a0a0a; border-color: var(--accent);
}
.price-card.featured .price-cta:hover { opacity: 0.88; }

/* CTA */
.cta-section {
  padding: 140px 48px; background: var(--bg-alt);
  border-top: 1px solid rgba(201, 168, 76, 0.06); text-align: center;
}
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-section .section-title { margin-bottom: 16px; }
.cta-section .section-sub { margin: 0 auto 52px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; }
.cta-sub {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--fg-muted);
  letter-spacing: 0.06em; margin-top: 24px; opacity: 0.6;
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  padding: 48px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; }
.footer-name {
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.1em; color: var(--fg); text-transform: uppercase;
}
.footer-tagline { font-family: var(--font-mono); font-size: 0.65rem; color: var(--fg-muted); letter-spacing: 0.06em; }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--accent);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.825rem; color: var(--fg-muted); text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(201, 168, 76, 0.06);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--fg-muted);
  letter-spacing: 0.06em; opacity: 0.5;
}
.footer-founder {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--fg-muted);
  letter-spacing: 0.04em; opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .price-card:last-child { grid-column: 1 / -1; max-width: 340px; justify-self: center; }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-main { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 56px auto 0; }
  .pricing-grid .price-card:last-child { grid-column: auto; max-width: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .nav-right { display: none; }
  .hero { padding: 100px 24px 60px; }
  .problem, .solution, .features, .diff, .pricing { padding: 80px 24px; }
  .cta-section { padding: 100px 24px; }
  .footer { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 2.4rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .solution-pillars { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; gap: 8px; }
  .badge-item { border-right: none; margin-right: 0; padding: 8px 0; border-bottom: 1px solid rgba(201,168,76,0.1); }
}