:root {
  color-scheme: light;
}

@font-face {
  font-family: "LEAP";
  src: url("fonts/Leap.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Factor A";
  src: url("fonts/Factor-A-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Factor A";
  src: url("fonts/Factor-A-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f2f0e6;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1e1a;
  display: flex;
  flex-direction: column;
}

.scrolling_text {
    width: 100%;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    background: #f88336;
    margin-top: -40px;
}

.scrolling_text .text {
    font-size: 150px;
    font-family: "LEAP", "Helvetica Neue", Arial, sans-serif;
    text-transform: uppercase;
    color: #000000;
}

.scrolling_text .text span {
    margin: 0 0px;
}

@keyframes animate_text {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(-100%, 0, 0);
    }
}
.text {
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
    animation: animate_text 30s linear infinite; /* The animation property */
}

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

header.banner {
  position: relative;
  width: 100%;
  height: 500px;
  background: #f88336;
  padding-top: 1px;
}

header.banner .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding-top: 2rem;
  gap: 1.5rem;
  padding-left: 20px;
  padding-right: 20px;
}

h1 {
  font-family: "Factor A", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.mission {
  max-width: 60ch;
  font-family: "Factor A", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.7;
  color: #1f1e1a;
  padding-top: 50px;
}

main.content {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
}

.panel {
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

#section-6 {
  margin-top: -100px;
}

.panel h2 {
  margin-bottom: 1rem;
  font-family: "Factor A", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.panel p {
  margin: 0 0 1rem;
  max-width: 60ch;
  font-family: "Factor A", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

.panel-longform {
  width: 100%;
  text-align: left;
}

.panel-longform p {
  max-width: none;
}

.panel-longform span {
  font-weight: 700;
}
.panel-longform a {
  color: #1f1e1a;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.panel-longform a:hover {
  opacity: 0.8;
}

.site-footer {
  background: #343434;
  color: #f2f0e6;
  min-height: 130px;
  padding: 2rem 0;
}

.footer-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 2rem;
  flex-wrap: wrap;
}

.site-footer .footer-column {
  flex: 1 1 0;
}

.footer-brand img,
.footer-social img {
  max-height: clamp(36px, 6vw, 60px);
  height: auto;
  width: auto;
}

.footer-brand {
  display: flex;
  justify-content: flex-start;
}

.footer-address {
  text-align: center;
  font-family: "Factor A", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
}

.footer-social a {
  display: inline-flex;
}

.footer-social img {
  transition: transform 0.2s ease;
}

.footer-social img:hover {
  transform: scale(1.05);
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 1.25rem;
  }

  .site-footer .footer-column {
    flex: 0 0 auto;
    width: 100%;
  }

  .footer-brand,
  .footer-social {
    justify-content: center;
  }

  .footer-address {
    font-size: 0.95rem;
  }
}
.video-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.video-wrapper iframe {
  width: min(100%, 960px);
  height: clamp(315px, 56vw, 540px);
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pitch-intro {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-family: "Factor A", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

.pitch-intro span {
  display: block;
  font-family: "Factor A", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  text-transform: none;
  margin-bottom: 0.5rem;
}

.pitch-title {
  font-family: "Factor A", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

.pitch-intro a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.pitch-intro a:hover {
  opacity: 0.85;
}

.panel-highlight {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  align-items: center;
}

.panel-highlight p {
  margin: 0;
  font-family: "Factor A", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  line-height: 1.3;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.6s ease, transform 1.6s ease;
}

.panel-highlight.is-visible p {
  opacity: 1;
  transform: translateY(0);
}

.panel-highlight.is-visible p:nth-child(2) {
  transition-delay: 1.1s;
}

.panel-highlight.is-visible p:nth-child(3) {
  transition-delay: 1.1s;
}

.panel-highlight.is-visible p:nth-child(4) {
  transition-delay: 1.1s;
}
.panel-highlight.is-visible p:nth-child(5) {
  transition-delay: 1.1s;
}
.panel-highlight.is-visible p:nth-child(6) {
  transition-delay: 1.1s;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}

.panel-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 0;
  object-fit: cover;
}

.panel-media--no-crop img {
  max-height: none;
  object-fit: contain;
}

.header-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.header-wave svg {
  display: block;
  width: 100%;
  max-width: 1600px;
  height: 150px;
  margin: 0 auto;
}

.header-wave .shape-fill {
  fill: #f2f0e6;
}
