@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --bg: #FAFBFF;
  --soft: #f2faef;
  --surface: #ffffff;
  --navy: rgba(15, 26, 12, 1);
  --muted: rgba(107, 127, 101, 1);
  --green: rgba(68, 214, 44, 1);
  --green-dark: #38b824;
  --dark-text: rgba(26, 31, 23, 1);
  --amber: #eda900;
  --blue: #105eea;
  --border: #dfe7f1;
  --shadow: 0 18px 46px rgba(20, 35, 60, 0.1);
  --nav-height: 96px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
  background: var(--bg);
  color: var(--navy);
  overflow-x: hidden;
  font-size: 20px;
  font-weight: 500;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  padding: 0 60px;
  background: var(--green);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo,
.nav-logo img {
  display: block;
}

.nav-logo img {
  height: 100% !important;
  max-height: 74px !important;
  width: auto;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
  list-style: none;
}

.nav-links > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 20px 0;
  color: white;
  text-decoration: none;
  font-size: clamp(14px, calc(7.14px + 0.67vw), 20px);
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-links > li > a:hover {
  color: white;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  padding: 12px 0;
  width: max-content;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 8px 28px;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(12px, calc(7.43px + 0.45vw), 16px);
  font-weight: 700;
  transition: background-color 0.15s ease;
}

.nav-dropdown a:hover {
  background-color: rgba(255, 255, 255, 0.14);
}

.nav-cta {
  background: white;
  color: var(--green) !important;
  height: auto !important;
  padding: 11px 26px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: clamp(14px, calc(7.14px + 0.67vw), 20px) !important;
  transition: background 0.2s, transform 0.2s !important;
  text-decoration: none;
  align-self: center;
}

.nav-cta:hover {
  background: white !important;
  transform: translateY(-1px);
}

main {
  background: var(--bg);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(0, 1.04fr);
  min-height: calc(100svh - var(--nav-height));
  margin: 0;
  background: var(--green);
}

.hero-copy {
  padding: 60px 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
}

.hero-copy h1 {
  margin-top: 12px;
  color: #ffffff;
  font-size: clamp(42px, 5.8vw, 96px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -3px;
}

.hero-copy h1 span {
  display: block;
  color: var(--navy);
}

.hero-lede {
  max-width: 520px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
  line-height: 1.7;
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 600px);
  margin-top: clamp(28px, 3vw, 40px);
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-stats article {
  padding: clamp(18px, 2vw, 24px) clamp(12px, 1.5vw, 18px);
  text-align: center;
  border-right: 1px solid #e8edf4;
}

.hero-stats article:last-child {
  border-right: 0;
}

.hero-stats span {
  display: block;
  color: rgba(107, 127, 101, 0.72);
  font-size: clamp(9px, 0.78vw, 10px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: clamp(1.2px, 0.15vw, 2px);
  text-transform: uppercase;
}

.hero-stats strong {
  display: block;
  margin-top: clamp(6px, 0.8vw, 8px);
  color: var(--green);
  font-size: clamp(24px, 2.45vw, 31px);
  line-height: 1;
  font-weight: 900;
}

.hero-stats em {
  display: block;
  margin-top: clamp(4px, 0.6vw, 5px);
  color: var(--muted);
  font-size: clamp(10px, 0.95vw, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}

.hero-carousel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #d8dde4;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.hero-carousel.dragging {
  cursor: grabbing;
}

.carousel-viewport,
.hero-slide,
.hero-slide img,
.image-fallback {
  width: 100%;
  height: 100%;
}

.carousel-viewport {
  position: relative;
  min-height: inherit;
  display: flex;
  transform: translate3d(-100%, 0, 0);
  will-change: transform;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  overflow: hidden;
}

.hero-slide.active {
  visibility: visible;
}

.hero-slide img {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.image-fallback {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(68, 214, 44, 0.14), rgba(16, 94, 234, 0.16)),
    #eef4f7;
  color: var(--navy);
  text-align: center;
}

.image-fallback {
  padding: 36px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.carousel-dot.active {
  width: 26px;
  background: var(--green);
}

/* Prev/next arrows — shared base */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(20, 35, 60, 0.18);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.carousel-arrow:hover {
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(20, 35, 60, 0.24);
}

.carousel-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-arrow-prev {
  left: 18px;
}

.carousel-arrow-next {
  right: 18px;
}

/* Core-values arrows flank the dots row below the stage */
.values-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 38px;
}

.values-arrow {
  position: static;
  transform: none;
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: var(--green-dark);
  box-shadow: 0 4px 14px rgba(20, 35, 60, 0.12);
}

.values-controls .values-dots {
  margin-top: 0;
}

.foundation-section {
  padding: 80px 60px;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: end;
  gap: 64px;
}

.eyebrow.line {
  position: relative;
  padding-left: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-intro h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--navy);
}

.slogan-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--navy);
}

.section-intro p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
  max-width: 680px;
  font-weight: 600;
}

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 58px;
}

.foundation-card {
  min-height: 220px;
  padding: 36px 32px 34px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 8px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 35, 60, 0.05);
}

.foundation-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
}

.foundation-card h3 {
  margin-top: 14px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.foundation-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.65;
}

.amber-card {
  border-top-color: var(--amber);
}

.amber-card span {
  color: var(--amber);
}

.blue-card {
  border-top-color: var(--blue);
}

.blue-card span {
  color: var(--blue);
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 82px;
  padding: 80px 60px;
  background: var(--soft);
}

.founder-photo-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.founder-photo {
  position: relative;
  z-index: 2;
  width: min(480px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: contain;
}

.founder-copy h2 {
  margin-top: 18px;
  color: var(--navy);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
}

.founder-title {
  margin-top: 14px;
  padding-bottom: 30px;
  border-bottom: 2px solid #9eacbd;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.founder-copy > p:last-child {
  margin-top: 34px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

.values-section {
  position: relative;
  padding: 80px 60px;
  min-height: 500px;
  background: var(--bg);
  overflow: hidden;
}

.values-section h2 {
  margin-bottom: 42px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--navy);
}

.values-carousel {
  position: relative;
}

/* Desktop: VERITY fills the left, card pinned to the far-right edge.
   Wordmark grows (flex: 1) so the card stays at the right of the content area. */
.values-stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 120px);
  max-width: 1500px;
  min-height: 270px;
}

.value-wordmark {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.value-letter {
  min-width: 0;
  flex: 0 1 auto;
  border: 0;
  background: transparent;
  color: rgba(15, 26, 12, 0.11);
  font-size: clamp(96px, 14vw, 220px);
  line-height: 0.82;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.value-letter.active {
  color: var(--green);
}

.value-letter:hover {
  transform: translateY(-2px);
}

.value-card {
  flex: 0 0 clamp(260px, 24vw, 360px);
  min-height: 300px;
  padding: 38px 36px;
  background: #ffffff;
  border-left: 5px solid var(--green);
  border-radius: 14px;
  box-shadow: 0 28px 70px rgba(20, 35, 60, 0.14);
}

/* Crossfade the card text when switching values */
.value-label,
.value-description {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.value-card.swapping .value-label,
.value-card.swapping .value-description {
  opacity: 0;
  transform: translateY(8px);
}

.value-label {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
}

.value-description {
  margin-top: 26px;
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.65;
}

.values-dots {
  position: static;
  margin-top: 38px;
  justify-content: center;
  transform: none;
}

.values-dots .carousel-dot {
  background: #d7dde8;
}

.values-dots .carousel-dot.active {
  background: var(--green);
}

.slogan-section {
  background: rgba(68, 214, 44, 1);
  padding: 80px 40px;
  text-align: center;
}

.slogan-section h2:first-child {
  color: black;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0 auto 16px;
}

.slogan-section h2:nth-child(2) {
  color: white;
  font-size: 22px;
  font-weight: 600 !important;
  letter-spacing: 0;
  line-height: 1.5;
  margin: 12px auto 0;
  max-width: none;
  white-space: nowrap;
}

.slogan-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 36px;
}

.btn-slogan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-slogan-outline {
  color: #44d62c;
  background: #fff;
  border: 2px solid #fff;
}

.btn-slogan-outline:hover {
  background: #f0f0f0;
}

.btn-slogan-fill {
  color: #fff;
  background: transparent;
  border: 2px solid #ffffff;
}

.btn-slogan-fill:hover {
  background: rgba(255, 255, 255, 0.15);
}

footer {
  background: #f8f8f6;
  padding: 56px 60px 48px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 40px;
}

.footer-heading {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #5A6A85;
  margin-bottom: 16px;
  text-transform: none;
}

.footer-col a {
  display: block;
  color: var(--navy);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.88;
}

.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
}

.footer-bar {
  background: var(--green);
  padding: 14px 60px;
  font-size: 11px;
  color: white;
  text-align: center;
}

@media (max-width: 1180px) {
  nav {
    padding: 0 32px;
  }

  .about-hero {
    margin: 0;
    grid-template-columns: 1fr;
  }

  /* Carousel now sits below — center the green panel's contents */
  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .carousel-viewport {
    min-height: inherit;
  }

  .foundation-section,
  .founder-section,
  .values-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .foundation-grid {
    grid-template-columns: 1fr;
  }

  /* Stack VERITY over the card once side-by-side gets cramped */
  .values-stage {
    flex-direction: column;
    align-items: center;
    gap: 36px;
    max-width: 100%;
  }

  .value-wordmark {
    justify-content: center;
    overflow: visible;
  }

  .value-letter {
    font-size: clamp(64px, 12vw, 120px);
  }

  .value-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 440px;
    min-height: auto;
  }
}

@media (max-width: 960px) {
  body.nav-open {
    overflow: hidden;
  }

  nav {
    --nav-height: 88px;
    padding: 0 24px;
  }

  .nav-logo img {
    height: 62px;
    max-height: 62px !important;
  }

  .nav-burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    background: var(--green);
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    height: auto;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 100;
  }

  .nav-links.open {
    display: flex;
    animation: navSlideDown 0.25s ease forwards;
  }

  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-links > li {
    display: block;
    height: auto;
    width: 100%;
  }

  .nav-links > li > a {
    color: white;
    font-size: 14px;
    height: auto;
    padding: 14px 0;
    width: 100%;
  }

  .nav-links > li:last-child > a {
    border-bottom: none;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 0 0 8px 8px;
    padding: 4px 12px;
    margin-bottom: 8px;
    width: auto;
  }

  .nav-dropdown a {
    font-size: 14px;
    color: white !important;
    padding: 10px 8px;
  }

  .about-hero {
    margin: 0;
    min-height: calc(100svh - var(--nav-height));
  }

  .hero-copy {
    padding: 44px 28px;
    align-items: center;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 7vw, 48px);
    letter-spacing: -1px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
  }

  .hero-stats article {
    padding: 18px 22px;
    border-right: 0;
    border-bottom: 1px solid #e8edf4;
  }

  .hero-stats article:last-child {
    border-bottom: 0;
  }

  .hero-stats span {
    font-size: 10px;
    letter-spacing: 1.8px;
  }

  .hero-stats strong {
    font-size: clamp(26px, 7vw, 34px);
  }

  .hero-stats em {
    font-size: 13px;
  }

  .carousel-viewport {
    min-height: inherit;
  }

  .foundation-section,
  .founder-section,
  .values-section {
    padding: 60px 24px;
  }

  .section-intro h2 {
    font-size: 28px;
  }

  .values-section h2 {
    margin-left: 0;
    font-size: 28px;
  }

  .section-intro p,
  .foundation-card p,
  .founder-copy > p:last-child,
  .value-description {
    font-size: 16px;
  }

  .value-label {
    font-size: 18px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .founder-section {
    grid-template-columns: 1fr;
    gap: 42px;
    text-align: left;
  }

  .founder-photo-wrap {
    order: -1;
  }

  .value-wordmark {
    justify-content: center;
    overflow: hidden;
  }

  /* vw-driven so all six letters always fit, even on narrow phones */
  .value-letter {
    font-size: clamp(34px, 13.5vw, 120px);
  }

  .values-controls {
    margin-top: 54px;
  }

  .slogan-section h2:nth-child(2) {
    white-space: normal;
    max-width: 600px;
  }

  footer {
    padding: 40px 24px;
    overflow: hidden;
  }

  .footer-inner {
    flex-direction: row;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    flex: 1;
  }
}

@media (max-width: 520px) {
  .eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-arrow svg {
    width: 18px;
    height: 18px;
  }

  .carousel-arrow-prev {
    left: 10px;
  }

  .carousel-arrow-next {
    right: 10px;
  }

  .values-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-viewport {
    min-height: inherit;
  }

  .foundation-card {
    padding: 28px 24px;
  }

  .founder-copy h2 {
    font-size: 42px;
  }

  .value-card {
    min-height: auto;
    padding: 32px 28px;
  }

  .slogan-section {
    padding: 60px 24px;
  }

  .slogan-section h2:first-child {
    font-size: clamp(24px, 6vw, 36px);
    letter-spacing: -0.5px;
  }

  .slogan-section h2:nth-child(2) {
    font-size: 16px;
    white-space: normal;
    max-width: 600px;
  }

  .slogan-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-slogan {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    width: 100%;
    justify-items: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-logo-img {
    height: 70px;
  }

  .footer-bar {
    padding: 14px 24px;
  }
}

@media (min-width: 1920px) {
  body {
    font-size: 22px;
  }

  nav {
    --nav-height: 110px;
  }

  .about-hero {
    min-height: calc(100svh - var(--nav-height));
  }

  .nav-logo img {
    height: 84px;
    max-height: 84px !important;
  }

  .nav-links > li > a {
    font-size: clamp(20px, calc(8px + 0.625vw), 24px);
  }

  .nav-dropdown a {
    font-size: clamp(16px, calc(4px + 0.625vw), 20px);
  }

  .nav-cta {
    font-size: clamp(20px, calc(8px + 0.625vw), 24px) !important;
  }

  .hero-lede {
    font-size: 26px;
    max-width: 900px;
  }

  .hero-stats {
    width: min(100%, 760px);
  }

  .hero-stats article {
    padding: 30px 22px;
  }

  .hero-stats span {
    font-size: 12px;
  }

  .hero-stats strong {
    font-size: 40px;
  }

  .hero-stats em {
    font-size: 15px;
  }

  .section-intro h2 {
    font-size: 52px;
  }

  .slogan-section h2:first-child {
    font-size: 64px;
  }

  .values-section h2 {
    font-size: 52px;
  }

  .section-intro p,
  .founder-copy > p:last-child {
    font-size: 22px;
  }

  .foundation-card h3 {
    font-size: 32px;
  }

  .foundation-card p,
  .value-description {
    font-size: 18px;
  }

  .founder-copy h2 {
    font-size: 64px;
  }

  .founder-title,
  .foundation-card span,
  .eyebrow {
    font-size: 13px;
  }

  .value-label {
    font-size: 22px;
  }

  .eyebrow.line {
    font-size: 15px;
  }

  .hero-copy h1 {
    font-size: clamp(56px, 4.5vw, 86px);
  }

  .slogan-section h2:nth-child(2) {
    font-size: 26px;
  }

  .btn-slogan {
    font-size: clamp(18px, calc(6px + 0.625vw), 22px);
    width: auto;
    min-width: 240px;
    padding-inline: 40px;
  }

  .footer-heading,
  .footer-col a {
    font-size: 17px;
  }

  .footer-bar {
    font-size: 13px;
  }
}

@media (min-width: 2560px) {
  body {
    font-size: 24px;
  }

  nav {
    --nav-height: 128px;
  }

  .about-hero {
    min-height: calc(100svh - var(--nav-height));
  }

  .nav-logo img {
    height: 98px;
    max-height: 98px !important;
  }

  .nav-links > li > a {
    font-size: clamp(24px, calc(12px + 0.469vw), 30px);
  }

  .nav-dropdown a {
    font-size: clamp(20px, calc(12px + 0.3125vw), 24px);
  }

  .nav-cta {
    font-size: clamp(24px, calc(12px + 0.469vw), 30px) !important;
  }

  .hero-lede {
    font-size: 32px;
    max-width: 1100px;
  }

  .hero-stats {
    width: min(100%, 920px);
  }

  .hero-stats article {
    padding: 38px 28px;
  }

  .hero-stats span {
    font-size: 15px;
  }

  .hero-stats strong {
    font-size: 52px;
  }

  .hero-stats em {
    font-size: 18px;
  }

  .section-intro h2 {
    font-size: 64px;
  }

  .slogan-section h2:first-child {
    font-size: 78px;
  }

  .values-section h2 {
    font-size: 64px;
  }

  .section-intro p,
  .founder-copy > p:last-child {
    font-size: 26px;
  }

  .foundation-card h3 {
    font-size: 38px;
  }

  .foundation-card p,
  .value-description {
    font-size: 22px;
  }

  .founder-copy h2 {
    font-size: 80px;
  }

  .founder-title,
  .foundation-card span,
  .eyebrow {
    font-size: 15px;
  }

  .value-label {
    font-size: 26px;
  }

  .eyebrow.line {
    font-size: 17px;
  }

  .hero-copy h1 {
    font-size: clamp(72px, 4vw, 102px);
  }

  .slogan-section h2:nth-child(2) {
    font-size: 32px;
  }

  .btn-slogan {
    font-size: clamp(22px, calc(10px + 0.469vw), 28px);
    min-width: 300px;
    padding-inline: 48px;
  }

  .footer-heading,
  .footer-col a {
    font-size: 20px;
  }

  .footer-bar {
    font-size: 15px;
  }
}

@media (min-width: 3840px) {
  body {
    font-size: 28px;
  }

  nav {
    --nav-height: 150px;
  }

  .about-hero {
    min-height: calc(100svh - var(--nav-height));
  }

  .nav-logo img {
    height: 116px;
    max-height: 116px !important;
  }

  .nav-links > li > a {
    font-size: 30px;
  }

  .nav-dropdown a {
    font-size: 24px;
  }

  .nav-cta {
    font-size: 30px !important;
  }

  .hero-lede {
    font-size: 42px;
    max-width: 1500px;
  }

  .hero-stats {
    width: min(100%, 1220px);
  }

  .hero-stats article {
    padding: 52px 36px;
  }

  .hero-stats span {
    font-size: 20px;
  }

  .hero-stats strong {
    font-size: 72px;
  }

  .hero-stats em {
    font-size: 26px;
  }

  .section-intro h2 {
    font-size: 88px;
  }

  .slogan-section h2:first-child {
    font-size: 112px;
  }

  .values-section h2 {
    font-size: 88px;
  }

  .section-intro p,
  .founder-copy > p:last-child {
    font-size: 34px;
  }

  .foundation-card h3 {
    font-size: 52px;
  }

  .foundation-card p,
  .value-description {
    font-size: 32px;
  }

  .founder-copy h2 {
    font-size: 112px;
  }

  .founder-title,
  .foundation-card span,
  .eyebrow {
    font-size: 18px;
  }

  .value-label {
    font-size: 34px;
  }

  .eyebrow.line {
    font-size: 20px;
  }

  .hero-copy h1 {
    font-size: 128px;
  }

  .slogan-section h2:nth-child(2) {
    font-size: 42px;
  }

  .btn-slogan {
    font-size: 28px;
  }

  .footer-heading,
  .footer-col a {
    font-size: 24px;
  }

  .footer-bar {
    font-size: 18px;
  }
}
