:root {
  --navy-dark: #091018;
  --navy-light: #111d2b;
  --gold: #c5a880;
  --text-dark: #20262e;
  --text-light: #e2e8f0;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.grid-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}

.logo {
  text-decoration: none;
  font-family: var(--font-title);
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
}

.logo-bold {
  font-weight: 600;
}

.logo-light {
  font-weight: 300;
  color: var(--gold);
}

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

.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-link:hover {
  color: #ffffff;
}

.btn-portal {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.btn-portal:hover {
  background-color: var(--gold);
  color: var(--navy-dark);
}

/* Hero */
.hero {
  background-color: var(--navy-dark);
  background-image: linear-gradient(rgba(9, 16, 24, 0.7), rgba(9, 16, 24, 0.85)), url('../assets/brentwood-bay.jpg');
  background-size: cover;
  background-position: center;
  height: 80vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.hero-content {
  max-width: 700px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  text-decoration: none;
  background-color: var(--gold);
  color: var(--navy-dark);
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #ffffff;
}

/* Sections */
.section {
  padding: 8rem 0;
}

.section-dark {
  background-color: var(--navy-light);
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sec-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.section-dark .sec-title {
  color: #ffffff;
}

.sec-intro {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 700px;
  margin-bottom: 5rem;
}

.section-dark .sec-intro {
  color: rgba(255, 255, 255, 0.6);
}

.font-gold {
  color: var(--gold) !important;
}

/* Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.pillar-card {
  border-top: 1.5px solid var(--gold);
  padding-top: 2rem;
}

.pillar-num {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: rgba(197, 168, 128, 0.3);
  margin-bottom: 1rem;
  font-weight: 300;
}

.pillar-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #ffffff;
}

.pillar-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* Allocation Section */
.allocation-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.allocation-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.allocation-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.allocation-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.alloc-pct {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  min-width: 70px;
}

.alloc-label {
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* Visual Donut Chart using conic-gradient */
.allocation-chart-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.chart-donut {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: conic-gradient(
    var(--gold) 0% 40%,
    #4f83cc 40% 65%,
    #00f5a0 65% 85%,
    #10b981 85% 100%
  );
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.chart-donut::after {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background-color: #ffffff;
  z-index: 2;
}

.chart-center {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.chart-center-val {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.chart-center-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Partnerships Layout */
.partnerships-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  align-items: center;
}

.p-text {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.p-text:last-child {
  margin-bottom: 0;
}

.partners-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.partner-stat-card {
  background-color: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 2px solid var(--gold);
  padding: 2.5rem;
  border-radius: 2px;
}

.partner-stat-card h4 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.partner-stat-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Press Timeline */
.timeline {
  position: relative;
  border-left: 1.5px solid var(--gold);
  padding-left: 3rem;
  margin-left: 1rem;
  max-width: 900px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-3rem - 6.5px);
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--gold);
  border: 2.5px solid var(--navy-light);
}

.timeline-date {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.timeline-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.6;
}

/* Secure Login Section */
.portal-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy-dark);
}

.portal-card-box {
  background-color: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.lock-icon {
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.portal-box-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.portal-box-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.portal-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.portal-input {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: 100%;
}

.portal-input:focus {
  outline: none;
  border-color: var(--gold);
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-portal-submit {
  background-color: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-body);
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-portal-submit:hover {
  background-color: #ffffff;
}

/* Footer */
.footer {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0;
  font-size: 0.8rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  letter-spacing: 0.05em;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media screen and (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .allocation-grid, .partnerships-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .allocation-chart-container {
    order: -1;
  }
  
  .section {
    padding: 5rem 0;
  }
}

@media screen and (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .nav {
    display: none; /* Mobile navigation simplified */
  }

  .portal-card-box {
    padding: 3rem 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .timeline {
    padding-left: 2rem;
  }

  .timeline-item::before {
    left: calc(-2rem - 6.5px);
  }
}
