@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap");

:root {
  --purple-950: #24103f;
  --purple-900: #321255;
  --purple-800: #45176f;
  --purple-700: #5c258d;
  --purple-600: #7134a2;
  --green-800: #237326;
  --green-700: #2f8d35;
  --green-600: #3c9e42;
  --green-100: #eef8ee;
  --gold: #d9a618;
  --cream: #fffaf0;
  --cream-2: #fbf5e8;
  --white: #ffffff;
  --ink: #191724;
  --text: #48444e;
  --muted: #726d79;
  --border: #e8e5eb;
  --shadow-sm: 0 8px 24px rgb(32 20 46 / 8%);
  --shadow-md: 0 20px 50px rgb(33 18 48 / 12%);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--white);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.12;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 4.9vw, 4.65rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.07rem;
  font-weight: 800;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.icon {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: -80px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--purple-900);
  border-radius: 8px;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    color var(--transition),
    background var(--transition),
    border-color var(--transition);
}

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

.button:focus-visible,
.text-link:focus-visible,
.primary-nav a:focus-visible,
.social-circle:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgb(47 141 53 / 30%);
  outline-offset: 4px;
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.88rem;
}

.button-primary {
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 10px 24px rgb(47 141 53 / 20%);
}

.button-primary:hover {
  background: var(--green-800);
  box-shadow: 0 14px 30px rgb(47 141 53 / 28%);
}

.button-outline {
  color: var(--purple-800);
  background: rgb(255 255 255 / 72%);
  border-color: var(--purple-600);
}

.button-outline:hover {
  color: var(--white);
  background: var(--purple-700);
}

.button-white {
  color: var(--purple-900);
  background: var(--white);
}

.button-white:hover {
  color: var(--white);
  background: var(--purple-950);
}

.button-whatsapp {
  color: var(--white);
  border-color: rgb(255 255 255 / 54%);
  background: transparent;
}

.button-whatsapp:hover {
  border-color: var(--white);
  background: rgb(255 255 255 / 10%);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow-purple {
  color: var(--purple-700);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple-700);
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link .icon {
  transition: transform var(--transition);
}

.text-link:hover .icon {
  transform: translateX(5px);
}

/* ICONOS */
.lucide-cloud-sync-icon, .lucide-sprout-icon, .lucide-users-round-icon, .lucide-triangle-alert {
  width: 100px;
  height: 48px;
}

/* Header */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgb(255 255 255 / 92%);
  border-bottom: 1px solid rgb(43 22 67 / 7%);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  min-height: 78px;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 175px;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.primary-nav a {
  position: relative;
  padding: 28px 0 25px;
  color: #27212d;
  font-size: 0.87rem;
  font-weight: 700;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--green-700);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-circle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), color var(--transition), background var(--transition);
}

.social-circle:hover {
  color: var(--white);
  background: var(--green-700);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--purple-900);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle .icon-close {
  display: none;
}

/* Hero */


.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(255 250 240 / 0.92) 0%, rgb(255 250 240 / 0.88) 34%, rgb(255 250 240 / 0.58) 55%, rgb(255 250 240 / 0.18) 100%),
    url("assets/images/hero-community.png") center center / cover no-repeat;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 1;
  width: 220px;
  height: 330px;
  content: "";
  opacity: 0.28;
  background:
    radial-gradient(ellipse at center, transparent 57%, rgb(114 132 58 / 18%) 58%, transparent 61%) 0 0 / 46px 46px;
  pointer-events: none;
}

.hero::before {
  left: -105px;
  bottom: -75px;
  transform: rotate(15deg);
}

.hero::after {
  right: -80px;
  top: 25px;
  transform: rotate(-18deg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 78%, rgb(243 217 138 / 0.22), transparent 24%),
    radial-gradient(circle at 72% 20%, rgb(255 255 255 / 0.10), transparent 22%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 640px;
}

.hero-copy {
  max-width: 620px;
  padding: 90px 0;
  text-align: left;
}

.hero-copy h1 {
  margin-bottom: 22px;
  color: var(--purple-800);
  font-size: clamp(2rem, 3.7vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.hero-description {
  max-width: 560px;
  margin-bottom: 30px;
  color: #4a444e;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}
/* Franja de principios */

.principles {
  position: relative;
  z-index: 3;
  color: var(--white);
  background:
    radial-gradient(circle at 50% -120%, rgb(255 255 255 / 18%), transparent 55%),
    linear-gradient(90deg, var(--purple-900), var(--purple-700), var(--purple-900));
}

.principles-grid {
  display: grid;
  min-height: 116px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.principle {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 26px;
  border-right: 1px solid rgb(255 255 255 / 24%);
}

.principle:last-child {
  border-right: 0;
}

.principle .icon {
  width: 48px;
  height: 48px;
}

.principle span {
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
}

/* Encabezados */

.section-heading {
  margin-bottom: 36px;
  text-align: center;
}

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.section-heading-row > div {
  flex: 1;
  text-align: center;
}

.heading-line {
  display: block;
  width: 42px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--green-700);
  border-radius: 999px;
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light .heading-line {
  background: var(--white);
}

/* Tarjetas */

.work-lines {
  background: var(--white);
}

.cards-grid {
  display: grid;
  gap: 28px;
}

.cards-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.info-card,
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.info-card:hover,
.project-card:hover {
  border-color: rgb(92 37 141 / 22%);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.info-card {
  display: flex;
  min-height: 325px;
  flex-direction: column;
  padding: 30px 26px 24px;
  border-radius: var(--radius-sm);
}

.card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  color: var(--green-700);
}

.info-card h3 {
  min-height: 42px;
  margin-bottom: 18px;
}

.info-card p {
  color: var(--text);
  font-size: 0.94rem;
}

.info-card .text-link {
  margin-top: auto;
}

/* Proyectos */

.projects-section {
  background: #fafafa;
}

.project-card {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.project-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7.5;
  background: #e7e7e7;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-card:hover .project-image img {
  transform: scale(1.045);
}

.status {
  position: absolute;
  bottom: 10px;
  left: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
}

.status-progress {
  color: #246927;
  background: #e8f6e7;
}

.status-finished {
  color: var(--purple-800);
  background: #f0e7f7;
}

.status-next {
  color: #775500;
  background: #fff1b5;
}

.project-content {
  display: flex;
  min-height: 225px;
  flex-direction: column;
  padding: 26px 24px 24px;
}

.project-content p {
  font-size: 0.94rem;
}

.project-content .text-link {
  margin-top: auto;
}

/* Impacto */

.impact-section {
  position: relative;
  overflow: hidden;
  padding: 54px 0 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgb(255 255 255 / 9%), transparent 28%),
    linear-gradient(90deg, #267b2b, #38933b, #267b2b);
}

.impact-section::before,
.impact-section::after {
  position: absolute;
  width: 180px;
  height: 180px;
  content: "";
  opacity: 0.11;
  border: 3px solid var(--white);
  border-radius: 50% 0 50% 50%;
}

.impact-section::before {
  left: -70px;
  top: 20px;
  transform: rotate(35deg);
}

.impact-section::after {
  right: -70px;
  bottom: -70px;
  transform: rotate(210deg);
}

.impact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.impact-item {
  display: grid;
  min-height: 120px;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 18px;
  padding: 8px 34px;
  border-right: 1px solid rgb(255 255 255 / 42%);
}

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

.impact-icon {
  width: 55px;
  height: 55px;
  grid-row: span 2;
}

.impact-item strong {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

.impact-item span {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
}

/* Publicación */

.featured-publication {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(255 248 229 / 78%), rgb(255 255 255 / 92%) 45%, rgb(255 248 229 / 72%));
}

.featured-publication::before,
.featured-publication::after {
  position: absolute;
  width: 130px;
  height: 180px;
  content: "";
  opacity: 0.14;
  border: 2px solid var(--gold);
  border-radius: 50% 0 50% 50%;
}

.featured-publication::before {
  left: -65px;
  top: 75px;
  transform: rotate(25deg);
}

.featured-publication::after {
  right: -65px;
  bottom: 20px;
  transform: rotate(205deg);
}

.publication-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 275px;
  align-items: center;
  gap: 38px;
}

.publication-cover {
  margin: 0;
  filter: drop-shadow(0 18px 14px rgb(30 22 21 / 22%));
}

.publication-cover img {
  width: 100%;
  max-height: 290px;
  object-fit: contain;
}

.publication-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.publication-copy h3 {
  margin: 20px 0 8px;
  color: var(--purple-700);
  font-size: 0.9rem;
}

.publication-copy p {
  margin-bottom: 10px;
  font-size: 0.94rem;
}

.publication-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.share-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 8px;
  color: var(--purple-700);
  background: transparent;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.launch-card {
  padding: 26px;
  border: 1px solid #d7ab4f;
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 72%);
}

.launch-card-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--purple-800);
}

.launch-card-title .icon {
  width: 31px;
  height: 31px;
}

.launch-card p {
  margin-left: 44px;
  color: var(--text);
}

/* CTA */

.collaboration {
  color: var(--white);
  background:
    radial-gradient(circle at 30% -100%, rgb(255 255 255 / 16%), transparent 55%),
    linear-gradient(90deg, var(--purple-800), var(--purple-700), var(--purple-900));
}

.collaboration-inner {
  display: flex;
  min-height: 114px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.collaboration h2 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.55rem;
}

.collaboration p {
  margin: 0;
  font-size: 0.86rem;
}

.collaboration-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

/* Footer */

.site-footer {
  color: rgb(255 255 255 / 86%);
  background:
    radial-gradient(circle at 50% 0, rgb(129 79 179 / 22%), transparent 46%),
    var(--purple-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 1fr;
  gap: 48px;
  padding-top: 54px;
  padding-bottom: 46px;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 20px;

}

.footer-brand p {
  max-width: 280px;
  font-size: 0.84rem;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-links a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--purple-950);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
  transition: transform var(--transition), background var(--transition);
}

.social-links a:hover {
  background: #e8d6f7;
  transform: translateY(-2px);
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
}

.footer-nav h2,
.footer-contact h2 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 1rem;
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
  font-size: 0.82rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact .icon {
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 22px;
  color: rgb(255 255 255 / 55%);
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 0.76rem;
}

/* Animaciones */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 170px 1fr auto;
    gap: 16px;
  }

  .primary-nav {
    gap: 16px;
  }

  .primary-nav a {
    font-size: 0.78rem;
  }

  .header-actions .button {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  }

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

  .principle {
    padding-inline: 15px;
  }

  .impact-item {
    padding-inline: 18px;
  }

  .publication-grid {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .launch-card {
    grid-column: 2;
  }

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

  .footer-contact {
    grid-column: 2 / -1;
  }
}

/* Menú móvil */

@media (max-width: 860px) {
  .header-inner {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 160px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-toggle[aria-expanded="true"] .icon-menu {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .icon-close {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 18px 34px rgb(31 17 46 / 12%);
    transition: max-height 300ms ease;
  }

  .primary-nav.is-open {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .primary-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-actions {
    display: none;
  }


.hero {
  min-height: 540px;
  background:
    linear-gradient(180deg, rgb(255 250 240 / 0.92) 0%, rgb(255 250 240 / 0.82) 42%, rgb(255 250 240 / 0.30) 100%),
    url("assets/images/hero-community.jpg") center center / cover no-repeat;
}

.hero-grid {
  min-height: 540px;
  grid-template-columns: 1fr;
}

.hero-copy {
  max-width: 100%;
  padding: 72px 0;
}
  .hero-visual {
    min-height: 390px;
  }

  .hero-image-frame {
    min-height: 390px;
  }

  .hero-image-frame img {
    max-height: 390px;
  }

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

  .principle {
    border-bottom: 1px solid rgb(255 255 255 / 20%);
  }

  .principle:nth-child(2) {
    border-right: 0;
  }

  .principle:nth-child(3),
  .principle:nth-child(4) {
    border-bottom: 0;
  }

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

  .project-card {
    display: grid;
    grid-template-columns: 42% 58%;
  }

  .project-image {
    min-height: 245px;
    aspect-ratio: auto;
  }

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

  .impact-item:nth-child(2) {
    border-right: 0;
  }

  .impact-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(255 255 255 / 35%);
  }

  .publication-grid {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .launch-card {
    grid-column: 1 / -1;
  }

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

  .collaboration-actions {
    justify-content: flex-start;
  }

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

  .footer-contact {
    grid-column: auto;
  }
}

/* Móvil */

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

  .section {
    padding: 56px 0;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }



.hero {
  min-height: 500px;
}

.hero-copy {
  padding: 56px 0;
}

.hero-copy h1 {
  font-size: clamp(1.85rem, 8vw, 2.8rem);
}

.hero-description {
  font-size: 0.98rem;
}

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

.hero-actions .button {
  width: 100%;
}


  .publication-actions,
  .collaboration-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .publication-actions .button,
  .collaboration-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 310px;
  }

  .hero-image-frame {
    min-height: 310px;
  }

  .hero-image-frame img {
    max-height: 310px;
  }

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

  .principle {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 22%);
  }

  .principle:nth-child(3) {
    border-bottom: 1px solid rgb(255 255 255 / 22%);
  }

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

  .info-card {
    min-height: 280px;
  }

  .section-heading-row {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .project-card {
    display: block;
  }

  .project-image {
    min-height: 190px;
    aspect-ratio: 16 / 8.5;
  }

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

  .impact-item {
    min-height: 105px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 35%);
  }

  .impact-item:nth-child(3) {
    border-bottom: 1px solid rgb(255 255 255 / 35%);
  }

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

  .publication-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .publication-cover {
    width: 180px;
    margin-inline: auto;
  }

  .launch-card {
    grid-column: auto;
  }

  .launch-card p {
    margin-left: 0;
  }

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

  .footer-brand p {
    max-width: none;
  }

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

/* Reduce motion */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
