/* ==========================================
   Decision Clarity
   Capital Risk Architecture
   Premium Institutional Theme
============================================= */

:root {
  --bg-dark: #0f172a;
  --bg-light: #1e293b;
  --accent: #c8a96a;
  --accent-light: #e6c98f;
  --text-light: #e5e7eb;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --max-width: 1100px;
  --radius: 8px;
}

/* ===============================
   Base Reset
================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  font-size: 16px;
}

/* ===============================
   Layout Container
================================= */

.container {
  max-width: var(--max-width);
  margin: auto;
  padding: 40px 20px;
}

/* ===============================
   Header & Navigation
================================= */

header {
  background: var(--bg-dark);
  border-bottom: 1px solid #1f2937;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
}

.logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.nav-links a {
  margin-left: 22px;
  text-decoration: none;
  color: var(--text-light);
  font-size: 14px;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

/* ===============================
   Hero Section
================================= */

.hero {
  padding: 90px 20px 60px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #0f172a, #111827);
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 18px;
  font-weight: 600;
}

.hero p {
  max-width: 720px;
  margin: auto;
  color: var(--text-muted);
  font-size: 17px;
}

/* ===============================
   Section Titles
================================= */

.section-title {
  font-size: 24px;
  margin-top: 25px;
  margin-bottom: 15px;
  color: var(--accent);
  font-weight: 500;
}

/* ===============================
   Content Cards
================================= */

.card {
  background: var(--bg-light);
  padding: 25px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  border: 1px solid #2c3a50;
}

.card p {
  margin-bottom: 12px;
}

.card ul,
.card ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.card li {
  margin-bottom: 6px;
}

/* ===============================
   Content Link Visibility
================================= */

.card a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.2s ease-in-out;
}

.card a:hover {
  color: var(--accent-light);
  text-decoration: none;
}

/* ===============================
   CTA Button
================================= */

.cta {
  background: var(--accent);
  color: #000;
  padding: 12px 26px;
  display: inline-block;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 25px;
  transition: 0.2s ease;
}

.cta:hover {
  background-color: #b89452;
}

/* ===============================
   Footer
================================= */

.footer {
  background: #0b1120;
  padding: 35px 20px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid #1f2937;
}

.footer h3 {
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 16px;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s ease;
}

.footer a:hover {
  color: var(--accent-light);
}

/* ===============================
   Mobile Responsive
================================= */

@media (max-width: 768px) {

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 15px;
  }

  .nav-links {
    display: none;
  }

  .container {
    padding: 30px 18px;
  }

}
