/* Golden-Pharma — Dark Corporate Theme */
:root {
  --bg:        #080c10;
  --bg-2:      #0d1117;
  --bg-3:      #111820;
  --border:    rgba(255,255,255,0.07);
  --gold:      #d4a843;
  --gold-2:    #f0c566;
  --cyan:      #22d3ee;
  --text:      #e2e8f0;
  --text-muted:#8892a4;
  --radius:    12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,12,16,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 13px;
  color: #080c10;
}
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 17px;
  color: var(--text);
}
.logo-text .accent { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-2)) !important;
  color: #080c10 !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: opacity .2s !important;
}
.btn-nav:hover { opacity: 0.85; }

/* HERO */
.hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,168,67,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(34,211,238,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.badge {
  display: inline-block;
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 32px;
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  max-width: 660px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; margin-bottom: 72px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #080c10;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.btn-large { padding: 18px 44px; font-size: 17px; }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 48px;
  gap: 0;
}
.stat { text-align: center; padding: 0 40px; }
.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
}
.stat-label { font-size: 13px; color: var(--text-muted); }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* SECTIONS */
.section { padding: 96px 0; }
.section-dark { background: var(--bg-2); }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 56px;
}

/* FEATURE GRID */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover {
  border-color: rgba(212,168,67,0.25);
  transform: translateY(-2px);
}
.feature-icon { font-size: 28px; margin-bottom: 16px; }
.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* PIPELINE */
.pipeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.pipeline-step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.pipeline-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 12px;
}
.pipeline-content h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.pipeline-content p { font-size: 13px; color: var(--text-muted); }
.pipeline-arrow {
  font-size: 22px;
  color: var(--gold);
  opacity: 0.4;
  padding: 0 8px;
  align-self: center;
  flex-shrink: 0;
}

/* COMPLIANCE */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.compliance-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  font-size: 14px;
  color: var(--text-muted);
}
.compliance-badge {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #080c10;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 6px;
}

/* MARKET */
.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.market-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.highlight-card {
  border-color: rgba(212,168,67,0.35);
  background: linear-gradient(160deg, rgba(212,168,67,0.06), transparent);
}
.market-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.market-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.market-metric {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  padding: 10px 14px;
  background: rgba(212,168,67,0.08);
  border-radius: 8px;
}

/* DIFFERENTIATORS */
.diff-list { display: flex; flex-direction: column; gap: 20px; max-width: 800px; }
.diff-item { display: flex; gap: 20px; align-items: flex-start; font-size: 15px; }
.diff-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #080c10;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.diff-item strong { color: var(--text); }
.diff-item { color: var(--text-muted); }

/* CONTACT */
.contact-section { background: var(--bg-2); text-align: center; }
.contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: var(--bg-3);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 680px;
  margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; width: 100%; }
.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.contact-item a { color: var(--gold); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-text { font-size: 13px; color: var(--text-muted); text-align: right; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 120px 0 64px; }
  .hero-stats { padding: 20px 24px; }
  .stat { padding: 0 20px; }
  .stat-divider { display: none; }
  .pipeline { flex-direction: column; align-items: center; }
  .pipeline-arrow { transform: rotate(90deg); }
  .pipeline-step { max-width: 100%; width: 100%; }
  .contact-box { padding: 32px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-text { text-align: center; }
}
