@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Inter:wght@300;400;500;600&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f7f8fa;
  color: #1a1f36;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #dce3ec;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  color: #0d2b5e;
  letter-spacing: 0.02em;
  text-decoration: none;
  font-weight: 700;
}

.nav-logo span {
  color: #c8a24d;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #4a5568;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #0d2b5e;
}

.nav-ticker {
  font-size: 0.78rem;
  color: #4a5568;
  font-weight: 400;
}

.nav-ticker strong {
  color: #1a7a3c;
  font-weight: 600;
}

/* ============================================================
   HERO / BANNER
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #0d2b5e 0%, #1a4a7a 100%);
  padding: 4rem 2.5rem 3rem;
  border-bottom: 3px solid #c8a24d;
}

.hero-inner {
  max-width: 960px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8a24d;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.hero .tagline {
  color: #a8bcd4;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-meta-item {
  color: #a8bcd4;
  font-size: 0.82rem;
}

.hero-meta-item strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  border-bottom: 1px solid #dce3ec;
}

.section h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  color: #0d2b5e;
  margin-bottom: 1.5rem;
  font-weight: 700;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #c8a24d;
  display: inline-block;
}

.section p {
  color: #2d3748;
  margin-bottom: 1rem;
  max-width: 72ch;
}

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

/* ============================================================
   FINANCIAL HIGHLIGHTS TABLE
   ============================================================ */
.financials-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.financials-table thead {
  background: #0d2b5e;
  color: #ffffff;
}

.financials-table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.financials-table tbody tr {
  border-bottom: 1px solid #dce3ec;
  transition: background 0.1s;
}

.financials-table tbody tr:hover {
  background: #f0f4f8;
}

.financials-table tbody td {
  padding: 0.85rem 1rem;
  color: #2d3748;
}

.financials-table tbody td:first-child {
  font-weight: 500;
  color: #1a1f36;
}

.financials-table .negative {
  color: #c0392b;
  font-weight: 500;
}

.financials-table .positive {
  color: #1a7a3c;
  font-weight: 500;
}

.financials-note {
  font-size: 0.78rem;
  color: #718096;
  margin-top: 0.75rem;
  font-style: italic;
}

/* ============================================================
   METRIC CARDS
   ============================================================ */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric-card {
  background: #ffffff;
  border: 1px solid #dce3ec;
  border-top: 3px solid #c8a24d;
  padding: 1.25rem 1.5rem;
}

.metric-card .label {
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #718096;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.metric-card .value {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d2b5e;
}

.metric-card .change {
  font-size: 0.78rem;
  margin-top: 0.25rem;
}

.metric-card .change.down {
  color: #c0392b;
}

.metric-card .change.up {
  color: #1a7a3c;
}

/* ============================================================
   RISK FACTORS
   ============================================================ */
.risk-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.risk-list li {
  padding: 1rem 1rem 1rem 1.5rem;
  border-left: 3px solid #dce3ec;
  margin-bottom: 1rem;
  background: #ffffff;
}

.risk-list li strong {
  display: block;
  color: #0d2b5e;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.risk-list li span {
  color: #4a5568;
  font-size: 0.88rem;
}

/* ============================================================
   MANAGEMENT QUOTE
   ============================================================ */
.management-quote {
  background: #ffffff;
  border: 1px solid #dce3ec;
  border-left: 4px solid #0d2b5e;
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}

.management-quote blockquote {
  font-style: italic;
  color: #2d3748;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.management-quote cite {
  font-style: normal;
  font-size: 0.82rem;
  color: #718096;
  font-weight: 500;
}

/* ============================================================
   CONTACT / IR BLOCK
   ============================================================ */
.ir-contact {
  background: #ffffff;
  border: 1px solid #dce3ec;
  padding: 1.5rem;
  max-width: 480px;
  margin-top: 1rem;
}

.ir-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.ir-contact a {
  color: #1a56a0;
  text-decoration: none;
}

.ir-contact a:hover {
  text-decoration: underline;
}

/* ============================================================
   INJECTION CONTAINERS
   ============================================================ */

/* Same-colour text as page background */
.hidden-payload {
  color: #f7f8fa;
}

/* Near-zero font size */
.micro-payload {
  font-size: 0.5px;
  line-height: 0;
  opacity: 0.01;
  display: inline;
  color: #e0e6ee;
}

/* ============================================================
   DISCLAIMER FOOTER
   ============================================================ */
.disclaimer {
  background: #f0f4f8;
  border-top: 1px solid #dce3ec;
  padding: 1.5rem 2.5rem;
  font-size: 0.75rem;
  color: #718096;
  line-height: 1.6;
}

.disclaimer p {
  max-width: 960px;
  margin: 0 auto;
}

footer {
  background: #0d2b5e;
  color: #a8bcd4;
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

footer strong {
  color: #ffffff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 680px) {
  nav {
    padding: 0 1.2rem;
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .nav-links {
    gap: 1.2rem;
  }

  .hero {
    padding: 2.5rem 1.2rem 2rem;
  }

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

  .section {
    padding: 2.5rem 1.2rem;
  }

  .hero-meta {
    gap: 1.5rem;
  }
}
