:host {
  --wf-ink: var(--ichizero-ink, #0b0b0b);
  --wf-paper: var(--ichizero-paper, #fbfbf8);
  --wf-line: rgba(11, 11, 11, 0.16);
  --wf-green: var(--ichizero-green, #b7ff8c);
  --wf-cyan: var(--ichizero-cyan, #7effe9);
  --wf-blue: var(--ichizero-blue, #a4d9ff);
  --wf-coral: var(--ichizero-coral, #ff9485);
  --wf-yellow: var(--ichizero-yellow, #fffa86);
  --wf-page-pad: clamp(1.35rem, 4.2vw, 4.8rem);
  display: block;
  width: 100%;
  color: var(--wf-ink);
  font-family:
    'Neue Haas Grotesk Display Pro', 'Neue Haas Grotesk', 'Helvetica Neue',
    Helvetica, Arial, sans-serif;
  font-weight: 300;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.wf-shell {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.wf-eyebrow,
.wf-news-meta {
  margin: 0;
  color: #526691;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.wf-number {
  color: #536a95;
  font-size: 0.78rem;
}
.wf-media-placeholder {
  width: 100%;
  min-height: 220px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e8ebe6, #fafaf7);
  color: #69736b;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Global header */
.wf-header-spacer {
  height: 56px;
}
.wf-header-spacer.wf-header-spacer--transparent {
  height: 0;
}
.wf-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: rgba(204, 204, 204, 0.15);
  box-shadow: none;
  cursor: default;
  font-family: inherit;
}
.wf-header__inner {
  width: min(1280px, calc(100% - 112px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 52px;
  align-items: center;
}
.wf-header--transparent {
  background: rgba(204, 204, 204, 0.15);
}
.wf-header a,
.wf-header summary {
  cursor: pointer;
}
.wf-brand {
  position: relative;
  display: block;
  width: 8.7rem;
  aspect-ratio: 3444.74 / 989.79;
  overflow: hidden;
  flex: none;
  line-height: 0;
}
.wf-header .wf-brand {
  width: 112px;
}
.wf-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wf-header__nav {
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
}
.wf-header__nav a {
  position: relative;
  color: var(--wf-ink);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}
.wf-header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 1px;
  background: var(--wf-ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}
.wf-header__nav a:hover::after {
  transform: scaleX(1);
}
.wf-header__nav a[aria-current='page'] {
  font-weight: 600;
}
.wf-header__nav a[aria-current='page']::before {
  content: '';
  position: absolute;
  top: -4px;
  right: -10px;
  width: 6px;
  height: 6px;
  background: #56dc35;
}
.wf-header__mobile-menu {
  display: none;
}
.wf-pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border: 1px solid var(--wf-ink);
  border-radius: 999px;
  background: var(--wf-ink);
  color: white;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}
.wf-pill:hover {
  transform: translateY(-2px);
  background: linear-gradient(
    110deg,
    var(--wf-green) 0%,
    var(--wf-cyan) 52%,
    var(--wf-blue) 100%
  );
  color: var(--wf-ink);
  box-shadow: 0 8px 24px rgba(126, 255, 233, 0.3);
}
.wf-pill:focus-visible {
  outline: 2px solid var(--wf-cyan);
  outline-offset: 3px;
}

/* Global footer */
.wf-footer {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--wf-line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  background: #fff;
  color: var(--wf-ink);
  font-size: 0.8rem;
}
.wf-footer .wf-brand {
  width: 7.2rem;
}
.wf-footer nav {
  justify-self: center;
  display: flex;
  justify-content: center;
  gap: 34px;
}
.wf-footer nav a {
  position: relative;
  font-size: 0.84rem;
  font-weight: 400;
  transform: none;
  transition: none;
}
.wf-footer nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: var(--wf-ink);
  opacity: 0;
  transition: opacity 150ms ease;
}
.wf-footer nav a:hover::after,
.wf-footer nav a:focus-visible::after {
  opacity: 1;
}
.wf-footer__copyright {
  justify-self: end;
  font-size: 0.84rem;
  font-weight: 400;
  white-space: nowrap;
  text-align: right;
}

/* Community */
.wf-community {
  width: 100%;
  background: #fff;
  color: var(--wf-ink);
}
.wf-community__eyebrow {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.wf-community__hero {
  min-height: 675px;
  padding: 82px 0 70px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: center;
  border-bottom: 1px solid rgba(27, 42, 69, 0.42);
}
.wf-community__hero-copy h1 {
  max-width: 100%;
  margin: 27px 0 32px;
  font-size: clamp(3.25rem, 4.45vw, 4.8rem);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -0.035em;
}
.wf-community__hero-copy,
.wf-community__hero-visual {
  min-width: 0;
}
.wf-community__hero-copy > p:not(.wf-community__eyebrow) {
  max-width: 480px;
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.5;
}
.wf-community__text-link,
.wf-community__pathway-grid article > a {
  width: fit-content;
  margin-top: 46px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
}
/* Keep diagonal arrows fixed in place; movement can flicker in mobile Safari. */
.wf-community__arrow {
  width: 21px;
  height: 21px;
  flex: none;
  transition: color 160ms ease;
}
.wf-community a:hover > .wf-community__arrow,
.wf-community a:hover .wf-community__arrow,
.wf-community a:focus-visible .wf-community__arrow {
  color: #35d92e;
}
.wf-community__pixels {
  display: inline-flex;
  gap: 5px;
  flex: none;
}
.wf-community__pixels i {
  width: 8px;
  height: 8px;
  background: var(--wf-green);
}
.wf-community__pixels i:last-child {
  background: var(--wf-cyan);
}
.wf-community__hero-visual {
  position: relative;
  padding: 18px 0;
}
.wf-community__hero-visual > img,
.wf-community__hero-visual > .wf-community__image-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 505px;
  object-fit: cover;
  object-position: center;
}
.wf-community__image-placeholder {
  display: grid;
  place-items: center;
  background: #f3f4ef;
  color: #787b75;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.wf-community__geometry {
  position: absolute;
  z-index: 2;
  top: -9px;
  right: 4px;
  width: 165px;
  height: 110px;
  pointer-events: none;
}
.wf-community__geometry i {
  position: absolute;
  width: 46px;
  height: 46px;
  opacity: 0.66;
}
.wf-community__geometry i:nth-child(1) {
  top: 0;
  left: 46px;
  background: linear-gradient(135deg, var(--wf-yellow), var(--wf-coral));
}
.wf-community__geometry i:nth-child(2) {
  top: 0;
  left: 92px;
  background: var(--wf-coral);
  opacity: 0.44;
}
.wf-community__geometry i:nth-child(3) {
  top: 46px;
  left: 0;
  background: var(--wf-blue);
}
.wf-community__geometry i:nth-child(4) {
  top: 46px;
  left: 46px;
  background: var(--wf-cyan);
}
.wf-community__geometry i:nth-child(5) {
  top: 92px;
  left: 92px;
  width: 30px;
  height: 30px;
  background: var(--wf-green);
}
.wf-community__geometry--small {
  width: 104px;
  height: 82px;
}
.wf-community__geometry--small i {
  width: 29px;
  height: 29px;
}
.wf-community__geometry--small i:nth-child(1) {
  left: 29px;
}
.wf-community__geometry--small i:nth-child(2) {
  left: 58px;
}
.wf-community__geometry--small i:nth-child(3) {
  top: 29px;
}
.wf-community__geometry--small i:nth-child(4) {
  top: 29px;
  left: 29px;
}
.wf-community__geometry--small i:nth-child(5) {
  top: 58px;
  left: 58px;
  width: 20px;
  height: 20px;
}
.wf-community__manifesto {
  position: relative;
  padding: 108px 0 122px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 35px;
  overflow: hidden;
}
.wf-community__manifesto > span,
.wf-community__section-head > div > span,
.wf-community__social > header > span {
  font-size: clamp(2.65rem, 4vw, 4.4rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.035em;
}
.wf-community__manifesto h2 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.wf-community__manifesto .wf-community__geometry {
  top: auto;
  right: 0;
  bottom: 25px;
  opacity: 0.56;
}
.wf-community__pathways {
  padding: 68px 0 112px;
}
.wf-community__section-head {
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}
.wf-community__section-head h2,
.wf-community__social h2 {
  margin: 19px 0 0;
  font-size: clamp(2.7rem, 4vw, 4.6rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.wf-community__section-head > p {
  max-width: 430px;
  margin: 0 0 3px;
  font-size: 1.03rem;
  line-height: 1.5;
}
.wf-community__pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wf-community__pathway-grid article {
  min-height: 440px;
  padding: 31px 31px 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(11, 11, 11, 0.13);
  background: linear-gradient(145deg, #fff 45%, rgba(183, 255, 140, 0.17));
}
.wf-community__pathway-grid article:nth-child(2) {
  background: linear-gradient(145deg, #fff 45%, rgba(126, 255, 233, 0.17));
}
.wf-community__pathway-grid article:nth-child(3) {
  background: linear-gradient(145deg, #fff 45%, rgba(255, 148, 133, 0.14));
}
.wf-community__pathway-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
}
.wf-community__pathway-top span {
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.wf-community__pathway-top p {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.wf-community__pathway-grid h3 {
  margin: 84px 0 22px;
  font-size: clamp(1.85rem, 2.3vw, 2.45rem);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.025em;
}
.wf-community__pathway-grid article > p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}
.wf-community__pathway-grid article > a {
  width: 100%;
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(11, 11, 11, 0.14);
}
.wf-community__pathway-grid article > a .wf-community__arrow {
  margin-left: auto;
}
.wf-community__participate {
  padding: 74px 0 122px;
}
.wf-community__participation-list {
  border-top: 1px solid rgba(11, 11, 11, 0.22);
}
.wf-community__participation-list > a {
  min-height: 96px;
  padding: 17px 0;
  display: grid;
  grid-template-columns: 100px 1fr 1.3fr 34px;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(11, 11, 11, 0.22);
}
.wf-community__participation-list > a > span {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
.wf-community__participation-list h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}
.wf-community__participation-list p {
  max-width: 470px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}
.wf-community__social {
  padding: 102px 0 100px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  align-items: stretch;
}
.wf-community__social header > p {
  max-width: 330px;
  margin: 30px 0 0;
  font-size: 1rem;
  line-height: 1.5;
}
.wf-community__social > div {
  display: grid;
  grid-template-rows: repeat(3, minmax(76px, 1fr));
  border-top: 1px solid rgba(11, 11, 11, 0.2);
}
.wf-community__social > div > a {
  min-height: 76px;
  padding: 12px 0;
  display: grid;
  grid-template-columns: 27px 1fr 25px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(11, 11, 11, 0.2);
}
.wf-community__social-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}
.wf-community__social-icon svg {
  width: 100%;
  height: 100%;
}
.wf-community__social strong,
.wf-community__social small {
  display: block;
}
.wf-community__social strong {
  margin-bottom: 3px;
  font-size: 1.12rem;
  font-weight: 500;
}
.wf-community__social small {
  color: #62635e;
  font-size: 0.9rem;
  font-weight: 300;
}
.wf-community__join-section {
  padding-top: 10px;
  background: #fff;
}
.wf-community__join-heading {
  margin-bottom: 54px;
}
.wf-bella-contact {
  padding: 92px 0 0;
  scroll-margin-top: 116px;
}
.wf-bella-contact__heading {
  margin-bottom: 54px;
  text-align: center;
}
.wf-bella-contact__heading h2 {
  margin: 0;
  font-size: clamp(3.35rem, 7.1vw, 7.8rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
}
.wf-bella-contact__heading p {
  max-width: 880px;
  margin: 42px auto 0;
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.wf-community__join {
  min-height: 565px;
  padding: 58px 70px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  align-items: stretch;
  border: 1px solid rgba(11, 11, 11, 0.13);
  background: #fff;
  box-shadow: 0 24px 70px rgba(38, 48, 44, 0.07);
}
.wf-bella-contact .wf-community__join {
  overflow: hidden;
  border-radius: clamp(24px, 2.25vw, 32px);
}
.wf-community__join-visual {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.wf-community__join-visual > img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.wf-community__join-visual > .wf-community__image-placeholder {
  width: 100%;
  height: 330px;
}
.wf-community__form {
  padding: 0 0 4px;
  display: flex;
  flex-direction: column;
  background: #fff;
  font-weight: 400;
}
.wf-community__form > label {
  display: block;
}
.wf-community__form input:not([type='checkbox']),
.wf-community__form textarea,
.wf-community__form select {
  width: 100%;
  min-height: 80px;
  padding: 21px 0 17px;
  border: 0;
  border-bottom: 1px solid rgba(11, 11, 11, 0.2);
  border-radius: 0;
  outline: 0;
  background: #fff;
  color: var(--wf-ink);
  font: inherit;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  font-weight: 400;
}
.wf-community__form input::placeholder,
.wf-community__form textarea::placeholder {
  color: #9b9b98;
  opacity: 1;
}
.wf-community__form input:focus,
.wf-community__form textarea:focus,
.wf-community__form select:focus {
  border-color: var(--wf-ink);
}
.wf-community__form [aria-invalid='true'] {
  border-color: #a12e27 !important;
}
.wf-community__field-error {
  display: block;
  margin: 7px 0 2px;
  color: #a12e27;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
}
.wf-community__field-error--consent {
  margin-top: 5px;
}
.wf-community__form select {
  appearance: none;
  color: #777874;
  background-image:
    linear-gradient(45deg, transparent 50%, #0b0b0b 50%),
    linear-gradient(135deg, #0b0b0b 50%, transparent 50%);
  background-position:
    calc(100% - 14px) 50%,
    calc(100% - 8px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  font-family:
    'Neue Haas Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem) !important;
  font-weight: 400 !important;
  line-height: 1.2;
  letter-spacing: 0 !important;
}
.wf-community__form select option {
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
}
.wf-community__form select:valid {
  color: var(--wf-ink);
}
.wf-community:not(.wf-bella-contact)
  .wf-community__form
  input:not([type='checkbox']),
.wf-community:not(.wf-bella-contact) .wf-community__form textarea,
.wf-community:not(.wf-bella-contact) .wf-community__form select {
  font-family: inherit !important;
  font-size: 1.12rem !important;
  font-weight: 500 !important;
  line-height: 1.2;
  letter-spacing: 0 !important;
}
.wf-community:not(.wf-bella-contact)
  .wf-community__form
  input::placeholder,
.wf-community:not(.wf-bella-contact)
  .wf-community__form
  textarea::placeholder {
  color: #62635e;
  font-family: inherit;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  opacity: 1;
}
.wf-community:not(.wf-bella-contact) .wf-community__form select:invalid {
  color: #62635e;
}
.wf-community:not(.wf-bella-contact) .wf-community__form select option {
  font-family: inherit;
  font-size: 1.12rem;
  font-weight: 500;
}
.wf-community__form textarea {
  resize: none;
}
.wf-community__form-bottom {
  margin-top: auto;
  padding-top: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wf-community__consent {
  max-width: 520px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #555651;
  font-size: 0.8rem;
  line-height: 1.35;
}
.wf-community__consent input {
  appearance: none;
  flex: none;
  width: 17px;
  height: 17px;
  margin: 0;
  border: 1px solid #0b0b0b;
  background: #fff;
  cursor: pointer;
}
.wf-community__consent input:checked {
  background: #0b0b0b;
  box-shadow: inset 0 0 0 4px #fff;
}
.wf-community__form button {
  flex: none;
  min-width: 126px;
  padding: 10px 17px;
  border: 0;
  border-radius: 999px;
  background: #0b0b0b;
  color: #fff;
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
}
.wf-community__form button:hover {
  background: #252525;
}
.wf-community:not(.wf-bella-contact) .wf-community__form button {
  border: 1px solid var(--wf-ink);
  transition:
    transform 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}
.wf-community:not(.wf-bella-contact)
  .wf-community__form
  button:not(:disabled):hover {
  transform: translateY(-2px);
  background: linear-gradient(
    110deg,
    var(--wf-green) 0%,
    var(--wf-cyan) 52%,
    var(--wf-blue) 100%
  );
  color: var(--wf-ink);
  box-shadow: 0 8px 24px rgba(126, 255, 233, 0.3);
}
.wf-community:not(.wf-bella-contact)
  .wf-community__form
  button:focus-visible {
  outline: 2px solid var(--wf-cyan);
  outline-offset: 3px;
}
.wf-community__form button:disabled {
  opacity: 0.52;
  cursor: wait;
}
.wf-community__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.wf-community__form-status {
  margin: 18px 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
}
.wf-community__form-status.is-success {
  color: #197648;
}
.wf-community__form-status.is-error {
  color: #a12e27;
}
.wf-community__success {
  position: relative;
  min-height: 440px;
  padding: 68px 8% 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(183, 255, 140, 0.16),
    rgba(126, 255, 233, 0.12) 52%,
    rgba(255, 255, 255, 0) 78%
  );
  animation: wf-community-success-in 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.wf-community__success-kicker {
  margin: 0 0 27px;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.wf-community__success h3 {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 0 24px;
  font-size: clamp(2.25rem, 3.25vw, 3.75rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.wf-community__success > p:last-child {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0;
  color: #555651;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.wf-community__success-geometry {
  position: absolute;
  top: 40px;
  right: 7%;
  width: 170px;
  height: 170px;
}
.wf-community__success-geometry i {
  position: absolute;
  width: 42px;
  height: 42px;
  opacity: 0.8;
  animation: wf-community-pixel-float 3.6s ease-in-out infinite alternate;
}
.wf-community__success-geometry i:nth-child(1) {
  top: 42px;
  left: 0;
  background: #a4d9ff;
}
.wf-community__success-geometry i:nth-child(2) {
  top: 0;
  left: 42px;
  background: #b7ff8c;
  animation-delay: -0.8s;
}
.wf-community__success-geometry i:nth-child(3) {
  top: 0;
  left: 84px;
  background: #7effe9;
  animation-delay: -1.5s;
}
.wf-community__success-geometry i:nth-child(4) {
  top: 42px;
  left: 42px;
  background: #7effe9;
  animation-delay: -0.35s;
}
.wf-community__success-geometry i:nth-child(5) {
  top: 84px;
  left: 84px;
  background: #b7ff8c;
  animation-delay: -1.9s;
}
.wf-community__success-geometry i:nth-child(6) {
  top: 126px;
  left: 126px;
  width: 18px;
  height: 18px;
  background: #ff8d83;
  animation-delay: -2.4s;
}
.wf-community__success-geometry i:nth-child(7) {
  top: 74px;
  left: 142px;
  width: 12px;
  height: 12px;
  background: #fff16b;
  animation-delay: -1.1s;
}
@keyframes wf-community-success-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes wf-community-pixel-float {
  from {
    transform: translate3d(0, 0, 0) rotate(0);
  }
  to {
    transform: translate3d(0, -12px, 0) rotate(4deg);
  }
}
.wf-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;
}

@media (max-width: 900px) {
  .wf-community__hero {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .wf-community__pathway-grid {
    grid-template-columns: 1fr;
  }
  .wf-community__pathway-grid article {
    min-height: 350px;
  }
  .wf-community__pathway-grid h3 {
    margin-top: 54px;
  }
  .wf-community__social,
  .wf-community__join {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .wf-community__join {
    padding: 48px;
  }
  .wf-community__join-visual {
    min-height: 400px;
  }
  .wf-community__join-visual > img {
    inset: 0;
    width: 100%;
  }
  .wf-community__manifesto {
    grid-template-columns: 90px 1fr;
  }
  .wf-community__participation-list > a {
    grid-template-columns: 58px 1fr 30px;
  }
  .wf-community__participation-list p {
    grid-column: 2 / 3;
  }
}

@media (max-width: 640px) {
  .wf-shell,
  .wf-header__inner,
  .wf-footer {
    width: calc(100% - 40px);
  }
  .wf-community__hero {
    min-height: 0;
    padding: 61px 0 60px;
  }
  .wf-community__hero-copy h1 {
    font-size: clamp(3.15rem, 15vw, 4.2rem);
  }
  .wf-community__hero-visual > img,
  .wf-community__hero-visual > .wf-community__image-placeholder {
    height: 350px;
  }
  .wf-community__manifesto {
    padding: 78px 0 90px;
    grid-template-columns: 1fr;
  }
  .wf-community__section-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .wf-community__pathways,
  .wf-community__participate {
    padding-bottom: 88px;
  }
  .wf-community__participation-list > a {
    min-height: 0;
    padding: 19px 0;
    grid-template-columns: 46px 1fr 26px;
    gap: 14px;
  }
  .wf-community__participation-list h3 {
    font-size: 1.55rem;
  }
  .wf-community__social {
    padding: 92px 0;
  }
  .wf-community__join-heading {
    margin-bottom: 36px;
  }
  .wf-bella-contact {
    padding-top: 62px;
  }
  .wf-bella-contact__heading {
    margin-bottom: 36px;
  }
  .wf-bella-contact__heading h2 {
    font-size: clamp(3.1rem, 15vw, 4.5rem);
  }
  .wf-bella-contact__heading p {
    margin-top: 26px;
    font-size: 1rem;
    line-height: 1.45;
  }
  .wf-community__join {
    width: calc(100% - 24px);
    padding: 28px 22px 34px;
    gap: 40px;
  }
  .wf-community__join-visual {
    min-height: 340px;
  }
  .wf-community__join-visual > img {
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .wf-community__form-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .wf-community__form button {
    align-self: flex-end;
  }
  .wf-community__success {
    min-height: 390px;
    padding: 54px 4px 34px;
  }
  .wf-community__success h3 {
    max-width: 92%;
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }
  .wf-community__success-geometry {
    top: 22px;
    right: -15px;
    transform: scale(0.72);
    transform-origin: top right;
    opacity: 0.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wf-community__success,
  .wf-community__success-geometry i {
    animation: none;
  }
}

/* Landing */
.wf-landing {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: clip;
  background: #fff;
  color: var(--wf-ink);
}
.wf-landing__stage {
  position: relative;
  flex: 1;
  min-height: 790px;
  padding: 0 0 clamp(3rem, 4vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  grid-template-rows: auto auto auto;
  gap: clamp(1.35rem, 2vw, 2.25rem) clamp(2.5rem, 5vw, 5.5rem);
  align-content: start;
}
.wf-landing__visual {
  position: relative;
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: visible;
  isolation: isolate;
}
.wf-landing__hero {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center top;
}
.wf-landing__placeholder {
  position: absolute;
  z-index: 2;
  inset: 8% 10%;
  min-height: 0;
}
.wf-landing__geometry {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}
.wf-landing__geometry i {
  position: absolute;
  width: clamp(1.75rem, 3.15vw, 3.15rem);
  aspect-ratio: 1;
  opacity: 0.72;
  background: var(--wf-coral);
}
.wf-landing__geometry i:nth-child(1) {
  top: 19%;
  left: 1.5%;
}
.wf-landing__geometry i:nth-child(2) {
  top: 4%;
  left: 43%;
  background: #ffd9bc;
  opacity: 0.62;
}
.wf-landing__geometry i:nth-child(3) {
  top: 7%;
  right: 9%;
  background: var(--wf-coral);
}
.wf-landing__geometry i:nth-child(4) {
  top: 17%;
  right: 14%;
  background: var(--wf-yellow);
  opacity: 0.58;
}
.wf-landing__geometry i:nth-child(5) {
  top: 43%;
  left: 0;
  background: var(--wf-blue);
  opacity: 0.76;
}
.wf-landing__geometry i:nth-child(6) {
  bottom: 13%;
  left: 5%;
  background: var(--wf-yellow);
  opacity: 0.56;
}
.wf-landing__identity {
  align-self: start;
}
.wf-landing__wordmark {
  position: relative;
  display: block;
  width: min(29rem, 100%);
  aspect-ratio: 2089 / 753;
  overflow: hidden;
  background: transparent;
  line-height: 0;
}
.wf-landing__wordmark img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}
.wf-landing__identity h1 {
  max-width: 47rem;
  margin: clamp(1.4rem, 2.2vw, 2.2rem) 0 0;
  font-size: clamp(3.25rem, 4.45vw, 4.8rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.032em;
}
.wf-landing__identity h1 > span {
  display: block;
  white-space: nowrap;
}
.wf-landing__nav {
  align-self: end;
  justify-self: end;
  width: min(31rem, 100%);
  padding: 0.9rem 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 1.5rem 4.5rem rgba(23, 31, 26, 0.105),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
  backdrop-filter: blur(24px) saturate(135%);
}
.wf-landing__nav-row {
  min-height: 5.35rem;
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
}
.wf-landing__nav-row:first-child {
  border-top: 1px solid rgba(10, 10, 10, 0.12);
}
.wf-landing__nav-row:focus-visible {
  outline: 1px solid var(--wf-ink);
  outline-offset: 4px;
}
.wf-landing__mini-pixels {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.wf-landing__mini-pixels i {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--wf-green);
}
.wf-landing__mini-pixels i:last-child {
  background: var(--wf-cyan);
}
.wf-landing__link-copy {
  display: flex;
  flex-direction: column;
}
.wf-landing__link-copy strong {
  font-size: 1.44rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
}
.wf-landing__link-copy small {
  margin-top: 6px;
  color: #666;
  font-size: 0.94rem;
  line-height: 1.2;
}
.wf-landing__arrow,
.wf-news-read__arrow {
  display: block;
  flex: none;
  overflow: visible;
  color: var(--wf-ink);
  transition: color 180ms ease;
}
.wf-landing__arrow {
  width: 1.3rem;
  height: 1.3rem;
}
.wf-news-read__arrow {
  width: 1.05rem;
  height: 1.05rem;
  opacity: 1;
}
.wf-landing__nav-row:hover .wf-landing__arrow,
.wf-landing__nav-row:focus-visible .wf-landing__arrow {
  color: #56dc35;
}
.wf-landing__closing {
  grid-column: 1 / -1;
  justify-self: stretch;
  width: 100%;
  margin-top: clamp(2.25rem, 4vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  text-align: left;
}
.wf-landing__closing p {
  max-width: 58rem;
  margin: 0;
  font-size: clamp(1.4rem, 2.08vw, 2.12rem);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: -0.026em;
}
.wf-landing__closing-geometry {
  width: clamp(5.75rem, 8.5vw, 7.5rem);
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
}
.wf-landing__closing-geometry i {
  display: block;
}
.wf-landing__closing-geometry i:nth-child(1) {
  grid-column: 1;
  grid-row: 2;
  background: var(--wf-blue);
}
.wf-landing__closing-geometry i:nth-child(2) {
  grid-column: 2;
  grid-row: 2;
  background: var(--wf-cyan);
}
.wf-landing__closing-geometry i:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
  background: var(--wf-green);
}
.wf-landing__closing-geometry i:nth-child(4) {
  grid-column: 3;
  grid-row: 1;
  background: var(--wf-cyan);
}
.wf-landing__closing-geometry i:nth-child(5) {
  grid-column: 3;
  grid-row: 3;
  background: var(--wf-green);
}
.wf-landing > .wf-footer {
  flex: none;
}

/* Story */
.wf-story {
  background: #fff;
  color: var(--wf-ink);
}
.wf-story__hero {
  padding: 87px 0 72px;
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 70px;
  align-items: center;
  border-bottom: 1px solid rgba(27, 42, 69, 0.42);
}
.wf-story__hero-copy h1 {
  margin: 28px 0 34px;
  white-space: pre-line;
  font-size: clamp(3.25rem, 4.45vw, 4.8rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.032em;
}
.wf-story__hero-copy h1 > span {
  display: block;
}
.wf-story__intro {
  max-width: 500px;
  margin: 0;
  color: var(--wf-ink);
  font-size: 1.16rem;
  line-height: 1.5;
}
.wf-story .wf-eyebrow,
.wf-news-hero .wf-eyebrow {
  color: #0b0b0b;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.wf-story .wf-number {
  color: #0b0b0b;
  font-size: clamp(2.65rem, 4vw, 4.4rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.035em;
}
.wf-story__tagline {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #0b0b0b;
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.wf-story__pixel-pair {
  position: relative;
  width: 66px;
  height: 35px;
  border-top: 1px solid #657491;
}
.wf-story__pixel-pair i {
  position: absolute;
  top: 20px;
  width: 14px;
  height: 14px;
  background: var(--wf-green);
}
.wf-story__pixel-pair i:last-child {
  left: 22px;
  background: var(--wf-cyan);
}
.wf-story__hero-visual {
  position: relative;
  padding: 22px 52px 0 0;
}
.wf-story__hero-visual > img,
.wf-story__hero-visual > .wf-media-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.wf-story__hero-visual > img {
  transform-origin: center center;
}
.wf-story__hero-visual > p {
  position: absolute;
  z-index: 2;
  right: -5px;
  bottom: 28px;
  margin: 0;
  color: #0b0b0b;
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.wf-story__pixels {
  position: absolute;
  z-index: 0;
  top: -15px;
  right: 0;
  width: 270px;
  height: 170px;
}
.wf-story__pixels i {
  position: absolute;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--wf-green), var(--wf-cyan));
  opacity: 0.55;
}
.wf-story__pixels i:nth-child(1) {
  left: 0;
  top: 0;
}
.wf-story__pixels i:nth-child(2) {
  left: 44px;
  top: 0;
  opacity: 0.28;
}
.wf-story__pixels i:nth-child(3) {
  left: 88px;
  top: 0;
  opacity: 0.38;
}
.wf-story__pixels i:nth-child(4) {
  left: 132px;
  top: 0;
  opacity: 0.45;
}
.wf-story__pixels i:nth-child(5) {
  left: 176px;
  top: 0;
  background: var(--wf-blue);
}
.wf-story__pixels i:nth-child(6) {
  left: 220px;
  top: 44px;
  background: var(--wf-cyan);
}
.wf-story__pixels i:nth-child(7) {
  left: 0;
  top: 44px;
  opacity: 0.26;
}
.wf-story__pixels i:nth-child(8) {
  left: 176px;
  top: 88px;
  background: var(--wf-blue);
  opacity: 0.35;
}
.wf-story__pixels i:nth-child(9) {
  left: 220px;
  top: 132px;
  width: 25px;
  height: 25px;
}
.wf-story__pixels i:nth-child(10) {
  left: 245px;
  top: 108px;
  width: 28px;
  height: 28px;
  background: var(--wf-green);
}
.wf-story__pixels i:nth-child(11) {
  left: 132px;
  top: 44px;
  opacity: 0.2;
}
.wf-story__origin {
  padding: 78px 0 110px;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 86px;
  align-items: start;
}
.wf-story__origin-image {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f4f4f2;
}
.wf-story__origin-image > img,
.wf-story__origin-image > .wf-media-placeholder {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.wf-story__origin-image > img {
  transform-origin: center center;
}
.wf-story__origin-image .wf-story__pixel-pair {
  position: absolute;
  left: 16px;
  bottom: 3px;
  border: 0;
}
.wf-story__origin-copy h2,
.wf-story__section-head h2,
.wf-story__partners h2 {
  margin: 13px 0 34px;
  font-size: clamp(2.45rem, 3.65vw, 4rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.wf-story__origin-columns {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 42px;
}
.wf-story__origin-columns > p,
.wf-story__origin-columns div > p {
  margin: 0;
  color: var(--wf-ink);
  font-size: 1.05rem;
  line-height: 1.5;
}
.wf-story__origin-columns div {
  padding-left: 38px;
  border-left: 1px solid #8a94aa;
}
.wf-story__origin-columns strong {
  display: block;
  margin-bottom: 25px;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.wf-story__timeline {
  position: relative;
  margin: 58px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}
.wf-story__timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  right: 9px;
  top: 9px;
  height: 1px;
  background: #8a96ad;
}
.wf-story__timeline li {
  position: relative;
  padding: 30px 8px 0 0;
  color: var(--wf-ink);
  font-size: 0.8rem;
  line-height: 1.35;
}
.wf-story__timeline li:nth-child(2) {
  text-align: center;
  transform: translateX(-16.667%);
}
.wf-story__timeline li:nth-child(3) {
  text-align: center;
  transform: translateX(16.667%);
}
.wf-story__timeline li:nth-child(2) i,
.wf-story__timeline li:nth-child(3) i {
  left: 50%;
  transform: translateX(-50%);
}
.wf-story__timeline li:last-child {
  padding-right: 0;
  text-align: right;
}
.wf-story__timeline li:last-child i {
  left: auto;
  right: 0;
}
.wf-story__timeline i {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--wf-blue);
}
.wf-story__timeline li:first-child i {
  background: var(--wf-green);
}
.wf-story__timeline li:nth-child(2) i {
  background: var(--wf-cyan);
}
.wf-story__timeline strong {
  display: block;
  margin-bottom: 5px;
  color: var(--wf-ink);
  font-size: 0.88rem;
  font-weight: 500;
}
.wf-story__timeline span {
  display: block;
}
.wf-story__purpose {
  padding-bottom: 118px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.wf-story__purpose-card {
  position: relative;
  min-height: 340px;
  padding: 34px 50px 42px;
  overflow: hidden;
}
.wf-story__purpose-card--mission {
  background: linear-gradient(
    118deg,
    rgba(183, 255, 140, 0.78),
    rgba(126, 255, 233, 0.7),
    rgba(164, 217, 255, 0.62)
  );
}
.wf-story__purpose-card--vision {
  background: linear-gradient(
    118deg,
    rgba(255, 148, 133, 0.5),
    rgba(255, 250, 134, 0.66),
    rgba(183, 255, 140, 0.42)
  );
}
.wf-story__purpose-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wf-story__purpose-card--has-image::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(255, 255, 255, 0.68);
}
.wf-story__purpose-card > span,
.wf-story__purpose-card > p,
.wf-story__purpose-card > h2 {
  position: relative;
  z-index: 3;
}
.wf-story__purpose-card > span {
  color: #0b0b0b;
  font-size: clamp(2.65rem, 4vw, 4.4rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.035em;
}
.wf-story__purpose-card > p {
  margin: 18px 0 28px;
  color: #0b0b0b;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.wf-story__purpose-card h2 {
  max-width: 570px;
  margin: 0;
  color: #0b0b0b;
  font-size: clamp(1.44rem, 2.06vw, 2.28rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0.012em;
}
.wf-story__card-pixels {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.wf-story__card-pixels i {
  position: absolute;
  width: 34px;
  height: 34px;
  background: var(--wf-green);
  opacity: 0.35;
}
.wf-story__card-pixels i:nth-child(1) {
  top: 5%;
  right: 7%;
}
.wf-story__card-pixels i:nth-child(2) {
  top: 22%;
  right: 2%;
  width: 18px;
  height: 18px;
  background: var(--wf-cyan);
  opacity: 0.5;
}
.wf-story__card-pixels i:nth-child(3) {
  right: 8%;
  bottom: 6%;
  width: 28px;
  height: 28px;
  background: var(--wf-blue);
}
.wf-story__card-pixels i:nth-child(4) {
  right: 18%;
  bottom: 17%;
  width: 16px;
  height: 16px;
  background: var(--wf-yellow);
  opacity: 0.55;
}
.wf-story__card-pixels i:nth-child(5) {
  left: 3%;
  bottom: 4%;
  width: 22px;
  height: 22px;
  background: var(--wf-coral);
  opacity: 0.28;
}
.wf-story__card-pixels i:nth-child(6) {
  top: 8%;
  left: 43%;
  width: 13px;
  height: 13px;
  background: #fff;
  opacity: 0.75;
}
.wf-story__card-pixels i:nth-child(7) {
  top: 46%;
  left: 2%;
  width: 20px;
  height: 20px;
  background: var(--wf-green);
  opacity: 0.26;
}
.wf-story__purpose-card--vision .wf-story__card-pixels i:nth-child(1) {
  right: auto;
  left: 6%;
  top: 7%;
}
.wf-story__purpose-card--vision .wf-story__card-pixels i:nth-child(2) {
  right: auto;
  left: 2%;
  top: 26%;
}
.wf-story__purpose-card--vision .wf-story__card-pixels i:nth-child(3) {
  right: 5%;
  bottom: 5%;
}
.wf-story__purpose-card--vision .wf-story__card-pixels i:nth-child(4) {
  right: 16%;
  bottom: 13%;
}
.wf-story__purpose-card--vision .wf-story__card-pixels i:nth-child(5) {
  left: 45%;
  bottom: 3%;
}
.wf-story__purpose-card--vision .wf-story__card-pixels i:nth-child(6) {
  left: auto;
  right: 34%;
  top: 8%;
}
.wf-story__purpose-card--vision .wf-story__card-pixels i:nth-child(7) {
  left: auto;
  right: 2%;
  top: 48%;
}
.wf-story__people {
  padding: 20px 0 98px;
}
.wf-story__section-head {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
}
.wf-story__section-head span {
  color: #0b0b0b;
  font-size: clamp(2.65rem, 4vw, 4.4rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.035em;
}
.wf-story__section-head h2 {
  margin-bottom: 0;
}
.wf-story__section-head > p {
  max-width: 430px;
  margin: 0 0 4px;
  color: var(--wf-ink);
  font-size: 1rem;
  line-height: 1.5;
}
.wf-story__leadership {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.wf-story__advisors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.wf-story__person p {
  margin: 14px 0 4px;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.2;
}
.wf-story__person h3 {
  margin: 12px 0 0;
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.3;
}
.wf-story__person p + h3 {
  margin-top: 0;
  color: var(--wf-ink);
  font-size: 1rem;
  font-weight: 300;
}
.wf-story__person-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.wf-story__person-meta > div {
  min-width: 0;
}
.wf-story__linkedin {
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 14px;
  color: var(--wf-ink);
  line-height: 0;
  transition: opacity 180ms ease;
}
.wf-story__linkedin:hover {
  opacity: 0.58;
}
.wf-story__linkedin:focus-visible {
  outline: 2px solid var(--wf-ink);
  outline-offset: 3px;
}
.wf-story__linkedin svg {
  width: 100%;
  height: 100%;
}
.wf-story__portrait {
  position: relative;
  height: 300px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(145deg, #e6e8e3, #f8f8f5 55%, #dce2d9);
}
.wf-story__portrait > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}
.wf-story__leadership .wf-story__portrait {
  height: 390px;
}
.wf-story__portrait > span {
  position: relative;
  z-index: 1;
  color: #6d746e;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.wf-story__portrait--2 {
  background: linear-gradient(145deg, #e3e9ed, #fafafa 55%, #d8dfe1);
}
.wf-story__portrait--3 {
  background: linear-gradient(145deg, #e7e4df, #fafafa 55%, #e4dbd4);
}
.wf-story__portrait--4 {
  background: linear-gradient(145deg, #e1e7e4, #fafafa 55%, #dbe1de);
}
.wf-story__portrait--5 {
  background: linear-gradient(145deg, #e9e5e0, #fafafa 55%, #dedbd7);
}
.wf-story__section-head--advisors {
  margin-top: 88px;
}
.wf-story__advisors .wf-story__portrait {
  height: 220px;
}
.wf-story__partners {
  padding: 34px 0 40px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 60px;
  align-items: center;
}
.wf-story__partners > div:first-child > span {
  color: #0b0b0b;
  font-size: clamp(2.65rem, 4vw, 4.4rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.035em;
}
.wf-story__partners h2 {
  margin: 12px 0 8px;
}
.wf-story__partners p {
  margin: 0;
  color: var(--wf-ink);
  font-size: 0.98rem;
  line-height: 1.48;
}
.wf-story__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
}
.wf-story__logos > a {
  min-height: 104px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.wf-story__logos > a:hover {
  opacity: 0.68;
}
.wf-story__logos > a:focus-visible {
  outline: 2px solid var(--wf-ink);
  outline-offset: 4px;
}
.wf-story__logos img {
  width: 100%;
  max-width: 228px;
  max-height: 84px;
  object-fit: contain;
}
.wf-story__logo--small img {
  max-width: 120px;
  max-height: 46px;
}
.wf-story__logo--medium img {
  max-width: 165px;
  max-height: 62px;
}
.wf-story__logo--large img {
  max-width: 228px;
  max-height: 84px;
}
.wf-story__logo--extra-large img {
  max-width: 260px;
  max-height: 96px;
}
.wf-story__nokia strong {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.wf-story__elisa strong {
  color: #7141e6;
  font-size: 2.05rem;
  font-style: italic;
}
.wf-story__foundation strong {
  font-size: 0.95rem;
}

/* News */
.wf-news-hero {
  position: relative;
  min-height: 515px;
  padding: 60px 0 72px;
  background: #fff;
}
.wf-news-hero h1 {
  max-width: 760px;
  margin: 28px 0 34px;
  white-space: pre-line;
  font-size: clamp(3.25rem, 4.45vw, 4.8rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.032em;
}
.wf-news-hero > p:not(.wf-eyebrow) {
  max-width: 500px;
  margin: 0;
  color: var(--wf-ink);
  font-size: 1.16rem;
  line-height: 1.5;
}
.wf-news-hero__tagline {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #0b0b0b;
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.wf-news-hero__tagline strong {
  white-space: pre-line;
  font-weight: 500;
}
.wf-news-hero__tagline > span {
  position: relative;
  width: 66px;
  height: 35px;
  border-top: 1px solid #657491;
}
.wf-news-hero__tagline i {
  position: absolute;
  top: 20px;
  width: 14px;
  height: 14px;
  background: var(--wf-green);
}
.wf-news-hero__tagline i:last-child {
  left: 22px;
  background: var(--wf-cyan);
}
.wf-news-hero__pixels {
  position: absolute;
  top: 35px;
  right: 0;
  width: 280px;
  height: 235px;
}
.wf-news-hero__pixels i {
  position: absolute;
  width: 55px;
  height: 55px;
  background: linear-gradient(
    135deg,
    var(--wf-green),
    var(--wf-cyan),
    var(--wf-blue)
  );
  opacity: 0.55;
}
.wf-news-hero__pixels i:nth-child(1) {
  left: 55px;
  top: 0;
  opacity: 0.9;
}
.wf-news-hero__pixels i:nth-child(2) {
  left: 110px;
  top: 0;
  opacity: 0.67;
}
.wf-news-hero__pixels i:nth-child(3) {
  left: 165px;
  top: 0;
  opacity: 0.54;
}
.wf-news-hero__pixels i:nth-child(4) {
  left: 0;
  top: 55px;
  opacity: 0.8;
}
.wf-news-hero__pixels i:nth-child(5) {
  left: 55px;
  top: 55px;
  opacity: 0.65;
}
.wf-news-hero__pixels i:nth-child(6) {
  left: 110px;
  top: 55px;
  opacity: 0.5;
}
.wf-news-hero__pixels i:nth-child(7) {
  left: 165px;
  top: 55px;
  opacity: 0.4;
}
.wf-news-hero__pixels i:nth-child(8) {
  left: 220px;
  top: 55px;
  opacity: 0.35;
}
.wf-news-hero__pixels i:nth-child(9) {
  left: 165px;
  top: 110px;
  opacity: 0.55;
}
.wf-news-hero__pixels i:nth-child(10) {
  left: 220px;
  top: 165px;
  width: 34px;
  height: 34px;
  background: var(--wf-green);
  opacity: 0.9;
}
.wf-news-toolbar {
  padding: 68px 0 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  background: #fff;
}
.wf-news-toolbar h2 {
  margin: 0 0 22px;
  color: var(--wf-ink);
  font-size: clamp(2.8rem, 4.4vw, 4.7rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.032em;
}
.wf-news-toolbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 38px;
}
.wf-news-toolbar button {
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--wf-ink);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.35;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    font-weight 180ms ease;
}
.wf-news-toolbar nav button:hover,
.wf-news-toolbar nav button:focus-visible {
  border-bottom-color: rgba(11, 11, 11, 0.42);
  outline: none;
}
.wf-news-toolbar nav button.is-active {
  border-bottom: 1px solid var(--wf-ink);
  color: var(--wf-ink);
}
.wf-news-toolbar__sort {
  justify-self: end;
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 0 !important;
  white-space: nowrap;
  text-decoration: none !important;
}
.wf-news-toolbar__sort > span:first-child {
  transition: text-shadow 180ms ease;
}
.wf-news-toolbar__sort:hover > span:first-child,
.wf-news-toolbar__sort:focus-visible > span:first-child {
  text-shadow:
    0.28px 0 currentColor,
    -0.28px 0 currentColor;
}
.wf-news-toolbar__sort-arrow {
  display: inline-block;
  margin-top: -1px;
  line-height: 1;
  transition: opacity 180ms ease;
}
.wf-news-toolbar__sort:hover .wf-news-toolbar__sort-arrow,
.wf-news-toolbar__sort:focus-visible .wf-news-toolbar__sort-arrow {
  opacity: 0.5;
}
.wf-news-card {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  min-width: 0;
  background: #fff;
}
.wf-news-card:not(.wf-news-card--featured) {
  height: 100%;
  padding: 12px 12px 18px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(11, 11, 11, 0.14);
}
.wf-news-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.52;
  margin: 0 0 18px;
  padding: 0;
  display: block;
  overflow: hidden;
  border: 0;
  background: #f1f2ef;
  cursor: pointer;
}
.wf-news-card__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}
.wf-news-card__image .wf-media-placeholder {
  height: 100%;
}
.wf-news-card__image-category {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 11px 7px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.wf-news-card__image-geometry {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  width: 48px;
  height: 42px;
}
.wf-news-card__image-geometry i {
  position: absolute;
  width: 14px;
  height: 14px;
  background: rgba(183, 255, 140, 0.88);
}
.wf-news-card__image-geometry i:nth-child(1) {
  right: 0;
  bottom: 0;
}
.wf-news-card__image-geometry i:nth-child(2) {
  right: 14px;
  bottom: 14px;
  background: rgba(126, 255, 233, 0.88);
}
.wf-news-card__image-geometry i:nth-child(3) {
  right: 28px;
  bottom: 28px;
  width: 9px;
  height: 9px;
  background: rgba(164, 217, 255, 0.9);
}
.wf-news-card__pixels {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  align-items: flex-end;
}
.wf-news-card__pixels i {
  width: 22px;
  height: 22px;
  background: var(--wf-green);
}
.wf-news-card__pixels i:last-child {
  background: var(--wf-cyan);
  transform: translateY(15px);
}
.wf-news-card .wf-news-meta {
  color: var(--wf-ink);
}
.wf-news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
}
.wf-news-card:not(.wf-news-card--featured) .wf-news-card__meta {
  margin-bottom: 14px;
}
.wf-news-card__mini-pixels {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 4px;
}
.wf-news-card__mini-pixels i {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--wf-green);
  transition: transform 180ms ease;
}
.wf-news-card__mini-pixels i:last-child {
  background: var(--wf-cyan);
}
.wf-news-card__copy h2 {
  max-width: 440px;
  margin: 0 0 24px;
  color: var(--wf-ink);
  font-size: clamp(2.3rem, 3.3vw, 3.65rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.032em;
}
.wf-news-card__copy h3 {
  max-width: 590px;
  margin: 0 0 10px;
  color: var(--wf-ink);
  font-size: clamp(1.25rem, 1.45vw, 1.62rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.022em;
}
.wf-news-card__copy > p:not(.wf-news-meta) {
  max-width: 530px;
  margin: 0 0 14px;
  color: var(--wf-ink);
  font-size: 0.94rem;
  line-height: 1.48;
}
.wf-news-card:not(.wf-news-card--featured) .wf-news-card__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wf-news-card:not(.wf-news-card--featured) .wf-news-read {
  margin-top: auto;
  align-self: flex-start;
}
.wf-news-card--featured {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
  padding: 89px 0 82px;
  display: grid;
  grid-template-columns: 1.48fr 0.82fr;
  gap: 62px;
  align-items: center;
  border-top: 0;
}
.wf-news-card--featured .wf-news-card__image {
  margin: 0;
  aspect-ratio: 1.58;
}
.wf-news-card--featured .wf-news-meta {
  margin-bottom: 24px;
}
.wf-news-card--featured .wf-news-card__copy > p:not(.wf-news-meta) {
  max-width: 440px;
  margin-bottom: 30px;
  font-size: 1.16rem;
  line-height: 1.5;
}
.wf-news-card--tall .wf-news-card__image {
  aspect-ratio: 1.18;
}
.wf-news-card--compact .wf-news-card__image {
  width: 100%;
  aspect-ratio: 1.35;
}
.wf-news-card:not(.wf-news-card--featured):not(
    .wf-news-card--tall
  ):not(.wf-news-card--compact)
  .wf-news-card__image {
  aspect-ratio: 1.52;
}
.wf-news-card--wide {
  display: flex;
}
.wf-news-card--wide .wf-news-card__image {
  margin: 0 0 18px;
  aspect-ratio: 1.52;
}
.wf-news-card--wide .wf-news-card__copy {
  padding: 0;
}
.wf-news-read {
  padding: 5px 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0 !important;
  background: transparent;
  color: var(--wf-ink);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none !important;
  cursor: pointer;
}
.wf-news-read:hover .wf-news-read__arrow,
.wf-news-read:focus-visible .wf-news-read__arrow {
  color: #56dc35;
}
.wf-news-read:focus-visible {
  outline: 1px solid var(--wf-ink);
  outline-offset: 5px;
}
.wf-news-pagination {
  width: 100%;
  margin-top: 54px;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  border: 0;
}
.wf-news-pagination[hidden] {
  display: none;
}
.wf-news-pagination__button {
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--wf-ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 400;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    font-weight 180ms ease,
    opacity 180ms ease;
}
.wf-news-pagination__button:not(:disabled):hover,
.wf-news-pagination__button:not(:disabled):focus-visible {
  border-bottom-color: rgba(11, 11, 11, 0.42);
  font-weight: 500;
  outline: none;
}
.wf-news-pagination__button:disabled {
  opacity: 0.3;
  cursor: default;
}
.wf-news-pagination__arrow {
  display: inline-block;
  transition: transform 180ms ease;
}
.wf-news-pagination__button:not(:disabled):first-child:hover
  .wf-news-pagination__arrow {
  transform: translateX(-3px);
}
.wf-news-pagination__button:not(:disabled):last-child:hover
  .wf-news-pagination__arrow {
  transform: translateX(3px);
}
.wf-news-pagination__divider {
  width: 1px;
  height: 17px;
  background: rgba(11, 11, 11, 0.24);
}
.wf-reader {
  display: none;
  position: fixed;
  z-index: 2147483000;
  inset: 0;
}
.wf-reader.is-open {
  display: block;
}
.wf-reader__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(4, 8, 7, 0.32);
  backdrop-filter: blur(3px);
  cursor: pointer;
}
.wf-reader__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-left: 1px solid var(--wf-ink);
  background: #fff;
  color: var(--wf-ink);
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.12);
}
.wf-reader__top {
  position: sticky;
  z-index: 4;
  top: 0;
  height: 82px;
  padding: 0 28px 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(11, 11, 11, 0.16);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}
.wf-reader__brand {
  position: relative;
  display: block;
  width: 7.7rem;
  aspect-ratio: 3444.74 / 989.79;
  overflow: hidden;
  line-height: 0;
}
.wf-reader__brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wf-reader__close {
  box-sizing: border-box;
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  flex: none;
  place-items: center;
  border: 1px solid rgba(11, 11, 11, 0.34);
  border-radius: 50%;
  appearance: none;
  background: #fff;
  color: var(--wf-ink);
  line-height: 0;
  cursor: pointer;
}
.wf-reader__close svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.wf-reader__image {
  width: 100%;
  aspect-ratio: 1.35;
}
.wf-reader__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wf-reader__panel > header {
  padding: 58px 64px 60px;
}
.wf-reader__panel > header .wf-news-meta {
  color: var(--wf-ink);
}
.wf-reader__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.16em;
}
.wf-reader__meta .wf-news-card__mini-pixels i {
  width: 9px;
  height: 9px;
}
.wf-reader__panel > header h2 {
  width: 100%;
  max-width: none;
  margin: 24px 0 26px;
  color: var(--wf-ink);
  font-size: clamp(2.65rem, 3.6vw, 3.45rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.032em;
  overflow-wrap: normal;
  word-break: normal;
}
.wf-reader__panel > header > p:last-child {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--wf-ink);
  font-size: 1.16rem;
  line-height: 1.5;
  overflow-wrap: normal;
  word-break: normal;
}
.wf-reader__body {
  padding: 0 64px 80px;
  color: var(--wf-ink);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.62;
}
.wf-reader__article-fragment {
  display: contents;
}
.wf-reader__body p {
  margin: 0 0 28px;
}
.wf-reader__body h2,
.wf-reader__body h3 {
  margin: 56px 0 24px;
  color: var(--wf-ink);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.032em;
}
.wf-reader__body .wf-reader__pullquote {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: none;
  margin: 64px 0;
  padding: 44px 48px;
  overflow: hidden;
  border-top: 1px solid rgba(11, 11, 11, 0.16);
  border-bottom: 1px solid rgba(11, 11, 11, 0.16);
  background: #fff;
  color: var(--wf-ink);
}
.wf-reader__quote-copy {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 620px;
  margin-inline: auto;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.55rem, 2.05vw, 1.95rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: -0.018em;
  overflow-wrap: normal;
  word-break: normal;
}
.wf-reader__quote-pixels {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}
.wf-reader__quote-pixels i {
  position: absolute;
  width: 24px;
  height: 24px;
  background: rgba(183, 255, 140, 0.62);
}
.wf-reader__quote-pixels i:nth-child(1) {
  top: 14px;
  left: 18px;
}
.wf-reader__quote-pixels i:nth-child(2) {
  top: 38px;
  left: 42px;
  width: 14px;
  height: 14px;
  background: rgba(126, 255, 233, 0.68);
}
.wf-reader__quote-pixels i:nth-child(3) {
  top: 10px;
  right: 72px;
  width: 18px;
  height: 18px;
  background: rgba(164, 217, 255, 0.54);
}
.wf-reader__quote-pixels i:nth-child(4) {
  right: 22px;
  bottom: 18px;
  width: 30px;
  height: 30px;
  background: rgba(126, 255, 233, 0.48);
}
.wf-reader__quote-pixels i:nth-child(5) {
  right: 52px;
  bottom: 48px;
  width: 12px;
  height: 12px;
  background: rgba(183, 255, 140, 0.72);
}
.wf-reader__quote-pixels i:nth-child(6) {
  left: 30%;
  bottom: 12px;
  width: 10px;
  height: 10px;
  background: rgba(164, 217, 255, 0.58);
}
.wf-reader__video {
  width: 100%;
  margin: 42px 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b0b0b;
}
.wf-reader__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.wf-reader__article-content a {
  padding-bottom: 2px;
  background-image: linear-gradient(
    90deg,
    rgba(183, 255, 140, 0.82),
    rgba(126, 255, 233, 0.86),
    rgba(164, 217, 255, 0.82)
  );
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 2px;
  color: var(--wf-ink);
  font-weight: 500;
  text-decoration: none;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition:
    background-size 180ms ease,
    color 180ms ease;
}
.wf-reader__article-content a:hover,
.wf-reader__article-content a:focus-visible {
  background-size: 100% 0.48em;
  outline: none;
}
.wf-reader__article-content blockquote:not(.wf-reader__pullquote) {
  margin: 38px 0 42px;
  padding: 0 0 0 28px;
  border: 0;
  border-left: 4px solid rgba(11, 11, 11, 0.13);
  background: transparent;
  color: var(--wf-ink);
  font-style: italic;
  line-height: 1.55;
}
.wf-reader__article-content
  blockquote:not(.wf-reader__pullquote)
  > :first-child {
  margin-top: 0;
}
.wf-reader__article-content
  blockquote:not(.wf-reader__pullquote)
  > :last-child {
  margin-bottom: 0;
}
.wf-reader__related {
  width: max-content;
  margin: 30px 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--wf-ink);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
}
.wf-reader__related:hover .wf-news-read__arrow,
.wf-reader__related:focus-visible .wf-news-read__arrow {
  transform: translate(3px, -3px);
}
.wf-reader__related:hover .wf-news-card__mini-pixels i:first-child {
  transform: translateY(-2px);
}
.wf-reader__related:hover .wf-news-card__mini-pixels i:last-child {
  transform: translateY(2px);
}
.wf-reader__body footer {
  margin-top: 65px;
  padding-top: 24px;
  display: grid;
  gap: 24px;
  border-top: 1px solid var(--wf-line);
  color: var(--wf-ink);
  font-size: 0.82rem;
}
.wf-reader__body footer > p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.45;
}
.wf-reader__body footer > p strong {
  font-weight: 500;
}
.wf-reader__share {
  display: grid;
  gap: 12px;
}
.wf-reader__share > span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.wf-reader__share nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.wf-reader__share nav a,
.wf-reader__share nav button {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 11, 11, 0.24);
  border-radius: 50%;
  background: #fff;
  color: var(--wf-ink);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}
.wf-reader__share nav svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}
.wf-reader__share nav a:hover,
.wf-reader__share nav a:focus-visible,
.wf-reader__share nav button:hover,
.wf-reader__share nav button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--wf-ink);
  background: linear-gradient(
    135deg,
    rgba(183, 255, 140, 0.45),
    rgba(126, 255, 233, 0.35)
  );
  outline: none;
}
.wf-reader__share small {
  min-height: 1em;
  color: var(--wf-ink);
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  .wf-shell,
  .wf-header__inner,
  .wf-footer {
    width: min(calc(100% - 40px), 720px);
  }
  .wf-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 22px;
  }
  .wf-header__nav {
    gap: 20px;
  }
  .wf-landing__stage {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 28px;
  }
  .wf-landing__visual,
  .wf-landing__identity,
  .wf-landing__nav,
  .wf-landing__closing {
    grid-column: 1;
  }
  .wf-landing__identity {
    width: min(620px, 100%);
  }
  .wf-landing__nav {
    justify-self: start;
    width: min(31rem, 100%);
  }
  .wf-story__hero,
  .wf-story__origin,
  .wf-story__purpose,
  .wf-story__partners,
  .wf-news-card--featured {
    grid-template-columns: 1fr;
  }
  .wf-story__hero {
    padding-top: 59px;
  }
  .wf-story__hero-visual {
    padding-right: 0;
  }
  .wf-story__hero-visual > img,
  .wf-story__hero-visual > .wf-media-placeholder {
    height: auto;
    min-height: 420px;
    aspect-ratio: 1.25;
  }
  .wf-story__hero-visual > p {
    right: 18px;
    bottom: 16px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.82);
  }
  .wf-story__origin {
    gap: 52px;
  }
  .wf-story__origin-image {
    min-height: 0;
  }
  .wf-story__origin-image > img,
  .wf-story__origin-image > .wf-media-placeholder {
    height: auto;
    min-height: 420px;
  }
  .wf-story__section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .wf-story__partners {
    gap: 28px;
  }
  .wf-news-hero__pixels {
    opacity: 0.45;
    transform: scale(0.7);
    transform-origin: top right;
  }
  .wf-news-card--featured {
    width: min(calc(100% - 40px), 720px);
    gap: 38px;
  }
  .wf-news-card--wide {
    grid-template-columns: 1fr;
  }
  .wf-news-card--compact .wf-news-card__image {
    width: 100%;
  }
  .wf-reader__panel {
    width: 100vw;
  }
}

@media (max-width: 640px) {
  .wf-header-spacer {
    height: 56px;
  }
  .wf-header {
    position: fixed;
    z-index: 1000;
    height: 56px;
  }
  .wf-header__inner {
    height: 100%;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 12px;
  }
  .wf-header .wf-brand {
    width: 104px;
  }
  .wf-header__nav {
    display: none;
  }
  .wf-header__mobile-menu {
    position: relative;
    display: block;
    justify-self: center;
  }
  .wf-header__mobile-menu summary {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(11, 11, 11, 0.26);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    list-style: none;
  }
  .wf-header__mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .wf-header__mobile-menu summary i {
    width: 17px;
    height: 1.5px;
    background: var(--wf-ink);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }
  .wf-header__mobile-menu[open] summary i:first-child {
    transform: translateY(6.5px) rotate(45deg);
  }
  .wf-header__mobile-menu[open] summary i:nth-child(2) {
    opacity: 0;
  }
  .wf-header__mobile-menu[open] summary i:last-child {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .wf-header__mobile-menu nav {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    width: 210px;
    padding: 10px;
    display: grid;
    transform: translateX(-50%);
    border: 1px solid rgba(11, 11, 11, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 50px rgba(11, 11, 11, 0.12);
  }
  .wf-header__mobile-menu nav a {
    position: relative;
    justify-self: center;
    width: max-content;
    padding: 13px 3px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
  }
  .wf-header__mobile-menu nav a::after {
    content: '';
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: 7px;
    height: 1px;
    background: var(--wf-ink);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
  }
  .wf-header__mobile-menu nav a:hover,
  .wf-header__mobile-menu nav a[aria-current='page'] {
    font-weight: 600;
  }
  .wf-header__mobile-menu nav a:hover::after {
    transform: scaleX(1);
  }
  .wf-header__mobile-menu nav a[aria-current='page']::before {
    content: '';
    position: absolute;
    top: 8px;
    right: -9px;
    width: 6px;
    height: 6px;
    background: #56dc35;
  }
  .wf-header .wf-pill {
    padding: 8px 13px;
    font-size: 14px;
    white-space: nowrap;
  }
  .wf-footer {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wf-footer nav {
    justify-self: start;
    flex-direction: column;
    gap: 10px;
  }
  .wf-footer__copyright {
    justify-self: start;
    text-align: left;
  }
  .wf-landing__stage {
    width: calc(100% - 40px);
    padding-top: 0;
    padding-bottom: 58px;
    grid-template-rows: auto auto auto auto;
    gap: 22px;
  }
  .wf-landing__hero {
    object-position: center top;
  }
  .wf-landing__wordmark {
    width: min(19rem, 86vw);
  }
  .wf-landing__identity h1 {
    margin-top: 1.35rem;
    font-size: 3.15rem;
  }
  .wf-landing__identity h1 > span {
    white-space: normal;
  }
  .wf-landing__nav {
    width: min(29rem, 100%);
    padding: 0.65rem 1rem;
    border-radius: 1rem;
  }
  .wf-landing__nav-row {
    min-height: 5rem;
    gap: 0.75rem;
  }
  .wf-landing__link-copy strong {
    font-size: 1.35rem;
  }
  .wf-landing__link-copy small {
    font-size: 0.9rem;
  }
  .wf-landing__closing {
    margin-top: 2rem;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
  }
  .wf-landing__closing p {
    font-size: 1.32rem;
  }
  .wf-landing__closing-geometry {
    width: 4.5rem;
  }
  .wf-landing__geometry i {
    width: clamp(1.25rem, 6vw, 2rem);
    opacity: 0.56;
  }
  .wf-story__hero-copy h1 {
    font-size: 3.15rem;
  }
  .wf-story__hero-visual > img,
  .wf-story__hero-visual > .wf-media-placeholder {
    aspect-ratio: 0.94;
  }
  .wf-story__pixels {
    transform: scale(0.65);
    transform-origin: top right;
  }
  .wf-story__origin-columns {
    grid-template-columns: 1fr;
  }
  .wf-story__origin-columns div {
    padding: 24px 0 0;
    border: 0;
    border-top: 1px solid #8a94aa;
  }
  .wf-story__timeline {
    grid-template-columns: 1fr 1fr;
    gap: 30px 10px;
  }
  .wf-story__timeline::before {
    display: none;
  }
  .wf-story__timeline li:nth-child(2),
  .wf-story__timeline li:nth-child(3) {
    text-align: left;
    transform: none;
  }
  .wf-story__timeline li:nth-child(2) i,
  .wf-story__timeline li:nth-child(3) i {
    left: 0;
    transform: none;
  }
  .wf-story__timeline li:last-child {
    text-align: left;
  }
  .wf-story__timeline li:last-child i {
    left: 0;
    right: auto;
  }
  .wf-story__purpose-card {
    min-height: 360px;
    padding-inline: 28px;
  }
  .wf-story__leadership,
  .wf-story__advisors {
    grid-template-columns: 1fr;
  }
  .wf-story__portrait,
  .wf-story__advisors .wf-story__portrait {
    height: 250px;
  }
  .wf-story__leadership .wf-story__portrait {
    height: 340px;
  }
  .wf-story__logos {
    grid-template-columns: 1fr;
  }
  .wf-story__logos {
    gap: 20px;
  }
  .wf-story__logos > a {
    border: 0;
  }
  .wf-news-hero {
    min-height: 480px;
    padding-top: 40px;
  }
  .wf-news-hero h1 {
    font-size: 3.15rem;
  }
  .wf-news-hero > p:not(.wf-eyebrow) {
    max-width: 100%;
    font-size: 1.16rem;
  }
  .wf-news-hero__pixels {
    top: 6px;
    opacity: 0.25;
    transform: scale(0.55);
  }
  .wf-news-toolbar {
    grid-template-columns: 1fr;
  }
  .wf-news-toolbar nav {
    gap: 20px;
  }
  .wf-news-toolbar__sort {
    justify-self: start;
    margin-top: 14px;
  }
  .wf-news-pagination {
    margin-top: 48px;
    justify-content: flex-start;
  }
  .wf-news-card__image,
  .wf-news-card--tall .wf-news-card__image,
  .wf-news-card--compact .wf-news-card__image {
    aspect-ratio: 1.28;
  }
  .wf-reader__panel > header {
    padding: 44px 24px 45px;
  }
  .wf-reader__panel > header h2 {
    font-size: 2.8rem;
  }
  .wf-reader__body {
    padding-inline: 24px;
  }
  .wf-reader__body .wf-reader__pullquote {
    margin-inline: auto;
    padding: 38px 30px;
  }
}

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

