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

html {
  color-scheme: light;
}

body {
  min-width: 320px;
  font-family: Inter, Arial, sans-serif;
  background: #ebdd2f;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #342aff;
  background-image: url("assets/hero.jpg");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, #ebdd2f 0%, #ebdd2f 43%, rgba(235, 221, 47, 0.96) 49%, rgba(235, 221, 47, 0.18) 69%, rgba(255, 255, 255, 0.08) 100%);
  pointer-events: none;
}

.hero__nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1.25rem, 6vw, 6rem);
  opacity: 0;
  animation: fade-down 700ms ease-out 100ms forwards;
}

.brand {
  display: inline-block;
  width: clamp(9.5rem, 13vw, 11.75rem);
}

.brand img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.hero__content {
  align-self: center;
  width: min(100%, 88rem);
  margin: 0 auto;
  padding: clamp(9rem, 18vh, 12rem) clamp(1.25rem, 6vw, 6rem) clamp(10rem, 20vh, 13rem);
  opacity: 0;
  transform: translateY(1.25rem);
  animation: reveal 900ms cubic-bezier(0.22, 1, 0.36, 1) 180ms forwards;
}

.hero__eyebrow {
  margin-bottom: clamp(1.25rem, 3vh, 2rem);
  color: #342aff;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.75rem, 5.4vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero__description {
  max-width: 40rem;
  margin-top: clamp(1.75rem, 4vh, 3rem);
  color: #4f4f57;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.hero__action {
  display: flex;
  align-items: center;
  gap: 1.25rem 1.75rem;
  margin-top: clamp(2.25rem, 5vh, 3.75rem);
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.75rem;
  padding: 1rem 1.5rem;
  color: #fff;
  background: #342aff;
  border-radius: 0.3rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.hero__button:hover {
  opacity: 0.86;
}

.hero__button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero__action p {
  max-width: 14rem;
  color: #66666c;
  font-size: 0.85rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.hero__stats {
  position: absolute;
  right: clamp(1.25rem, 5vw, 5rem);
  bottom: clamp(1.5rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  color: #fff;
}

.hero__stats div {
  min-width: 6.5rem;
}

.hero__stats dt {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero__stats dd {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

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

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-0.75rem);
  }

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

@media (max-width: 42rem) {
  .hero {
    background-position: 67% center;
  }

  .hero::before {
    background: linear-gradient(90deg, #ebdd2f 0%, rgba(235, 221, 47, 0.98) 58%, rgba(235, 221, 47, 0.76) 100%);
  }

  .hero__content {
    align-self: start;
    padding-top: 8rem;
    padding-bottom: 11rem;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero__action {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__button {
    width: 100%;
  }

  .hero__stats {
    right: 1.25rem;
    bottom: 1.5rem;
    left: 1.25rem;
    gap: 0.75rem;
    color: #342aff;
  }

  .hero__stats div {
    min-width: 0;
  }

  .hero__stats dd {
    color: #5d5d63;
  }
}

@media (min-width: 43rem) and (max-width: 64rem) {
  .hero::before {
    background: linear-gradient(90deg, #ebdd2f 0%, #ebdd2f 51%, rgba(235, 221, 47, 0.92) 62%, rgba(235, 221, 47, 0.3) 100%);
  }

  .hero__content {
    padding-bottom: 12rem;
  }

  .hero__description {
    max-width: 31rem;
  }

  .hero__stats {
    color: #342aff;
  }

  .hero__stats dd {
    color: #5d5d63;
  }
}

@media (max-height: 49rem) and (min-width: 43rem) {
  .hero__content {
    padding-top: 7rem;
    padding-bottom: 8rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 8vh, 4.25rem);
  }

  .hero__description {
    margin-top: 1.25rem;
  }

  .hero__action {
    margin-top: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__nav,
  .hero__content {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.page-section {
  padding: clamp(6rem, 10vw, 9rem) clamp(1.25rem, 6vw, 6rem);
  color: #342aff;
  background: #fff;
}

.page-section:nth-of-type(even) {
  background: #f5f5f7;
}

.section-shell {
  width: min(100%, 76rem);
  margin: 0 auto;
}

.section-heading {
  max-width: 50rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading__eyebrow {
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.layout-panel {
  background: #fff;
  border: 1px solid #e4e4e8;
  border-radius: 1.25rem;
}

.layout-split {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.layout-stack {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.layout-panel--large {
  min-height: 28rem;
  background: #ebdd2f;
  border-color: #ebdd2f;
}

.about-card {
  min-width: 0;
  padding: clamp(1.75rem, 3vw, 3rem);
  transition: transform 180ms ease, border-color 180ms ease;
}

.about-card:hover {
  transform: translateY(-0.2rem);
  border-color: rgba(52, 42, 255, 0.28);
}

.about-card h3 {
  color: #222228;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-card p {
  color: #505057;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-card--story {
  display: flex;
  min-height: 34rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  color: #222228;
}

.about-card--story h3 {
  max-width: 12ch;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
}

.about-card--story p {
  max-width: 42rem;
  margin-top: 1.5rem;
  color: #303036;
}

.about-card__unesco {
  display: grid;
  gap: 0.45rem;
  padding: 1.25rem 1.4rem;
  color: #fff;
  background: #342aff;
  border-radius: 0.75rem;
}

.about-card__unesco strong {
  font-size: 0.9rem;
  line-height: 1.35;
}

.about-card__unesco span {
  color: #e4e4e8;
  font-size: 0.78rem;
  line-height: 1.45;
}

.about-card--vision {
  display: flex;
  min-height: 16rem;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.about-card--vision p {
  max-width: 24rem;
  margin-top: 1rem;
}

.about-card__growth {
  width: clamp(3.5rem, 6vw, 5rem);
  flex: 0 0 auto;
  fill: none;
  stroke: #342aff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.about-card--list {
  min-height: 16rem;
}

.about-card--list ul {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
  list-style: none;
}

.about-card--list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #4f4f56;
  font-size: 0.85rem;
  line-height: 1.45;
}

.about-card--list svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: #342aff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.layout-cards {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.layout-cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.layout-cards--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.layout-panel--card {
  min-height: 23rem;
}

.layout-panel--feature {
  min-height: 30rem;
}

.page-section--new-web {
  background: #ebdd2f;
}

.layout-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.contact-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.contact-heading h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
}

.contact-heading__intro {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  color: #5d5d63;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-card {
  display: flex;
  min-width: 0;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #e1e1e5;
  border-radius: 0.9rem;
}

.contact-card > svg {
  width: 1.6rem;
  height: 1.6rem;
  flex: 0 0 auto;
  fill: none;
  stroke: #342aff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-card h3 {
  margin-bottom: 0.35rem;
  color: #77777d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card p,
.contact-card a {
  overflow-wrap: anywhere;
  color: #29292f;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

.contact-card a {
  text-decoration: none;
}

.contact-card a:hover {
  color: #342aff;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.contact-actions a {
  display: inline-flex;
  min-height: 3.6rem;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  color: #fff;
  background: #342aff;
  border: 1px solid #342aff;
  border-radius: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.contact-actions .contact-actions__secondary {
  color: #342aff;
  background: #fff;
}

.contact-actions a:hover {
  opacity: 0.86;
}

.contact-actions a:focus-visible,
.contact-card a:focus-visible {
  outline: 2px solid #342aff;
  outline-offset: 3px;
}

.contact-map-card {
  padding: 0.75rem;
  background: #fff;
  border: 1px solid #e1e1e5;
  border-radius: 1.25rem;
  box-shadow: 0 1rem 2.5rem rgba(52, 42, 255, 0.08);
}

.contact-map-card > p {
  padding: 0.55rem 0.55rem 1.1rem;
  color: #342aff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 31.25rem;
  border: 0;
  border-radius: 0.85rem;
}

.projects-heading {
  max-width: 58rem;
}

.projects-heading__intro {
  max-width: 46rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  color: #5d5d63;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.project-card {
  display: flex;
  min-width: 0;
  min-height: 22rem;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  background: #fff;
  border: 1px solid #e1e1e5;
  border-radius: 1.25rem;
  transition: transform 180ms ease, border-color 180ms ease;
}

.project-card:hover {
  transform: translateY(-0.25rem);
  border-color: rgba(52, 42, 255, 0.3);
}

.project-card__icon {
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  place-items: center;
  margin-bottom: 2rem;
  color: #342aff;
  background: #ebdd2f;
  border-radius: 1rem;
}

.project-card__icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.project-card h3 {
  color: #222228;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.project-card p {
  margin-top: 1.15rem;
  color: #66666c;
  font-size: 0.94rem;
  line-height: 1.65;
}

.project-card > a {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 2rem;
  color: #342aff;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.project-card > a::after {
  content: " →";
}

.project-card > a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.projects-footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.75rem, 5vw, 4.5rem);
}

.projects-footer a {
  display: inline-flex;
  min-height: 3.75rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.75rem;
  color: #fff;
  background: #342aff;
  border-radius: 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.projects-footer a:hover {
  opacity: 0.86;
}

.projects-footer a:focus-visible,
.project-card > a:focus-visible {
  outline: 2px solid #342aff;
  outline-offset: 3px;
}

.new-web-heading {
  max-width: 64rem;
}

.new-web-heading h2 {
  max-width: 18ch;
}

.new-web-heading__intro {
  max-width: 48rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  color: #55555c;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.feature-card {
  min-width: 0;
  min-height: 18rem;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  background: #fff;
  border: 1px solid #e3e3e7;
  border-radius: 1.25rem;
  box-shadow: 0 0.75rem 2rem rgba(52, 42, 255, 0.06);
}

.feature-card__icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  margin-bottom: 2rem;
  color: #fff;
  background: #342aff;
  border-radius: 1rem;
}

.feature-card__icon svg {
  width: 1.9rem;
  height: 1.9rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.feature-card h3 {
  color: #222228;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin-top: 1rem;
  color: #66666c;
  font-size: 0.94rem;
  line-height: 1.65;
}

.new-web-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(3rem, 6vw, 5.5rem);
  padding: clamp(2.25rem, 5vw, 4.5rem);
  color: #fff;
  background: #342aff;
  border-radius: clamp(1.25rem, 2vw, 2rem);
}

.new-web-cta div {
  max-width: 44rem;
}

.new-web-cta h3 {
  font-size: clamp(1.8rem, 3.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.new-web-cta p {
  max-width: 42rem;
  margin-top: 1.25rem;
  color: #e7e7eb;
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  line-height: 1.7;
}

.new-web-cta > a {
  display: inline-flex;
  min-height: 3.75rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.6rem;
  color: #342aff;
  background: #ebdd2f;
  border-radius: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.new-web-cta > a:hover {
  opacity: 0.86;
}

.new-web-cta > a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.partners-heading {
  max-width: 58rem;
}

.partners-heading__intro {
  max-width: 46rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  color: #5d5d63;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.8vw, 1.25rem);
}

.partner-logo {
  display: grid;
  min-width: 0;
  aspect-ratio: 16 / 9;
  place-items: center;
  padding: clamp(1rem, 2.5vw, 2rem);
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e1e5;
  border-radius: 0.75rem;
  filter: contrast(0.96);
  transition: filter 180ms ease, border-color 180ms ease;
}

.partner-logo:hover {
  border-color: #cfcfd4;
  filter: contrast(1.04);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(var(--logo-scale, 1));
  transform-origin: center;
}

.partner-logo--unesco {
  --logo-scale: 0.88;
}

.partner-logo--lifestarter {
  --logo-scale: 1.05;
}

.partner-logo--ceva {
  --logo-scale: 0.9;
}

.partner-logo--eudialog {
  --logo-scale: 0.92;
}

.partner-logo--gent {
  --logo-scale: 1.02;
}

.partner-logo--kira {
  --logo-scale: 0.75;
}

.partner-logo--ucm {
  --logo-scale: 0.9;
}

.partners-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(2.75rem, 5vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid #dedee2;
}

.partners-cta p {
  color: #303036;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  line-height: 1.4;
}

.partners-cta a {
  display: inline-flex;
  min-height: 3.75rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.6rem;
  color: #fff;
  background: #342aff;
  border-radius: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.partners-cta a:hover {
  opacity: 0.86;
}

.partners-cta a:focus-visible {
  outline: 2px solid #342aff;
  outline-offset: 3px;
}

.page-section--community {
  background: #fff;
}

.page-section--contact {
  background: #fff;
}

.community-heading {
  max-width: 60rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.community-heading__intro {
  max-width: 44rem;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  color: #5d5d63;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.community-card {
  display: flex;
  min-width: 0;
  min-height: 24rem;
  flex-direction: column;
  align-items: center;
  padding: clamp(2rem, 3.5vw, 3rem);
  background: #fff;
  border: 1px solid #e1e1e5;
  border-radius: 1.25rem;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease;
}

.community-card:hover {
  transform: translateY(-0.25rem);
  border-color: rgba(52, 42, 255, 0.3);
}

.community-card__icon {
  display: grid;
  width: 4.25rem;
  height: 4.25rem;
  place-items: center;
  margin-bottom: 2rem;
  color: #342aff;
  background: #ebdd2f;
  border-radius: 50%;
}

.community-card__icon svg {
  width: 2.15rem;
  height: 2.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.community-card h3 {
  color: #222228;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.community-card p {
  margin-top: 1.1rem;
  color: #66666c;
  font-size: 0.95rem;
  line-height: 1.65;
}

.community-card > a {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.85rem 1.25rem;
  color: #fff;
  background: #342aff;
  border-radius: 0.35rem;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.community-card > a:hover {
  opacity: 0.86;
}

.community-card > a:focus-visible {
  outline: 2px solid #342aff;
  outline-offset: 3px;
}

.community-note {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.5rem, 4vw, 3rem);
  color: #342aff;
  background: #ebdd2f;
  border-radius: 0.75rem;
  text-align: center;
}

.community-note p {
  max-width: 60rem;
  margin: 0 auto;
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  font-weight: 600;
  line-height: 1.55;
}

@media (max-width: 64rem) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .new-web-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .partners-grid,
  .layout-cards--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .layout-split,
  .layout-contact {
    grid-template-columns: 1fr;
  }

  .layout-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 42rem) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    min-height: 0;
  }

  .new-web-cta > a {
    width: 100%;
  }

  .partners-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .partners-cta a {
    width: 100%;
  }

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

  .community-card {
    min-height: 22rem;
  }

  .community-card > a {
    width: 100%;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-actions a {
    width: 100%;
  }

  .contact-map-card iframe {
    height: 24rem;
  }

  .page-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .layout-cards--three,
  .layout-cards--two,
  .layout-stack {
    grid-template-columns: 1fr;
  }

  .layout-panel--large,
  .layout-panel--feature {
    min-height: 20rem;
  }

  .layout-panel--card {
    min-height: 18rem;
  }
}

.site-footer {
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.25rem, 6vw, 6rem) 0;
  color: #fff;
  background: #17174a;
}

.site-footer__inner {
  width: min(100%, 76rem);
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.site-footer__brand {
  max-width: 20rem;
}

.site-footer__logo {
  display: inline-block;
  width: 11rem;
  padding: 0.65rem 0.8rem;
  background: transparent;
  border-radius: 0.5rem;
}

.site-footer__logo img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  filter: brightness(0) invert(1);
}

.site-footer__brand > p {
  margin-top: 1.75rem;
  color: #c9c9d2;
  font-size: 0.94rem;
  line-height: 1.7;
}

.site-footer__column h2 {
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__column ul {
  display: grid;
  gap: 0.9rem;
  list-style: none;
}

.site-footer__column li,
.site-footer__column a {
  color: #c9c9d2;
  font-size: 0.9rem;
  line-height: 1.5;
}

.site-footer__column a {
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer__column a:hover {
  color: #ebdd2f;
}

.site-footer__column a:focus-visible,
.site-footer__logo:focus-visible {
  outline: 2px solid #ebdd2f;
  outline-offset: 4px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  color: #9999a8;
  border-top: 1px solid #34345f;
  font-size: 0.78rem;
  line-height: 1.5;
}

@media (max-width: 64rem) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 36rem) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
