:root {
  --atlas-ink: #10251e;
  --atlas-ink-soft: #29433a;
  --atlas-paper: #f7f9f5;
  --atlas-white: #ffffff;
  --atlas-mist: #edf4ef;
  --atlas-line: #d3e0d7;
  --atlas-muted: #5e7169;
  --atlas-forest: #073e2d;
  --atlas-forest-deep: #032b22;
  --atlas-emerald: #17784e;
  --atlas-emerald-bright: #2f965f;
  --atlas-lime: #a9d86e;
  --atlas-blue: #3f758d;
  --atlas-blue-soft: #e8f1f3;
  --atlas-gold: #bd9344;
  --atlas-shadow-sm: 0 8px 22px rgba(15, 45, 34, .08);
  --atlas-shadow-md: 0 18px 50px rgba(8, 35, 26, .14);
  --atlas-shadow-lg: 0 26px 74px rgba(4, 29, 22, .24);
  --atlas-header-space: 124px;
  --atlas-shell: 1180px;
  --atlas-s1: 4px;
  --atlas-s2: 8px;
  --atlas-s3: 12px;
  --atlas-s4: 16px;
  --atlas-s5: 24px;
  --atlas-s6: 32px;
  --atlas-s7: 48px;
  --atlas-s8: 64px;
  --atlas-s9: 96px;
}

/* v411: quiet, sitewide website design and maintenance credit. */
.site-credit[data-site-credit] {
  box-sizing: border-box;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 10px 20px 0;
  color: inherit;
  font: inherit;
  font-size: .72rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .01em;
  text-align: center;
  opacity: .72;
}

@media (max-width: 480px) {
  .site-credit[data-site-credit] {
    padding-right: 16px;
    padding-left: 16px;
    font-size: .7rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--atlas-header-space) + 20px);
}

body {
  margin: 0;
  color: var(--atlas-ink);
  background: var(--atlas-paper);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #f2c75c;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--atlas-white);
  background: var(--atlas-forest-deep);
  border-radius: 5px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.atlas-shell {
  width: min(var(--atlas-shell), calc(100% - 48px));
  margin-inline: auto;
}

.atlas-header {
  position: fixed;
  z-index: 500;
  top: 8px;
  left: 50%;
  width: min(1320px, calc(100% - 24px));
  overflow: hidden;
  background: rgba(250, 253, 249, .93);
  border: 1px solid rgba(181, 204, 188, .75);
  border-radius: 8px;
  box-shadow: var(--atlas-shadow-sm);
  backdrop-filter: blur(18px) saturate(1.15);
  transform: translateX(-50%);
  transition: top 220ms ease, width 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.atlas-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--atlas-emerald-bright), var(--atlas-blue), transparent);
  opacity: .42;
  transform: translateX(-55%);
  animation: atlasHeaderSweep 8s ease-in-out infinite;
}

.atlas-header.is-scrolled {
  top: 0;
  width: min(1380px, 100%);
  background: rgba(250, 253, 249, .97);
  border-color: rgba(139, 179, 151, .78);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 15px 46px rgba(5, 39, 28, .18);
}

.atlas-masthead {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  align-items: center;
  min-height: 70px;
  padding: 8px 18px;
  gap: 24px;
}

.atlas-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.atlas-brand img {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 50%;
  filter: drop-shadow(0 6px 9px rgba(21, 99, 68, .18));
}

.atlas-brand span {
  display: grid;
  min-width: 0;
  line-height: 1.15;
}

.atlas-brand b {
  overflow: hidden;
  color: var(--atlas-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.atlas-brand small {
  margin-top: 4px;
  color: var(--atlas-muted);
  font-size: 10px;
  font-weight: 600;
}

.atlas-primary,
.atlas-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.atlas-primary a {
  min-height: 40px;
  padding: 9px 11px;
  color: var(--atlas-ink-soft);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease;
}

.atlas-primary a:hover,
.atlas-primary a.is-current {
  color: var(--atlas-forest);
  background: #e7f2e7;
}

.atlas-actions {
  gap: 8px;
}

.atlas-companion,
.atlas-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 13px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.atlas-companion {
  position: relative;
  overflow: hidden;
  gap: 8px;
  color: var(--atlas-white);
  background: var(--atlas-forest);
  border: 1px solid rgba(169, 216, 110, .58);
  box-shadow: 0 8px 20px rgba(7, 62, 45, .18), inset 0 1px 0 rgba(255, 255, 255, .18);
}

.atlas-companion::after {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -45%;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
  transform: skewX(-18deg);
  animation: atlasCompanionShine 7s ease-in-out infinite;
}

.atlas-companion > span[aria-hidden="true"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: var(--atlas-lime);
  border: 4px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(169, 216, 110, .12), 0 0 14px rgba(169, 216, 110, .52);
}

.atlas-companion:hover {
  background: #0d5e42;
  transform: translateY(-1px);
}

.atlas-donate {
  color: var(--atlas-white);
  background: var(--atlas-emerald);
  box-shadow: 0 7px 18px rgba(23, 120, 78, .16);
  transition: background-color 180ms ease, transform 180ms ease;
}

.atlas-donate:hover {
  background: #0f6541;
  transform: translateY(-1px);
}

.atlas-topic-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  align-items: center;
  min-height: 43px;
  padding-inline: 6px;
  background: rgba(239, 246, 239, .92);
  border-top: 1px solid rgba(205, 222, 209, .75);
}

.atlas-topic-rail {
  display: flex;
  align-items: center;
  min-width: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  gap: 6px;
}

.atlas-topic-rail::-webkit-scrollbar {
  display: none;
}

.atlas-topic-rail a {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 6px 11px;
  flex: 0 0 auto;
  color: #315448;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(194, 215, 199, .82);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.atlas-topic-rail a:hover {
  color: var(--atlas-white);
  background: var(--atlas-emerald);
  border-color: var(--atlas-emerald);
}

.atlas-mobile-topic {
  display: none !important;
}

.atlas-rail-arrow {
  display: grid;
  width: 31px;
  height: 31px;
  padding: 0;
  place-items: center;
  color: var(--atlas-emerald);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease;
}

.atlas-rail-arrow:hover {
  color: var(--atlas-white);
  background: var(--atlas-emerald);
}

main {
  padding-top: var(--atlas-header-space);
}

.atlas-hero {
  position: relative;
  display: grid;
  min-height: 660px;
  max-height: 740px;
  overflow: hidden;
  color: var(--atlas-white);
  isolation: isolate;
}

.atlas-hero-image,
.atlas-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.atlas-hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  animation: atlasHeroBreath 18s ease-in-out infinite alternate;
}

.atlas-hero-shade {
  z-index: -2;
  background: linear-gradient(90deg, rgba(3, 31, 24, .94) 0%, rgba(3, 31, 24, .78) 39%, rgba(3, 31, 24, .32) 72%, rgba(3, 31, 24, .08) 100%);
}

.atlas-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 88px 112px;
}

.atlas-kicker {
  margin: 0 0 12px;
  color: #1d7049;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.atlas-hero .atlas-kicker,
.atlas-education .atlas-kicker,
.atlas-companion-section .atlas-kicker {
  color: var(--atlas-lime);
}

.atlas-hero h1,
.atlas-section-heading h2,
.atlas-section-bar h2,
.atlas-evidence-copy h2,
.atlas-companion-copy h2,
.atlas-support h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.atlas-hero h1 {
  max-width: 780px;
  font-size: 82px;
  line-height: .94;
}

.atlas-hero-intro {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  line-height: 1.7;
}

.atlas-button-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 12px;
}

.atlas-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  gap: 12px;
}

.atlas-button:hover {
  transform: translateY(-2px);
}

.atlas-button-primary {
  color: var(--atlas-white);
  background: var(--atlas-emerald-bright);
  box-shadow: 0 12px 28px rgba(9, 66, 45, .24);
}

.atlas-button-primary:hover {
  background: #258253;
}

.atlas-button-ghost {
  color: var(--atlas-white);
  background: rgba(5, 44, 33, .34);
  border-color: rgba(255, 255, 255, .55);
  backdrop-filter: blur(10px);
}

.atlas-button-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--atlas-white);
}

.atlas-hero-facts {
  position: absolute;
  right: max(24px, calc((100% - var(--atlas-shell)) / 2));
  bottom: 26px;
  left: max(24px, calc((100% - var(--atlas-shell)) / 2));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  background: rgba(4, 40, 30, .62);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  box-shadow: 0 14px 40px rgba(0, 19, 13, .2);
  backdrop-filter: blur(14px);
}

.atlas-hero-facts div {
  display: grid;
  padding: 14px 17px;
  border-right: 1px solid rgba(255, 255, 255, .17);
  line-height: 1.3;
}

.atlas-hero-facts div:last-child {
  border-right: 0;
}

.atlas-hero-facts b {
  font-size: 13px;
}

.atlas-hero-facts span {
  margin-top: 3px;
  color: rgba(255, 255, 255, .7);
  font-size: 10px;
  font-weight: 600;
}

.atlas-start,
.atlas-news,
.atlas-evidence,
.atlas-companion-section,
.atlas-support {
  padding-block: var(--atlas-s9);
}

.atlas-section-heading {
  max-width: 760px;
}

.atlas-section-heading h2,
.atlas-section-bar h2,
.atlas-evidence-copy h2,
.atlas-companion-copy h2,
.atlas-support h2 {
  font-size: 52px;
  line-height: 1.02;
}

.atlas-section-heading > p:last-child,
.atlas-evidence-copy > p,
.atlas-companion-copy > p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--atlas-muted);
  font-size: 16px;
}

.atlas-start-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid var(--atlas-line);
  border-bottom: 1px solid var(--atlas-line);
}

.atlas-start-item {
  position: relative;
  min-height: 290px;
  padding: 30px;
  border-right: 1px solid var(--atlas-line);
  transition: background-color 220ms ease, transform 220ms ease;
}

.atlas-start-item:last-child {
  border-right: 0;
}

.atlas-start-item::before {
  position: absolute;
  top: -1px;
  right: 30px;
  left: 30px;
  height: 3px;
  content: "";
  background: var(--item-accent, var(--atlas-emerald));
}

.atlas-start-item:hover {
  z-index: 1;
  background: var(--atlas-white);
  box-shadow: var(--atlas-shadow-sm);
  transform: translateY(-4px);
}

.atlas-start-news {
  --item-accent: var(--atlas-blue);
}

.atlas-start-evidence {
  --item-accent: var(--atlas-gold);
}

.atlas-start-action {
  --item-accent: var(--atlas-emerald-bright);
}

.atlas-start-evidence small {
  color: #795b1f;
}

.atlas-start-action small {
  color: #1d7049;
}

.atlas-start-item small,
.atlas-news-list small,
.atlas-image-card small,
.atlas-support-links small {
  color: var(--item-accent, var(--atlas-emerald));
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.atlas-start-item h3 {
  min-height: 78px;
  margin: 16px 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  line-height: 1.02;
}

.atlas-start-item p {
  margin: 0;
  color: var(--atlas-muted);
  font-size: 13px;
}

.atlas-start-item > span {
  display: inline-block;
  margin-top: 26px;
  color: var(--atlas-forest);
  font-size: 12px;
  font-weight: 800;
}

.atlas-news {
  background: var(--atlas-white);
}

.atlas-section-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.atlas-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--atlas-emerald);
  font-size: 12px;
  font-weight: 800;
  gap: 10px;
}

.atlas-text-link span {
  transition: transform 180ms ease;
}

.atlas-text-link:hover span {
  transform: translateX(4px);
}

.atlas-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr);
  gap: 40px;
}

.atlas-news-feature {
  position: relative;
  display: grid;
  min-height: 500px;
  overflow: hidden;
  color: var(--atlas-white);
  background: var(--atlas-forest-deep);
  border-radius: 8px;
  box-shadow: var(--atlas-shadow-md);
  isolation: isolate;
}

.atlas-news-feature::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(2, 32, 24, .96) 0%, rgba(2, 32, 24, .38) 58%, rgba(2, 32, 24, .06) 100%);
}

.atlas-news-feature img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, .75, .25, 1);
}

.atlas-news-feature:hover img,
.atlas-image-card:hover img {
  transform: scale(1.025);
}

.atlas-news-label {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 9px;
  color: var(--atlas-white);
  background: rgba(9, 73, 53, .8);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.atlas-news-feature > div {
  align-self: end;
  padding: 38px;
}

.atlas-news-feature small {
  color: var(--atlas-lime);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.atlas-news-feature h3 {
  max-width: 620px;
  margin: 12px 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 43px;
  line-height: 1;
}

.atlas-news-feature p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .79);
  font-size: 13px;
}

.atlas-news-list {
  border-top: 1px solid var(--atlas-line);
}

.atlas-news-list a {
  display: grid;
  padding: 24px 4px;
  border-bottom: 1px solid var(--atlas-line);
  transition: padding-left 180ms ease, background-color 180ms ease;
}

.atlas-news-list a:hover {
  padding-left: 12px;
  background: #f5f9f5;
}

.atlas-news-list small {
  color: var(--atlas-blue);
}

.atlas-news-list b {
  margin-top: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1.08;
}

.atlas-news-list span {
  margin-top: 13px;
  color: var(--atlas-emerald);
  font-size: 10px;
  font-weight: 800;
}

.atlas-education {
  padding-block: var(--atlas-s9);
  color: var(--atlas-white);
  background: var(--atlas-forest-deep);
}

.atlas-section-heading-light > p:last-child {
  color: rgba(255, 255, 255, .68);
}

.atlas-education-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
  gap: 18px;
}

.atlas-image-card {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 16, 11, .22);
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.atlas-image-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(2, 31, 23, .98) 0%, rgba(2, 31, 23, .5) 55%, rgba(2, 31, 23, .04) 100%);
}

.atlas-image-card:hover {
  border-color: rgba(169, 216, 110, .54);
  box-shadow: 0 25px 55px rgba(0, 15, 10, .34);
  transform: translateY(-4px);
}

.atlas-image-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, .75, .25, 1);
}

.atlas-image-card > span {
  align-self: end;
  display: grid;
  padding: 28px;
}

.atlas-image-card small {
  color: var(--atlas-lime);
}

.atlas-image-card b {
  margin-top: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

.atlas-image-card em {
  margin-top: 11px;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  font-style: normal;
  line-height: 1.55;
}

.atlas-evidence {
  background: var(--atlas-blue-soft);
}

.atlas-evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: 64px;
}

.atlas-evidence-copy > p {
  color: #4d6870;
}

.atlas-goals-summary {
  margin: 28px 0 0;
  border-top: 1px solid #bfd5d9;
  border-bottom: 1px solid #bfd5d9;
}

.atlas-goals-summary > div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(191, 213, 217, .72);
  gap: 16px;
}

.atlas-goals-summary > div:last-child {
  border-bottom: 0;
}

.atlas-goals-summary dt {
  color: var(--atlas-blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.atlas-goals-summary dd {
  margin: 0;
  color: var(--atlas-forest);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.atlas-goals-summary-result {
  align-items: start !important;
}

.atlas-goals-summary-result dd {
  display: grid;
  gap: 4px;
}

.atlas-goals-summary-result strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1.05;
}

.atlas-goals-summary-result small {
  color: #4d6870;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
}

.atlas-goals-summary-result .atlas-goals-percentage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 10px 12px;
  color: #173f30;
  background: linear-gradient(135deg, #e5f6c9, #f6fbef);
  border-left: 4px solid #79b957;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(77, 137, 80, .16), 0 5px 14px rgba(18, 79, 52, .08);
}

.atlas-goals-percentage b {
  color: #0d5b3d;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.atlas-goals-percentage span {
  color: #315d4b;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 520px) {
  .atlas-goals-summary-result .atlas-goals-percentage {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .atlas-goals-percentage b {
    font-size: 20px;
  }
}

.atlas-evidence-copy > .atlas-goals-caveat {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
}

.atlas-impact-figure {
  padding: 30px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid #cadde2;
  border-radius: 8px;
  box-shadow: var(--atlas-shadow-sm);
}

.atlas-impact-scale {
  display: grid;
  padding-bottom: 20px;
  border-bottom: 1px solid #d2e1e4;
}

.atlas-impact-scale span {
  color: var(--atlas-blue);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.atlas-impact-scale b {
  margin-top: 5px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
}

.atlas-impact-row {
  display: grid;
  grid-template-columns: 158px minmax(120px, 1fr) 88px;
  align-items: center;
  padding-block: 15px;
  gap: 14px;
}

.atlas-impact-row > span {
  display: grid;
  line-height: 1.3;
}

.atlas-impact-row b {
  font-size: 11px;
}

.atlas-impact-row small {
  margin-top: 3px;
  color: var(--atlas-muted);
  font-size: 9px;
}

.atlas-impact-row > i {
  display: block;
  height: 10px;
  overflow: hidden;
  background: #dbe7e4;
  border-radius: 2px;
}

.atlas-impact-row > i em {
  display: block;
  height: 100%;
  background: var(--atlas-blue);
  border-radius: 2px;
}

.atlas-impact-row strong {
  color: var(--atlas-forest);
  font-size: 16px;
  white-space: nowrap;
  text-align: right;
}

.atlas-impact-figure > p {
  margin: 14px 0 0;
  padding-top: 15px;
  color: #637b81;
  border-top: 1px solid #d2e1e4;
  font-size: 9px;
}

.atlas-companion-section {
  background: var(--atlas-paper);
}

.atlas-companion-surface {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
  align-items: center;
  min-height: 620px;
  overflow: hidden;
  padding: 52px;
  color: var(--atlas-white);
  background: linear-gradient(135deg, #063d2e 0%, #0a563d 56%, #174f4d 100%);
  border: 1px solid rgba(91, 160, 121, .65);
  border-radius: 8px;
  box-shadow: var(--atlas-shadow-lg), inset 0 1px 0 rgba(255, 255, 255, .16);
  gap: 52px;
  isolation: isolate;
}

.atlas-companion-surface::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .16;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, transparent, black 48%, black);
}

.atlas-companion-copy h2 {
  font-size: 58px;
}

.atlas-companion-copy > p {
  color: rgba(255, 255, 255, .74);
}

.atlas-button-lime {
  margin-top: 0;
  color: #14331f;
  background: var(--atlas-lime);
  box-shadow: 0 14px 32px rgba(2, 27, 19, .3);
}

.atlas-button-lime:hover {
  background: #b9e783;
}

.atlas-companion-showcase {
  display: grid;
  min-width: 0;
  gap: 15px;
}

.atlas-companion-media {
  position: relative;
  min-height: 430px;
}

.atlas-guide-object,
.atlas-phone-object {
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.atlas-guide-object {
  position: absolute;
  top: 28px;
  left: 0;
  width: calc(100% - 82px);
  height: 370px;
  overflow: hidden;
  color: var(--atlas-white);
  background: #eaf3eb;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 7px;
  box-shadow: 0 25px 52px rgba(0, 20, 14, .34);
  transform: rotate(-1.4deg);
}

.atlas-guide-object::after {
  position: absolute;
  inset: 42% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(2, 28, 20, .84));
  pointer-events: none;
}

.atlas-guide-object img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 320ms ease;
}

.atlas-guide-object > span,
.atlas-phone-object > em {
  position: absolute;
  z-index: 2;
  display: grid;
  line-height: 1.15;
}

.atlas-guide-object > span {
  right: 16px;
  bottom: 15px;
  left: 16px;
  padding: 11px 13px;
  background: rgba(2, 35, 25, .76);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 5px;
  backdrop-filter: blur(9px);
}

.atlas-guide-object small,
.atlas-phone-object small,
.atlas-companion-flow small {
  color: var(--atlas-lime);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.atlas-guide-object b {
  margin-top: 4px;
  color: var(--atlas-white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  font-weight: 600;
}

.atlas-phone-object {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 190px;
  aspect-ratio: 390 / 844;
  overflow: hidden;
  padding: 8px;
  color: var(--atlas-white);
  background: #051c15;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 20, 14, .48), inset 0 1px 0 rgba(255, 255, 255, .23);
}

.atlas-phone-object::after {
  position: absolute;
  inset: 45% 8px 8px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 25, 17, .7));
  border-radius: 0 0 20px 20px;
  pointer-events: none;
}

.atlas-phone-object img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
}

.atlas-phone-speaker {
  position: absolute;
  z-index: 4;
  top: 13px;
  left: 50%;
  width: 42px;
  height: 5px;
  background: rgba(1, 18, 13, .86);
  border-radius: 999px;
  transform: translateX(-50%);
}

.atlas-phone-object > em {
  right: 16px;
  bottom: 17px;
  left: 16px;
  padding: 10px;
  background: rgba(2, 35, 25, .78);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 5px;
  font-style: normal;
  backdrop-filter: blur(9px);
}

.atlas-phone-object b {
  margin-top: 4px;
  color: var(--atlas-white);
  font-size: 10px;
  line-height: 1.25;
}

.atlas-guide-object:hover,
.atlas-guide-object:focus-visible {
  border-color: rgba(182, 232, 120, .82);
  box-shadow: 0 29px 58px rgba(0, 20, 14, .42);
  transform: translateY(-4px) rotate(-.5deg);
}

.atlas-guide-object:hover img,
.atlas-guide-object:focus-visible img {
  transform: scale(1.012);
}

.atlas-phone-object:hover,
.atlas-phone-object:focus-visible {
  border-color: var(--atlas-lime);
  box-shadow: 0 36px 68px rgba(0, 20, 14, .54), 0 0 0 3px rgba(180, 229, 119, .12);
  transform: translateY(-6px);
}

.atlas-guide-object:focus-visible,
.atlas-phone-object:focus-visible {
  outline: 3px solid var(--atlas-lime);
  outline-offset: 4px;
}

.atlas-companion-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.atlas-companion-flow > span {
  display: grid;
  min-width: 0;
  padding: 14px 13px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.atlas-companion-flow > span:last-child {
  border-right: 0;
}

.atlas-companion-flow b {
  margin-top: 5px;
  color: rgba(255, 255, 255, .9);
  font-size: 10px;
  line-height: 1.4;
}

.atlas-support {
  color: var(--atlas-white);
  background: #18362e;
}

.atlas-support-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: 72px;
}

.atlas-support h2 {
  max-width: 620px;
}

.atlas-support-links {
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.atlas-support-links a {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  min-height: 108px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  gap: 18px;
  transition: padding-left 180ms ease, background-color 180ms ease;
}

.atlas-support-links a:hover {
  padding-left: 10px;
  background: rgba(255, 255, 255, .04);
}

.atlas-support-links small {
  color: var(--atlas-lime);
}

.atlas-support-links b {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1.1;
}

.atlas-support-links span {
  color: rgba(255, 255, 255, .66);
  font-size: 10px;
  font-weight: 800;
}

.atlas-footer {
  padding-block: 58px 22px;
  color: #c7d6cf;
  background: #071d17;
}

.atlas-footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(130px, .5fr));
  gap: 48px;
}

.atlas-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.atlas-footer-brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.atlas-footer-brand p {
  display: grid;
  margin: 0;
  line-height: 1.4;
}

.atlas-footer-brand b {
  color: var(--atlas-white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
}

.atlas-footer-brand span {
  font-size: 10px;
}

.atlas-footer nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.atlas-footer nav b {
  margin-bottom: 4px;
  color: var(--atlas-white);
  font-size: 10px;
  text-transform: uppercase;
}

.atlas-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: #a7bdb4;
  font-size: 11px;
}

.atlas-footer nav a:hover {
  color: var(--atlas-lime);
}

.atlas-footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 18px;
  color: #879f96;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 9px;
}

.atlas-footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  animation: atlasReveal 650ms cubic-bezier(.2, .75, .25, 1) both;
}

@keyframes atlasReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes atlasHeaderSweep {
  0%, 30% { transform: translateX(-65%); }
  70%, 100% { transform: translateX(65%); }
}

@keyframes atlasCompanionShine {
  0%, 52% { left: -45%; }
  74%, 100% { left: 125%; }
}

@keyframes atlasHeroBreath {
  from { transform: scale(1); }
  to { transform: scale(1.025); }
}

@media (max-width: 1120px) {
  .atlas-masthead {
    grid-template-columns: minmax(190px, 1fr) auto auto;
    gap: 10px;
  }

  .atlas-brand b {
    font-size: 20px;
  }

  .atlas-primary a {
    padding-inline: 8px;
    font-size: 10px;
  }

  .atlas-hero h1 {
    font-size: 68px;
  }

  .atlas-evidence-layout,
  .atlas-support-layout {
    gap: 42px;
  }

  .atlas-companion-surface {
    padding: 42px;
    gap: 38px;
  }
}

@media (max-width: 900px) {
  :root {
    --atlas-header-space: 111px;
  }

  .atlas-header {
    top: 0;
    width: 100%;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0 0 8px 8px;
  }

  .atlas-masthead {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 65px;
    padding-inline: 14px;
  }

  .atlas-primary {
    display: none;
  }

  .atlas-mobile-topic {
    display: inline-flex !important;
  }

  .atlas-mobile-topic.is-current {
    color: var(--atlas-white);
    background: var(--atlas-forest);
    border-color: var(--atlas-forest);
  }

  .atlas-brand span {
    display: none;
  }

  .atlas-brand img {
    width: 44px;
    height: 44px;
  }

  .atlas-topic-row {
    min-height: 44px;
  }

  .atlas-hero {
    min-height: 620px;
  }

  .atlas-hero h1 {
    font-size: 58px;
  }

  .atlas-start,
  .atlas-news,
  .atlas-education,
  .atlas-evidence,
  .atlas-companion-section,
  .atlas-support {
    padding-block: 72px;
  }

  .atlas-start-grid,
  .atlas-education-grid {
    grid-template-columns: 1fr;
  }

  .atlas-start-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--atlas-line);
  }

  .atlas-start-item:last-child {
    border-bottom: 0;
  }

  .atlas-start-item h3 {
    min-height: 0;
  }

  .atlas-news-layout,
  .atlas-evidence-layout,
  .atlas-companion-surface,
  .atlas-support-layout {
    grid-template-columns: 1fr;
  }

  .atlas-news-feature {
    min-height: 430px;
  }

  .atlas-education-grid {
    gap: 14px;
  }

  .atlas-image-card {
    min-height: 370px;
  }

  .atlas-companion-surface {
    min-height: 0;
  }

  .atlas-companion-media {
    min-height: 470px;
  }

  .atlas-guide-object {
    width: calc(100% - 104px);
    height: 420px;
  }

  .atlas-phone-object {
    width: 205px;
  }

  .atlas-support-links {
    margin-top: 6px;
  }

  .atlas-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 22px;
  }

  .atlas-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .atlas-shell {
    width: min(calc(100% - 28px), var(--atlas-shell));
  }

  .atlas-masthead {
    min-height: 61px;
    padding: 7px 8px;
  }

  .atlas-brand img {
    width: 42px;
    height: 42px;
  }

  .atlas-actions {
    gap: 5px;
  }

  .atlas-companion,
  .atlas-donate {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 9px;
  }

  .atlas-companion > span[aria-hidden="true"] {
    width: 15px;
    height: 15px;
    border-width: 3px;
  }

  .atlas-topic-row {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
  }

  .atlas-topic-rail a {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 9px;
  }

  .atlas-hero {
    min-height: 600px;
  }

  .atlas-hero-shade {
    background: linear-gradient(90deg, rgba(3, 31, 24, .95) 0%, rgba(3, 31, 24, .78) 74%, rgba(3, 31, 24, .42) 100%);
  }

  .atlas-hero-image {
    object-position: 62% center;
  }

  .atlas-hero-content {
    padding-block: 65px 158px;
  }

  .atlas-hero h1 {
    max-width: 420px;
    font-size: 49px;
    line-height: .98;
  }

  .atlas-hero-intro {
    margin-top: 18px;
    font-size: 14px;
  }

  .atlas-button-row {
    display: grid;
    width: 100%;
    margin-top: 22px;
  }

  .atlas-button {
    width: 100%;
  }

  .atlas-hero-facts {
    right: 14px;
    bottom: 16px;
    left: 14px;
  }

  .atlas-hero-facts div {
    padding: 12px 8px;
  }

  .atlas-hero-facts b {
    font-size: 10px;
  }

  .atlas-hero-facts span {
    font-size: 8px;
  }

  .atlas-start,
  .atlas-news,
  .atlas-education,
  .atlas-evidence,
  .atlas-companion-section,
  .atlas-support {
    padding-block: 56px;
  }

  .atlas-section-heading h2,
  .atlas-section-bar h2,
  .atlas-evidence-copy h2,
  .atlas-companion-copy h2,
  .atlas-support h2 {
    font-size: 39px;
    line-height: 1.03;
  }

  .atlas-section-heading > p:last-child,
  .atlas-evidence-copy > p,
  .atlas-companion-copy > p {
    font-size: 14px;
  }

  .atlas-start-grid {
    margin-top: 32px;
  }

  .atlas-start-item {
    padding: 27px 18px;
  }

  .atlas-start-item::before {
    right: 18px;
    left: 18px;
  }

  .atlas-section-bar {
    align-items: flex-start;
  }

  .atlas-news-feature {
    min-height: 390px;
  }

  .atlas-news-feature > div {
    padding: 26px;
  }

  .atlas-news-feature h3 {
    font-size: 34px;
  }

  .atlas-image-card {
    min-height: 340px;
  }

  .atlas-image-card > span {
    padding: 24px;
  }

  .atlas-image-card b {
    font-size: 29px;
  }

  .atlas-impact-figure {
    padding: 20px 16px;
  }

  .atlas-impact-row {
    grid-template-columns: 108px minmax(68px, 1fr) 74px;
    gap: 8px;
  }

  .atlas-impact-row b {
    font-size: 9px;
  }

  .atlas-impact-row small {
    font-size: 8px;
  }

  .atlas-impact-row strong {
    font-size: 13px;
  }

  .atlas-goals-summary > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .atlas-goals-summary-result strong {
    font-size: 23px;
  }

  .atlas-companion-surface {
    padding: 30px 18px;
    gap: 30px;
  }

  .atlas-companion-media {
    min-height: 356px;
  }

  .atlas-guide-object {
    top: 18px;
    width: calc(100% - 48px);
    height: 292px;
  }

  .atlas-guide-object > span {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 9px 10px;
  }

  .atlas-guide-object b {
    font-size: 19px;
  }

  .atlas-phone-object {
    width: 142px;
    padding: 6px;
    border-radius: 22px;
  }

  .atlas-phone-object img {
    border-radius: 16px;
  }

  .atlas-phone-object::after {
    inset: 45% 6px 6px;
    border-radius: 0 0 16px 16px;
  }

  .atlas-phone-object > em {
    right: 11px;
    bottom: 12px;
    left: 11px;
    padding: 8px;
  }

  .atlas-phone-object b {
    font-size: 9px;
  }

  .atlas-companion-flow {
    grid-template-columns: 1fr;
  }

  .atlas-companion-flow > span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .atlas-companion-flow > span:last-child {
    border-bottom: 0;
  }

  .atlas-support-links a {
    grid-template-columns: 1fr auto;
    min-height: 116px;
    padding-block: 18px;
  }

  .atlas-support-links small {
    grid-column: 1 / -1;
  }

  .atlas-support-links b {
    font-size: 21px;
  }

  .atlas-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 22px;
  }

  .atlas-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 360px) {
  .atlas-companion {
    max-width: 126px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .atlas-donate {
    padding-inline: 8px;
  }

  .atlas-hero h1 {
    font-size: 43px;
  }

  .atlas-section-bar {
    display: grid;
  }

  .atlas-footer-grid {
    grid-template-columns: 1fr;
  }

  .atlas-footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ACC v328 homepage redesign additions. The stable v327 header stylesheet is
   loaded after this file so its tested navigation behavior remains authoritative. */
main {
  padding-top: 0;
}

.redesign-video-hero {
  min-height: clamp(590px, 72vh, 760px);
}

.redesign-video-hero .atlas-hero-image,
.redesign-video-hero .atlas-hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.redesign-video-hero .atlas-hero-video {
  opacity: 0;
  transition: opacity 500ms ease;
}

.redesign-video-hero.video-rendered .atlas-hero-video {
  opacity: 1;
}

.redesign-video-hero.video-rendered .hero-poster {
  opacity: 0;
}

.redesign-video-hero .hero-poster {
  visibility: visible;
  opacity: 1;
  transition: opacity 500ms ease;
}

.redesign-video-hero .atlas-hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 31, 24, .94) 0%, rgba(3, 31, 24, .76) 40%, rgba(3, 31, 24, .28) 72%, rgba(3, 31, 24, .08) 100%);
}

.redesign-video-hero .atlas-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 120px;
}

.video-toggle {
  position: absolute;
  right: max(20px, calc((100% - var(--atlas-shell)) / 2));
  bottom: 56px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(3, 31, 24, .68);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 18, 12, .2);
  backdrop-filter: blur(10px);
  gap: 7px;
}

.video-toggle:hover {
  background: rgba(10, 79, 54, .88);
}

.video-toggle .motion-icon {
  font-size: 10px;
  font-weight: 800;
}

.video-toggle .motion-label {
  font-size: 10px;
  font-weight: 700;
}

.atlas-explore-map {
  position: relative;
  z-index: 11;
  padding-block: 86px 92px;
  background: linear-gradient(180deg, #f8fbf7 0%, #edf4ee 100%);
  border-bottom: 1px solid var(--atlas-line);
}

.atlas-explore-heading {
  max-width: 790px;
}

.atlas-explore-heading > p:last-child {
  max-width: 720px;
}

.atlas-explore-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-top: 38px;
}

.atlas-explore-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 220px;
  overflow: hidden;
  color: #fff;
  background: #0a392c;
  border: 1px solid rgba(14, 67, 49, .16);
  border-radius: 8px;
  box-shadow: 0 15px 34px rgba(14, 51, 39, .11);
  isolation: isolate;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.atlas-explore-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 20, 15, .18) 0%, rgba(2, 24, 18, .42) 46%, rgba(2, 25, 18, .98) 100%),
    linear-gradient(90deg, rgba(2, 27, 20, .55), rgba(2, 27, 20, .08) 76%);
  transition: background-color 220ms ease;
}

.atlas-explore-card img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(.2, .68, .28, 1);
}

.atlas-explore-card > span {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  display: grid;
  gap: 7px;
  padding: 52px 58px 20px 20px;
  background: linear-gradient(180deg, rgba(1, 19, 14, 0), rgba(1, 19, 14, .62) 45%, rgba(1, 19, 14, .9));
}

.atlas-explore-card small {
  color: #b9ed83;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .96), 0 0 10px rgba(0, 0, 0, .58);
  text-transform: uppercase;
}

.atlas-explore-card b {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .96), 0 2px 12px rgba(0, 0, 0, .72);
}

.atlas-explore-card em {
  color: rgba(255, 255, 255, .96);
  font-size: 11px;
  font-style: normal;
  line-height: 1.45;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .98), 0 2px 9px rgba(0, 0, 0, .7);
}

.atlas-explore-card i {
  position: absolute;
  right: 18px;
  bottom: 19px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  background: rgba(2, 25, 18, .45);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.atlas-explore-card:hover,
.atlas-explore-card:focus-visible {
  color: #fff;
  border-color: rgba(46, 143, 99, .62);
  box-shadow: 0 22px 44px rgba(10, 48, 35, .2);
  transform: translateY(-4px);
}

.atlas-explore-card:hover img,
.atlas-explore-card:focus-visible img {
  transform: scale(1.045);
}

.atlas-explore-card:hover i,
.atlas-explore-card:focus-visible i {
  color: #123a2a;
  background: #b9ed83;
  border-color: #b9ed83;
  transform: translateX(2px);
}

.atlas-explore-card:focus-visible {
  outline: 3px solid rgba(93, 176, 112, .42);
  outline-offset: 3px;
}

.atlas-purpose-bridge {
  position: relative;
  z-index: 10;
  padding: 82px 0 68px;
  color: var(--atlas-ink);
  background: var(--atlas-paper);
}

.atlas-purpose-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: end;
  gap: 58px;
}

.atlas-purpose-copy h2,
.atlas-public-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
}

.atlas-purpose-copy h2 {
  font-size: 50px;
}

.atlas-purpose-copy > p:last-child,
.atlas-public-copy > p {
  margin: 20px 0 0;
  color: var(--atlas-muted);
  font-size: 16px;
  line-height: 1.75;
}

.atlas-purpose-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--atlas-line);
  border-bottom: 1px solid var(--atlas-line);
}

.atlas-purpose-path {
  display: flex;
  min-width: 0;
  min-height: 250px;
  flex-direction: column;
  padding: 20px 18px;
  border-right: 1px solid var(--atlas-line);
}

.atlas-purpose-path:last-child {
  border-right: 0;
}

.atlas-purpose-path > small {
  color: var(--atlas-emerald);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.atlas-purpose-path > b {
  margin-block: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  line-height: 1.04;
}

.atlas-purpose-path nav {
  display: grid;
  margin-top: auto;
  border-top: 1px solid rgba(174, 204, 182, .8);
}

.atlas-purpose-path nav a {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 2px;
  color: #21583e;
  border-bottom: 1px solid rgba(174, 204, 182, .62);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  transition: color 180ms ease, padding 180ms ease, background-color 180ms ease;
}

.atlas-purpose-path nav a:last-child {
  border-bottom: 0;
}

.atlas-purpose-path nav a:hover,
.atlas-purpose-path nav a:focus-visible {
  padding-inline: 7px;
  color: #ffffff;
  background: #176f49;
  outline: 0;
}

.atlas-purpose-path nav span {
  flex: 0 0 auto;
  color: var(--atlas-emerald);
  font-size: 12px;
  font-weight: 800;
}

.atlas-purpose-path nav a:hover span,
.atlas-purpose-path nav a:focus-visible span {
  color: #dff6a9;
}

.atlas-work {
  padding-top: 54px;
  background: var(--atlas-paper);
}

.atlas-public-information {
  padding-block: var(--atlas-s9);
  color: #f5faf7;
  background: #102f33;
}

.atlas-public-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: 72px;
}

.atlas-public-image {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  box-shadow: var(--atlas-shadow-lg);
}

.atlas-public-image::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(2, 26, 25, .88));
}

.atlas-public-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2, .75, .25, 1);
}

.atlas-public-image:hover img {
  transform: scale(1.025);
}

.atlas-public-image figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 2;
  color: rgba(255, 255, 255, .76);
  font-size: 10px;
  font-weight: 700;
}

.atlas-public-copy .atlas-kicker {
  color: #8fc7d4;
}

.atlas-public-copy h2 {
  color: #fff;
}

.atlas-public-copy > p {
  color: rgba(240, 249, 245, .76);
}

.atlas-public-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.atlas-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.atlas-social-row a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  color: #eef9f3;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.atlas-social-row a:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .55);
  transform: translateY(-2px);
}

.atlas-companion-copy .atlas-button-ghost {
  color: #fff;
  background: rgba(2, 35, 27, .66);
  border-color: rgba(255, 255, 255, .62);
}

.atlas-companion-copy .atlas-button-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border-color: #fff;
}

.atlas-directory {
  padding-block: 100px;
  background:
    linear-gradient(180deg, rgba(237, 244, 239, .76), rgba(247, 249, 245, .96)),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(23, 120, 78, .035) 79px 80px);
  border-top: 1px solid var(--atlas-line);
}

.atlas-directory-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.atlas-directory-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--atlas-line);
  border-radius: 8px;
  box-shadow: var(--atlas-shadow-md);
}

.atlas-directory-group {
  position: relative;
  min-width: 0;
  padding: 34px 32px 20px;
}

.atlas-directory-group + .atlas-directory-group {
  border-left: 1px solid var(--atlas-line);
}

.atlas-directory-group::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: var(--atlas-emerald);
}

.atlas-directory-act::before {
  background: var(--atlas-gold);
}

.atlas-directory-connect::before {
  background: var(--atlas-blue);
}

.atlas-directory-group > .atlas-kicker {
  margin-bottom: 8px;
}

.atlas-directory-group h3 {
  margin: 0;
  color: var(--atlas-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 2.7vw, 38px);
  line-height: 1.02;
}

.atlas-directory-group > p:not(.atlas-kicker) {
  min-height: 78px;
  margin: 16px 0 22px;
  color: var(--atlas-muted);
  font-size: 13px;
  line-height: 1.6;
}

.atlas-directory-group nav {
  border-top: 1px solid var(--atlas-line);
}

.atlas-directory-group nav a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 74px;
  padding: 14px 0;
  border-bottom: 1px solid var(--atlas-line);
  gap: 16px;
  transition: color 180ms ease, padding 180ms ease, background-color 180ms ease;
}

.atlas-directory-group nav a:hover,
.atlas-directory-group nav a:focus-visible {
  padding-right: 8px;
  padding-left: 8px;
  color: var(--atlas-emerald);
  background: rgba(237, 244, 239, .74);
}

.atlas-directory-group nav a span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.atlas-directory-group nav a b {
  font-size: 13px;
  line-height: 1.25;
}

.atlas-directory-group nav a small {
  color: var(--atlas-muted);
  font-size: 10px;
  line-height: 1.45;
}

.atlas-directory-group nav a i {
  color: var(--atlas-emerald);
  font-style: normal;
  font-weight: 800;
}

.atlas-directory-act nav a i {
  color: #906d2a;
}

.atlas-directory-connect nav a i {
  color: var(--atlas-blue);
}

@media (max-width: 980px) {
  .atlas-explore-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .atlas-purpose-inner,
  .atlas-public-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .atlas-directory-groups {
    grid-template-columns: 1fr;
  }

  .atlas-directory-group + .atlas-directory-group {
    border-top: 1px solid var(--atlas-line);
    border-left: 0;
  }

  .atlas-directory-group > p:not(.atlas-kicker) {
    min-height: 0;
  }

  .atlas-public-image,
  .atlas-public-image img {
    min-height: 440px;
  }
}

@media (max-width: 760px) {
  .atlas-explore-map {
    padding-block: 68px 72px;
  }

  .atlas-explore-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-top: 30px;
  }

  .atlas-explore-card {
    min-height: 206px;
  }
}

@media (max-width: 620px) {
  .redesign-video-hero {
    min-height: 660px;
  }

  .redesign-video-hero .atlas-hero-content {
    padding-bottom: 106px;
  }

  .redesign-video-hero .atlas-hero-shade {
    background: linear-gradient(180deg, rgba(3, 31, 24, .52) 0%, rgba(3, 31, 24, .9) 80%, rgba(3, 31, 24, .97) 100%);
  }

  .video-toggle {
    right: 18px;
    bottom: 48px;
  }

  .atlas-purpose-bridge {
    padding: 62px 0 48px;
  }

  .atlas-purpose-copy h2,
  .atlas-public-copy h2 {
    font-size: 40px;
  }

  .atlas-purpose-paths {
    grid-template-columns: 1fr;
  }

  .atlas-purpose-path {
    min-height: 0;
    padding: 18px 2px;
    border-right: 0;
    border-bottom: 1px solid var(--atlas-line);
  }

  .atlas-purpose-path:last-child {
    border-bottom: 0;
  }

  .atlas-public-information {
    padding-block: 64px;
  }

  .atlas-directory {
    padding-block: 68px;
  }

  .atlas-directory-heading {
    margin-bottom: 30px;
  }

  .atlas-directory-group {
    padding: 28px 22px 16px;
  }

  .atlas-directory-group h3 {
    font-size: 34px;
  }

  .atlas-public-image,
  .atlas-public-image img {
    min-height: 320px;
  }

  .atlas-public-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .atlas-public-actions .atlas-button,
  .atlas-social-row a {
    flex: 1 1 auto;
  }

  .atlas-social-row {
    width: 100%;
  }
}

@media (max-width: 590px) {
  .atlas-explore-map {
    padding-block: 58px 62px;
  }

  .atlas-explore-grid {
    grid-template-columns: 1fr;
  }

  .atlas-explore-card {
    min-height: 194px;
  }

  .atlas-explore-card > span {
    padding: 48px 58px 18px 18px;
  }

  .atlas-explore-card b {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atlas-explore-card,
  .atlas-explore-card img,
  .atlas-explore-card i {
    transition: none;
  }
}
