/* ==========================================================
   WHITEPAPER 2026 - Landing template
   Pegar en style.css del theme hijo o encolar como archivo aparte.
   ========================================================== */
.whitepaper-2026-template {
  margin: 0;
  background: #000;
}

.wp26 {
  --wp26-black: #000000;
  --wp26-white: #ffffff;
  --wp26-cyan: #54b0c5;
  --wp26-cyan-dark: #326b78;
  --wp26-cyan-deep: #1b7f92;
  --wp26-text-soft: rgba(255,255,255,.88);
  --wp26-line: rgba(84,176,197,.95);
  --wp26-shell: 1180px;
  --wp26-radius: 34px;
  --wp26-font: "Lato", Arial, Helvetica, sans-serif;

  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  background: var(--wp26-black);
  color: var(--wp26-white);
  font-family: var(--wp26-font);
  font-size: 16px;
  line-height: 1.25;
}

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

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

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

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

.wp26-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 9px 22px 10px;
  border: 1px solid var(--wp26-cyan);
  border-radius: 8px;
  background: var(--wp26-cyan);
  color: #fff !important;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.wp26-btn:hover,
.wp26-btn:focus-visible {
  background: #6ac3d6;
  border-color: #6ac3d6;
  transform: translateY(-1px);
}

/* Header */

.wp26-header {
  position: relative;
  z-index: 20;
  padding: 31px 0 0;
}

.wp26-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wp26-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: #fff;
}

.wp26-logo--header img {
  width: 156px;
  height: auto;
}

.wp26-logo--footer img {
  width: 160px;
  height: auto;
}

.wp26-logo__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 2px solid #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  transform: skew(-8deg);
}

.wp26-logo__text {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: .95;
  text-transform: none;
}

.wp26-nav {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.wp26-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wp26-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 3vw, 48px);
}

.wp26-nav__item {
  position: relative;
}

.wp26-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .96;
}

.wp26-nav a:hover,
.wp26-nav a:focus-visible {
  color: var(--wp26-cyan);
}

.wp26-nav__caret {
  display: inline-flex;
  align-items: center;
  color: currentColor;
  transition: transform .18s ease;
}

.wp26-nav__item--has-submenu:hover .wp26-nav__caret,
.wp26-nav__item--has-submenu:focus-within .wp26-nav__caret {
  transform: translateY(1px);
}

.wp26-nav__submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 40;
  min-width: 225px;
  padding: 12px;
  border: 1px solid rgba(84,176,197,.36);
  border-radius: 14px;
  background: rgba(0,0,0,.94);
  box-shadow: 0 22px 45px rgba(0,0,0,.35);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.wp26-nav__submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.wp26-nav__submenu a {
  display: flex;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  line-height: 1.15;
}

.wp26-nav__submenu a:hover,
.wp26-nav__submenu a:focus-visible {
  background: rgba(84,176,197,.14);
}

.wp26-nav__item--has-submenu:hover > .wp26-nav__submenu,
.wp26-nav__item--has-submenu:focus-within > .wp26-nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* Decorative dotted elements */

.wp26-dot-orb,
.wp26-axis__core::before {
  background-image: radial-gradient(circle, var(--wp26-cyan) 0 2px, transparent 2.2px);
  background-size: 13px 13px;
  background-position: center;
}

.wp26-dot-orb--asset {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.wp26-plus-field {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 255px;
  opacity: .9;
  pointer-events: none;
  background-image:
    linear-gradient(var(--wp26-cyan), var(--wp26-cyan)),
    linear-gradient(90deg, var(--wp26-cyan), var(--wp26-cyan));
  background-size: 2px 10px, 10px 2px;
  background-position: 0 0, 0 4px;
  background-repeat: repeat;
  mask-image: radial-gradient(ellipse at 50% 100%, #000 0 58%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 100%, #000 0 58%, transparent 78%);
}

/* Hero */

.wp26-hero {
  position: relative;
  min-height: 560px;
  padding: 135px 0 40px;
}

.wp26-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(420px, 565px);
  align-items: center;
  min-height: 440px;
}

.wp26-hero__copy {
  grid-column: 2;
  margin-top: 40px;
}

.wp26-hero__orb {
  position: absolute;
  z-index: 1;
  top: 60%;
  transform: translateY(-50%);
  left: max(-90px, calc((100vw - var(--wp26-shell)) / 2 - 270px));
  width: clamp(500px, 65vw, 1000px);
  aspect-ratio: 1;
  opacity: .95;
  border-radius: 0;
}

.wp26-kicker {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 700;
  line-height: .95;
  text-transform: uppercase;
}

.wp26-kicker span {
  font-weight: 400;
  opacity: .82;
}

.wp26-hero h1 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  line-height: .86;
}

.wp26-hero__claim {
  margin: 18px 0 0;
  color: var(--wp26-cyan);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 700;
  line-height: .96;
}

/* Evento pre-lanzamiento */

.wp26-event {
  position: relative;
  z-index: 3;
  margin-top: 100px;
  padding: 0 0 65px;
}

.wp26-event__card {
  max-width: 980px;
  margin: 0 auto;
  padding: 44px 32px 39px;
  border: 2px solid var(--wp26-line);
  border-radius: 28px;
  text-align: center;
  background: rgba(0,0,0,.36);
}

.wp26-event__card h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: .95;
}

.wp26-event__card p {
  margin: 0 auto 24px;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 400;
  line-height: 1.05;
}

/* Intro */

.wp26-intro {
  position: relative;
  z-index: 2;
  padding: 32px 0 102px;
}

.wp26--launched .wp26-intro {
  padding-top: 54px;
}

.wp26-intro__grid {
  display: grid;
  grid-template-columns: minmax(360px, 585px) minmax(380px, 520px);
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.wp26-intro__content {
  padding-left: 46px;
}

.wp26-intro__content h2 {
  max-width: 762px;
  margin: 0 0 18px;
  color: var(--wp26-cyan);
  font-size: clamp(24px, 3vw, 39px);
  font-weight: 700;
  line-height: 1;
}

.wp26-intro__content p {
  max-width: 500px;
  margin: 0 0 22px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
}

.wp26-intro__visual,
.wp26-study__visual {
  position: relative;
  min-height: 430px;
}

.wp26-blob {
  position: absolute;
  z-index: 1;
  background: var(--wp26-cyan);
  pointer-events: none;
}

.wp26-blob--right {
  right: -84px;
  bottom: -16px;
  width: 340px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: none;
}

.wp26-photo {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.42);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}

.wp26-photo.is-empty {
  border: 1px dashed rgba(84,176,197,.45);
}

.wp26-photo--intro {
  width: clamp(310px, 36vw, 450px);
  margin-left: auto;
}

.wp26-photo--intro img,
.wp26-photo--study img {
  width: 100%;
  height: auto;
  display: block;
}

/* Ejes */

.wp26-axis {
  position: relative;
  z-index: 3;
  padding: 18px 0 92px;
}

.wp26-section-head--center {
  text-align: center;
}

.wp26-section-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.7vw, 50px);
  font-weight: 700;
  line-height: .95;
}

.wp26-section-head p {
  margin: 18px 0 0;
  color: var(--wp26-cyan);
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 700;
  line-height: .96;
}

.wp26-axis__map {
  position: relative;
  width: min(760px, 100%);
  aspect-ratio: 1.13;
  margin: 52px auto 0;
}

.wp26-axis__map--svg {
  display: flex;
  justify-content: center;
  width: min(820px, 100%);
  aspect-ratio: auto;
}

.wp26-axis__map--svg img {
  width: 100%;
  height: auto;
}

.wp26-axis__ring {
  position: absolute;
  inset: 8% 9%;
  border: 2px solid rgba(84,176,197,.55);
  border-radius: 50%;
}

.wp26-axis__ring::before,
.wp26-axis__ring::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 2px solid rgba(84,176,197,.72);
  clip-path: polygon(0 0, 100% 0, 100% 47%, 82% 47%, 82% 53%, 100% 53%, 100% 100%, 0 100%, 0 53%, 18% 53%, 18% 47%, 0 47%);
}

.wp26-axis__ring::after {
  inset: 16%;
  opacity: .55;
}

.wp26-axis__core {
  position: absolute;
  inset: 27% 26%;
  display: grid;
  place-items: center;
}

.wp26-axis__core::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: .9;
  mask-image: radial-gradient(circle, #000 0 68%, transparent 69%);
  -webkit-mask-image: radial-gradient(circle, #000 0 68%, transparent 69%);
}

.wp26-axis__plus {
  position: absolute;
  z-index: 2;
  width: 70px;
  height: 210px;
  border-radius: 30px;
  background: var(--wp26-cyan);
}

.wp26-axis__plus::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 235px;
  height: 50px;
  border-radius: 24px;
  background: var(--wp26-cyan);
  transform: translate(-50%, -50%);
}

.wp26-axis__label {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  border-radius: 22px;
  background: var(--wp26-cyan);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.wp26-axis__label em {
  margin-left: 5px;
  font-style: normal;
  font-weight: 400;
  opacity: .72;
}

.wp26-axis__item {
  position: absolute;
  z-index: 5;
  width: 225px;
  color: #fff;
  text-align: center;
}

.wp26-axis__item strong {
  display: block;
  color: var(--wp26-cyan);
  font-size: 40px;
  font-weight: 700;
  line-height: .78;
}

.wp26-axis__item p {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: .9;
}

.wp26-axis__item--one { left: -4%; top: 51%; text-align: right; }
.wp26-axis__item--two { left: 10%; top: 10%; }
.wp26-axis__item--three { right: 5%; top: 10%; }
.wp26-axis__item--four { right: -4%; top: 50%; text-align: left; }
.wp26-axis__item--five { right: 8%; bottom: 7%; }
.wp26-axis__item--six { left: 8%; bottom: 6%; }

/* Estudio */

.wp26-study {
  position: relative;
  z-index: 2;
  padding: 56px 0 108px;
}

.wp26-study__blob {
  position: absolute;
  z-index: 1;
  left: max(-290px, calc((100vw - var(--wp26-shell)) / 2 - 370px));
  top: 0;
  width: clamp(430px, 43vw, 650px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--wp26-cyan);
  display: none;
}

.wp26-study__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(380px, 520px) minmax(390px, 580px);
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.wp26-photo--study {
  width: clamp(330px, 36vw, 480px);
  margin-left: 0;
}

.wp26-study__content h2 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(30px, 3.25vw, 46px);
  font-weight: 700;
  line-height: .94;
}

.wp26-study__content p {
  max-width: 550px;
  margin: 0 0 17px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
}

.wp26-study__content strong {
  font-weight: 700;
}

.wp26-study__content .wp26-highlight {
  color: var(--wp26-cyan);
  font-weight: 700;
}

/* Datos */

.wp26-stats {
  position: relative;
  z-index: 5;
  padding: 0 0 116px;
}

.wp26-stats__pill {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  max-width: 1030px;
  min-height: 142px;
  margin: 0 auto;
  padding: 28px 78px;
  border-radius: 999px;
  background: var(--wp26-cyan);
  color: #000;
}

.wp26--launched .wp26-stats__pill {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1110px;
  padding-inline: 64px;
}

.wp26-stat {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 72px;
  padding: 0 22px;
}

.wp26-stat + .wp26-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 86px;
  border-radius: 99px;
  background: rgba(255,255,255,.9);
  transform: translateY(-50%);
}

.wp26-stat strong {
  display: block;
  font-size: clamp(54px, 5vw, 76px);
  font-weight: 700;
  line-height: .78;
}

.wp26-stat span {
  display: block;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 700;
  line-height: .9;
}

/* "3 Perspectivas cruzadas" (primer dato, versión prelanzamiento):
   acercar el bloque número + texto a la línea divisoria de la derecha.
   Se cambia la columna de texto de 1fr a auto: con 1fr ya ocupaba todo
   el ancho sobrante y "justify-content: end" no tenía espacio libre
   para desplazar el bloque. */
@media (min-width: 901px) {
  .wp26--prelaunch .wp26-stats__pill .wp26-stat:first-child {
    grid-template-columns: auto auto;
    justify-content: end;
  }
}

/* Suscripción */

.wp26-subscribe {
  position: relative;
  z-index: 2;
  min-height: 500px;
  padding: 90px 0 138px;
  text-align: center;
  background-color: #000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.wp26-subscribe::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.85) 60%, transparent 80%);
  pointer-events: none;
}

.wp26-subscribe__inner {
  position: relative;
  z-index: 2;
}

.wp26-subscribe h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 700;
  line-height: .98;
}

.wp26-subscribe h2 span {
  font-weight: 300;
  opacity: .78;
}

.wp26-subscribe p {
  margin: 26px 0 30px;
  color: var(--wp26-cyan);
  font-size: clamp(18px, 1.9vw, 26px);
  font-weight: 700;
  line-height: 1;
}

/* Whitepaper 2025 */

.wp26-archive {
  position: relative;
  z-index: 3;
  min-height: 353px;
  display: grid;
  place-items: center;
  padding: 50px 0;
  background-color: var(--wp26-cyan-dark);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.wp26-archive.is-empty {
  background-image: linear-gradient(135deg, rgba(84,176,197,.35), rgba(50,107,120,.85));
}

.wp26-archive__overlay {
  position: absolute;
  inset: 0;
 /* background: rgba(18,124,143,.72); */
}

.wp26-archive__content {
  position: relative;
  z-index: 2;
}

.wp26-archive h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(31px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.wp26-archive p {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(19px, 2vw, 29px);
  font-weight: 400;
  line-height: 1.08;
}

/* Footer */

.wp26-footer {
  position: relative;
  z-index: 4;
  padding: 48px 0 44px;
  background: var(--wp26-cyan-dark);
  color: #fff;
}

.wp26-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  align-items: start;
  gap: 50px;
}

.wp26-footer h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.wp26-footer p {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.12;
}

.wp26-footer p strong {
  display: block;
  font-weight: 700;
}

.wp26-footer a:hover,
.wp26-footer a:focus-visible {
  opacity: .78;
}

.wp26-footer__center {
  display: grid;
  justify-items: center;
  gap: 26px;
  padding-top: 4px;
  text-align: center;
}

.wp26-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  font-size: 13px;
  font-weight: 700;
}

.wp26-legal a + a::before {
  content: "|";
  margin: 0 6px;
}

.wp26-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 28px;
  line-height: 1;
}

.wp26-footer__social {
  justify-self: end;
  padding-top: 70px;
  text-align: left;
}

.wp26-footer__social p {
  margin-bottom: 10px;
  font-weight: 700;
}

.wp26-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wp26-socials a {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: #fff;
  color: var(--wp26-cyan-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

/* Responsive */

@media (max-width: 1100px) {
  .wp26-shell {
    width: min(100% - 42px, var(--wp26-shell));
  }

  .wp26-hero__inner {
    grid-template-columns: .78fr 1fr;
  }

  .wp26-intro__content {
    padding-left: 0;
  }

  .wp26-axis__item--one { left: 0; }
  .wp26-axis__item--four { right: 0; }

  .wp26-stats__pill,
  .wp26--launched .wp26-stats__pill {
    padding-inline: 42px;
  }
}

@media (max-width: 900px) {
  .wp26-header {
    padding-top: 22px;
  }

  .wp26-header__inner {
    align-items: flex-start;
  }

  .wp26-nav {
    max-width: 68vw;
    font-size: 11px;
  }

  .wp26-nav__list {
    justify-content: flex-end;
    flex-wrap: wrap;
    row-gap: 11px;
    column-gap: 18px;
  }

  .wp26-hero {
    min-height: auto;
    padding: 72px 0 74px;
  }

  .wp26-hero__inner {
    display: block;
    min-height: 450px;
  }

  .wp26-hero__copy {
    max-width: 540px;
    margin: 120px 0 0 auto;
  }

  .wp26-hero__orb {
    top: 90px;
    left: -190px;
    width: 560px;
    transform: none;
  }

  .wp26-event {
    margin-top: 0;
    padding-bottom: 82px;
  }

  .wp26-intro,
  .wp26--launched .wp26-intro {
    padding-top: 0;
  }

  .wp26-intro__grid,
  .wp26-study__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .wp26-intro__content,
  .wp26-study__content {
    max-width: 620px;
    margin-inline: auto;
  }

  .wp26-intro__visual,
  .wp26-study__visual {
    min-height: 380px;
    order: 2;
  }

  .wp26-photo--intro,
  .wp26-photo--study {
    margin-inline: auto;
  }

  .wp26-axis__map {
    width: min(660px, 100%);
    margin-top: 44px;
  }

  .wp26-axis__item {
    width: 190px;
  }

  .wp26-axis__item strong {
    font-size: 34px;
  }

  .wp26-axis__item p {
    font-size: 12px;
  }

  .wp26-stats__pill,
  .wp26--launched .wp26-stats__pill {
    grid-template-columns: 1fr;
    max-width: 460px;
    border-radius: 42px;
    padding: 30px 36px;
  }

  .wp26-stat {
    justify-content: start;
    grid-template-columns: 96px 1fr;
    padding: 22px 0;
  }

  .wp26-stat + .wp26-stat::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform: none;
  }

  .wp26-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wp26-footer__social {
    justify-self: center;
    padding-top: 0;
    text-align: center;
  }

  .wp26-footer__contact {
    display: grid;
    justify-items: center;
  }
}

@media (max-width: 640px) {
  .wp26-shell {
    width: calc(100% - 30px);
  }

  .wp26-header__inner {
    display: grid;
    gap: 20px;
  }

  .wp26-nav {
    max-width: 100%;
    white-space: normal;
  }

  .wp26-nav__list {
    justify-content: flex-start;
    gap: 12px 16px;
  }

  .wp26-nav__submenu {
    left: 0;
    min-width: 210px;
    transform: translate(0, 8px);
  }

  .wp26-nav__item--has-submenu:hover > .wp26-nav__submenu,
  .wp26-nav__item--has-submenu:focus-within > .wp26-nav__submenu {
    transform: translate(0, 0);
  }

  .wp26-hero {
    padding-top: 34px;
  }

  .wp26-hero__inner {
    min-height: 430px;
  }

  .wp26-hero__copy {
    margin-top: 152px;
  }

  .wp26-hero__orb {
    top: 48px;
    left: -205px;
    width: 455px;
    transform: none;
  }

  .wp26-hero h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .wp26-event__card {
    padding: 34px 20px 31px;
    border-radius: 22px;
  }

  .wp26-event__card p br,
  .wp26-section-head h2 br,
  .wp26-subscribe h2 br,
  .wp26-subscribe p br,
  .wp26-archive p br {
    display: none;
  }

  .wp26-intro {
    padding-bottom: 76px;
  }

  .wp26-intro__content h2,
  .wp26-study__content h2 {
    font-size: 32px;
  }

  .wp26-intro__visual,
  .wp26-study__visual {
    min-height: 315px;
  }

  .wp26-photo--intro,
  .wp26-photo--study {
    width: min(82vw, 360px);
  }

  .wp26-blob--right {
    right: -120px;
    width: 270px;
  }

  .wp26-axis {
    padding-bottom: 62px;
  }

  .wp26-axis__map {
    display: grid;
    gap: 14px;
    width: 100%;
    aspect-ratio: auto;
    margin-top: 34px;
    padding-top: 270px;
  }

  .wp26-axis__ring,
  .wp26-axis__core {
    top: 0;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translateX(-50%);
  }

  .wp26-axis__ring {
    width: 270px;
    height: 270px;
  }

  .wp26-axis__core {
    width: 205px;
    height: 205px;
    inset: auto;
  }

  .wp26-axis__plus {
    width: 42px;
    height: 135px;
  }

  .wp26-axis__plus::before {
    width: 150px;
    height: 35px;
  }

  .wp26-axis__label {
    min-height: 34px;
    font-size: 15px;
  }

  .wp26-axis__item,
  .wp26-axis__item--one,
  .wp26-axis__item--two,
  .wp26-axis__item--three,
  .wp26-axis__item--four,
  .wp26-axis__item--five,
  .wp26-axis__item--six {
    position: static;
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(84,176,197,.35);
    border-radius: 16px;
    text-align: left;
    background: rgba(84,176,197,.08);
  }

  .wp26-axis__item p br {
    display: none;
  }

  .wp26-axis__map--svg {
    display: flex;
    width: min(520px, 100%);
    margin-top: 34px;
    padding-top: 0;
  }

  .wp26-axis__map--svg img {
    width: 100%;
  }

  .wp26-study {
    padding-top: 30px;
    padding-bottom: 72px;
  }

  .wp26-study__blob {
    left: -210px;
    width: 390px;
  }

  .wp26-stats {
    padding-bottom: 74px;
  }

  .wp26-subscribe {
    min-height: 420px;
    padding: 70px 0 110px;
  }

  .wp26-plus-field {
    height: 205px;
  }

  .wp26-archive {
    min-height: 235px;
  }
}
