:root {
  --primary: #1f4f8b;
  --primary-light: #2f6fbd;
  --accent: #f5a623;
  --bg: #f5f7fb;
  --text: #1b1f24;
  --muted: #6b7280;
  --white: #ffffff;
  --border: #e5e7eb;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* Layout */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Logo + Text */

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn,
.btn-outline {
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
}

.btn:hover {
  opacity: 0.95;
}

.btn-outline {
  border-color: var(--border);
  color: var(--muted);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

/* Hero */

.hero {
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-meta span {
  display: flex;
  flex-direction: column;
}

.hero-meta strong {
  color: var(--text);
  font-size: 0.95rem;
}

/* Hero card */

.hero-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-chip {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(31, 79, 139, 0.07);
  color: var(--primary);
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1rem 0;
}

.metric {
  font-size: 0.85rem;
}

.metric-label {
  color: var(--muted);
}

.metric-value {
  font-weight: 600;
}

.hero-hint {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Sections */

.section {
  padding: 3rem 0;
}

.section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  margin-bottom: 0.3rem;
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.section p {
  color: var(--muted);
  max-width: 650px;
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
}

/* Two-column layout */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.contact-card h3 {
  margin-bottom: 0.75rem;
}

.contact-detail {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

/* Form */

form {
  display: grid;
  gap: 0.85rem;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
  display: inline-block;
}

input,
textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid var(--border);
  padding: 0.5rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 1px rgba(47, 111, 189, 0.2);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

/* Footer */

footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  background: var(--white);
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Utility */

.text-muted {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Mobile Menu */

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  color: var(--primary);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}

.mobile-menu a {
  padding: 0.75rem 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
}

.mobile-menu a:hover {
  color: var(--primary);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner,
  .two-col,
  .card-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.5rem;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  .nav-links a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}
/* Dashboard */

.dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dashboard-tab {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.dashboard-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.dashboard-panel {
  display: none;
}

.dashboard-panel.active {
  display: block;
}

.contract-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}

.contract-card {
  background: var(--white);
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  padding: 1rem 1.1rem;
}

.contract-card h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.contract-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.contract-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
/* Discovery Box Styling */
.discovery-box {
  max-width: 950px;
  margin: 0 auto;           /* centers the box */
  margin-bottom: 2rem;
  padding: 1.75rem;
  background: var(--white);
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.discovery-box h3 {
  margin-bottom: 0.5rem;
}

.secondary-section {
  max-width: 950px;
  margin: 0 auto;
  margin-top: 2rem;
}

.secondary-section h3 {
  margin-bottom: 0.5rem;
}


