:root {
  --al-green: #006a4d;
  --al-green-dark: #174d35;
  --al-green-soft: #e8f3ee;
  --al-gold: #ffd872;
  --al-ink: #1f2a24;
  --al-muted: #5b665f;
  --al-bg: #f7f8f6;
  --al-card: #ffffff;
  --al-border: #d8e1db;
  --al-shadow: 0 10px 28px rgba(14, 41, 29, 0.08);
  --al-radius: 18px;
  --al-content: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--al-ink);
  background: var(--al-bg);
  line-height: 1.68;
}

a { color: var(--al-green-dark); }

a:hover,
a:focus { color: var(--al-green); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--al-gold);
  color: #111;
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: 0 0 10px 10px;
}

.skip-link:focus { left: 1rem; }

.al-container {
  width: min(calc(100% - 2rem), var(--al-content));
  margin: 0 auto;
}

.al-site-top {
  background: #ffffff;
  border-bottom: 1px solid #e3ebe5;
  padding: 0.85rem 0;
}

.al-site-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.al-library-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--al-green-dark);
  font-weight: 700;
  line-height: 1.2;
}

.al-library-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: var(--al-green-dark);
  color: #fff;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  flex: 0 0 auto;
}

.al-library-text small {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--al-muted);
  letter-spacing: 0.02em;
}

.al-library-text span {
  display: block;
  font-size: 1rem;
}

.al-top-link {
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.al-hero {
  background:
    linear-gradient(135deg, rgba(0,106,77,0.95), rgba(23,77,53,0.92)),
    radial-gradient(circle at top right, rgba(255,216,114,0.22), transparent 35%);
  color: #fff;
  padding: 4.5rem 0 3.15rem;
}

.al-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.35rem;
  align-items: start;
}

.al-eyebrow,
.al-section-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.al-eyebrow { color: #fff0b8; }

.al-section-eyebrow { color: var(--al-green); }

.al-hero h1 {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
  margin: 0 0 1.15rem;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 13ch;
}

.al-hero .lead {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 36rem;
  color: rgba(255,255,255,0.95);
  margin: 0 0 1.35rem;
}

.al-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.al-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.al-btn:hover,
.al-btn:focus { transform: translateY(-1px); }

.al-btn-primary {
  background: var(--al-gold);
  color: #203126;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.al-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}

.al-btn-secondary:hover,
.al-btn-secondary:focus {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}

.al-hero-card {
  background: rgba(255,255,255,0.96);
  color: var(--al-ink);
  border-radius: var(--al-radius);
  padding: 1.6rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.al-hero-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
  line-height: 1.22;
  color: var(--al-green);
}

.al-hero-card p {
  line-height: 1.68;
  margin: 0 0 1rem;
}

.al-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1.1rem;
}

.al-metric {
  background: var(--al-green-soft);
  border: 1px solid #c8ddd1;
  border-radius: 16px;
  padding: 1.05rem;
}

.al-metric strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--al-green-dark);
}

.al-metric span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--al-muted);
}

main section {
  padding: 4rem 0;
}

.al-section-head {
  max-width: none;
  margin-bottom: 2rem;
}

.al-section-eyebrow {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}

.al-section-head h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  line-height: 1.12;
  color: var(--al-green-dark);
  max-width: none;
  text-align: left;
}

.al-section-head p {
  margin: 0;
  color: var(--al-muted);
  font-size: 1.02rem;
  line-height: 1.78;
  max-width: 60rem;
  text-align: left;
}

.al-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.al-card {
  background: var(--al-card);
  border: 1px solid var(--al-border);
  border-radius: var(--al-radius);
  padding: 1.55rem;
  box-shadow: var(--al-shadow);
  height: 100%;
}

.al-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  line-height: 1.22;
  color: var(--al-green-dark);
}

.al-card p {
  margin: 0 0 1rem;
  color: var(--al-muted);
  line-height: 1.75;
  max-width: 38rem;
}

.al-card p:last-child { margin-bottom: 0; }

.al-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.al-card li {
  line-height: 1.72;
  color: var(--al-ink);
}

.al-card li + li { margin-top: 0.55rem; }

.al-alt {
  background: linear-gradient(180deg, #f0f5f2, #f7f8f6);
  border-top: 1px solid #e5ece7;
  border-bottom: 1px solid #e5ece7;
}

.al-pathways {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.al-pathway {
  background: #fff;
  border: 1px solid var(--al-border);
  border-radius: var(--al-radius);
  padding: 1.55rem;
  box-shadow: var(--al-shadow);
}

.al-pathway h3 {
  margin: 0 0 0.75rem;
  line-height: 1.22;
  color: var(--al-green-dark);
}

.al-pathway p {
  line-height: 1.75;
  max-width: 38rem;
}

.al-pathway p:last-child { margin-bottom: 0; }

.al-pathway a { font-weight: 700; }

.al-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

blockquote.al-quote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--al-border);
  border-left: 5px solid var(--al-gold);
  border-radius: 16px;
  padding: 1.45rem;
  box-shadow: var(--al-shadow);
  font-size: 1rem;
}

.al-quote p {
  margin: 0 0 1rem;
  line-height: 1.75;
}

.al-quote cite {
  font-style: normal;
  color: var(--al-muted);
  font-size: 0.95rem;
  display: block;
  line-height: 1.5;
}

.al-zdegree {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.35rem;
  align-items: start;
}

.al-z-box {
  background: #fff;
  border: 1px solid var(--al-border);
  border-radius: var(--al-radius);
  padding: 1.55rem;
  box-shadow: var(--al-shadow);
}

.al-z-box h3 {
  margin: 0 0 0.75rem;
  line-height: 1.22;
  color: var(--al-green-dark);
}

.al-z-box p {
  line-height: 1.75;
  max-width: 38rem;
}

.al-z-box ul {
  margin: 0;
  padding-left: 1.2rem;
}

.al-z-box li {
  line-height: 1.72;
}

.al-z-box li + li { margin-top: 0.55rem; }

.al-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.al-pill {
  background: var(--al-green-soft);
  color: var(--al-green-dark);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #cfe2d7;
  font-weight: 500;
  line-height: 1.3;
}

.al-link-list {
  display: grid;
  gap: 0.95rem;
}

.al-link-tile {
  background: #fff;
  border: 1px solid var(--al-border);
  border-radius: 16px;
  padding: 1.2rem 1.25rem;
  box-shadow: var(--al-shadow);
}

.al-link-tile a {
  text-decoration: none;
}

.al-link-tile a strong {
  display: block;
  color: var(--al-green-dark);
  margin-bottom: 0.35rem;
  line-height: 1.28;
}

.al-link-tile span {
  color: var(--al-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 42rem;
  display: block;
}

@media (min-width: 1200px) {
  .al-hero .al-container {
    width: min(calc(100% - 2rem), 1100px);
  }
}

@media (max-width: 980px) {
  .al-hero-grid,
  .al-zdegree,
  .al-card-grid,
  .al-quote-grid,
  .al-pathways {
    grid-template-columns: 1fr;
  }

  .al-hero {
    padding: 3.75rem 0 2.85rem;
    text-align: center;
  }

  .al-hero-grid {
    gap: 1.75rem;
  }

  .al-hero-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .al-hero h1 {
    max-width: 11ch;
    margin-left: auto;
    margin-right: auto;
  }

  .al-hero .lead {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }

  .al-hero-actions {
    justify-content: center;
  }

  .al-section-head p,
  .al-card p,
  .al-pathway p,
  .al-z-box p,
  .al-link-tile span {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .al-site-top-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .al-metric-grid { grid-template-columns: 1fr; }
  .al-hero-actions { flex-direction: column; }
  .al-btn { width: 100%; }
  main section { padding: 3rem 0; }

  .al-hero {
    padding: 3.25rem 0 2.6rem;
  }

  .al-hero .lead {
    max-width: 100%;
  }

  .al-card,
  .al-pathway,
  .al-z-box,
  .al-link-tile,
  blockquote.al-quote,
  .al-hero-card {
    padding: 1.25rem;
  }
}