@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+Pro:wght@400;600;700&display=swap");

:root {
  --navy-900: #081a30;
  --navy-800: #0f2d4f;
  --navy-700: #163a63;
  --red-700: #a11b1b;
  --gold-600: #c9a037;
  --gold-500: #ddb85a;
  --cream-100: #f8f3e9;
  --ink-900: #101418;
  --ink-600: #495563;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(8, 26, 48, 0.18);
}

body {
  background:
    radial-gradient(circle at 12% 10%, rgba(221, 184, 90, 0.22), transparent 45%),
    radial-gradient(circle at 88% 0%, rgba(15, 45, 79, 0.28), transparent 40%),
    var(--cream-100);
  color: var(--ink-900);
  font-family: "Playfair Display", "Georgia", serif;
}

a {
  text-decoration: none;
}

.site-header {
  background: linear-gradient(130deg, rgba(8, 26, 48, 0.96), rgba(15, 45, 79, 0.92));
  color: var(--white);
  box-shadow: var(--shadow);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
  color: var(--white);
}

.navbar-brand:hover {
  color: var(--white);
}

.brand-logo {
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.brand-name {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 18px;
  font-weight: 700;
}

.brand-tagline {
  font-size: 12px;
  font-family: "Source Sans Pro", "Segoe UI", sans-serif;
  opacity: 0.85;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-family: "Source Sans Pro", "Segoe UI", sans-serif;
  border-radius: 999px;
  padding: 8px 14px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--gold-500);
  opacity: 0;
  transform: scaleX(0.6);
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link:hover::after,
.nav-link:focus::after {
  opacity: 1;
  transform: scaleX(1);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-family: "Source Sans Pro", "Segoe UI", sans-serif;
}

.user-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 13px;
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
  border: none;
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--gold-600);
  color: var(--navy-900);
}

.site-main {
  padding: 0 0 72px;
}

.hero {
  position: relative;
  padding: 110px 0 96px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(8, 26, 48, 0.96), rgba(15, 45, 79, 0.9)),
    radial-gradient(circle at 20% 20%, rgba(221, 184, 90, 0.25), transparent 55%),
    radial-gradient(circle at 85% 30%, rgba(8, 26, 48, 0.65), transparent 60%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("/assets/ahlcp-logo.png") no-repeat 85% 25% / 260px,
    linear-gradient(135deg, rgba(201, 160, 55, 0.2), transparent 50%);
  opacity: 0.4;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(201, 160, 55, 0.35), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(8, 26, 48, 0.7), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-banner::before,
.hero-banner::after {
  pointer-events: none;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px rgba(8, 26, 48, 0.45);
}

.eyebrow {
  font-family: "Source Sans Pro", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.hero-point {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: "Source Sans Pro", "Segoe UI", sans-serif;
}

.hero-point:last-child {
  border-bottom: none;
}

.section-block {
  padding: 70px 0;
}

.section-title {
  font-size: 32px;
}

.section-lead {
  color: var(--ink-600);
  font-family: "Source Sans Pro", "Segoe UI", sans-serif;
}

.platform {
  position: relative;
  margin-top: -48px;
}

.platform .section-title {
  color: var(--navy-900);
}

.platform-card {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(15, 45, 79, 0.12);
  box-shadow: 0 18px 36px rgba(8, 26, 48, 0.1);
  font-family: "Source Sans Pro", "Segoe UI", sans-serif;
  min-height: 180px;
}

.pillar-card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 45, 79, 0.12);
  font-family: "Source Sans Pro", "Segoe UI", sans-serif;
}

.section-band {
  padding: 70px 0;
  background: linear-gradient(120deg, rgba(15, 45, 79, 0.08), rgba(221, 184, 90, 0.2));
}

.stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(8, 26, 48, 0.1);
  font-family: "Source Sans Pro", "Segoe UI", sans-serif;
}

.stat-title {
  font-weight: 700;
  color: var(--navy-900);
}

.stat-text {
  color: var(--ink-600);
}

.feature-card {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  min-height: 220px;
  border: 1px solid rgba(15, 45, 79, 0.12);
  box-shadow: 0 18px 36px rgba(8, 26, 48, 0.12);
  font-family: "Source Sans Pro", "Segoe UI", sans-serif;
}

.quote-band {
  padding: 60px 0;
}

.quote-card {
  background: var(--navy-900);
  color: var(--white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.quote-card blockquote {
  font-size: 22px;
  margin: 0;
}

.quote-meta {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Source Sans Pro", "Segoe UI", sans-serif;
}

.cta {
  padding: 48px 0 72px;
}

.cta .container {
  background: linear-gradient(130deg, var(--navy-900), var(--navy-700));
  border-radius: 24px;
  padding: 32px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.site-footer {
  background: var(--navy-900);
  color: var(--white);
  padding: 48px 0 28px;
  font-family: "Source Sans Pro", "Segoe UI", sans-serif;
}

.footer-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 12px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
