:root {
  --teal: #009da5;
  --teal-deep: #0a757b;
  --teal-light: #0eb2ba;
  --page-bg: #eef5ee;
  --hero-surface:
    radial-gradient(circle at 4% 24%, rgba(242, 230, 232, 0.95), rgba(242, 230, 232, 0.42) 20%, rgba(242, 230, 232, 0) 48%),
    linear-gradient(90deg, #f3ecec 0%, #f6f2ef 39%, #edf6f6 72%, #deefee 100%);
  --mist: #eefbfa;
  --ink: #363333;
  --ink-soft: #5d5a5a;
  --warm: #f3efa1;
  --shadow-soft: 0 10px 30px rgba(31, 53, 54, 0.12);
  --shadow-card: 0 8px 18px rgba(18, 51, 52, 0.14);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Arno Pro";
  src: url("../fonts/ArnoPro-Regular.woff2") format("woff2"), url("../fonts/ArnoPro-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Arno Pro";
  src: url("../fonts/ArnoPro-Smbd.woff2") format("woff2"), url("../fonts/ArnoPro-Smbd.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Arno Pro";
  src: url("../fonts/ArnoPro-Bold.woff2") format("woff2"), url("../fonts/ArnoPro-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Arno Pro Display";
  src: url("../fonts/ArnoPro-Display.woff2") format("woff2"), url("../fonts/ArnoPro-Display.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Arno Pro Display";
  src: url("../fonts/ArnoPro-SmbdDisplay.woff2") format("woff2"), url("../fonts/ArnoPro-SmbdDisplay.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Arno Pro Display";
  src: url("../fonts/ArnoPro-BoldDisplay.woff2") format("woff2"), url("../fonts/ArnoPro-BoldDisplay.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: radial-gradient(circle at 0% 18%, rgba(244, 234, 235, 0.95), rgba(244, 234, 235, 0.45) 18%, rgba(244, 234, 235, 0) 42%), linear-gradient(90deg, #f3ecec 0%, #f6f2ef 37%, #edf6f6 71%, #d9eceb 100%);
}

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

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

button,
input {
  font: inherit;
}

.shell {
  width: min(1280px, 100% - 32px);
  margin: 0 auto;
}

.page-shell {
  overflow-x: clip;
}

@media (max-width: 780px) {
  .shell {
    width: min(100% - 24px, 1280px);
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: var(--hero-surface);
}

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

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

.brand-logo {
  width: 118px;
  height: auto;
}

.brand-logo--negative {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 16px;
  color: var(--ink);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(0, 157, 165, 0.1);
  outline: none;
}

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

.mobile-nav-open .main-nav {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  inset: 68px 0 0 0;
  z-index: 100;
  background: rgba(238, 245, 238, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 24px 16px;
  gap: 4px;
  overflow-y: auto;
}

.mobile-nav-open {
  overflow: hidden;
}

.mobile-nav-open .main-nav a {
  font-size: 18px;
  padding: 14px 16px;
  border-radius: 12px;
}

@media (max-width: 820px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .main-nav {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
}
@media (max-width: 780px) {
  .site-header {
    position: static;
  }
  .header-inner {
    padding: 18px 0;
    gap: 18px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-actions .ghost-btn,
  .header-actions .primary-chip,
  .header-actions .soft-chip {
    display: none;
  }
}
@media (max-width: 480px) {
  .site-header {
    position: static;
    background: var(--teal);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header .shell {
    width: min(100% - 32px, 362px);
  }
  .header-actions .ghost-btn,
  .header-actions .primary-chip,
  .header-actions .soft-chip,
  .header-actions .icon-btn {
    display: none;
  }
  .header-inner {
    min-height: 67px;
    padding: 15px 0 16px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
  }
  .brand-logo--default {
    display: none;
  }
  .brand-logo--negative {
    display: block;
    width: 103px;
  }
  .mobile-nav-open .main-nav {
    inset: 67px 0 0 0;
    background: var(--teal);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 14px 16px 24px;
    gap: 6px;
  }
  .mobile-nav-open .main-nav a {
    color: var(--mist);
    font-size: 18px;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid rgba(238, 251, 250, 0.18);
    border-radius: 0;
    justify-content: space-between;
  }
  .mobile-nav-open .main-nav a:hover,
  .mobile-nav-open .main-nav a:focus-visible {
    background: transparent;
  }
  .mobile-nav-open .main-nav svg {
    color: var(--mist);
  }
}
.site-breadcrumbs {
  background: rgba(0, 157, 165, 0.15);
  border-top: 1px solid rgba(0, 157, 165, 0.08);
  border-bottom: 1px solid rgba(0, 157, 165, 0.08);
}

.site-breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 7px 0;
  list-style: none;
}

.site-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-breadcrumbs__link,
.site-breadcrumbs__current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1;
}

.site-breadcrumbs__link {
  color: var(--ink);
}

.site-breadcrumbs__current {
  color: var(--teal);
  font-weight: 600;
}

.site-breadcrumbs__separator,
.site-breadcrumbs__home-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: var(--ink);
}

.site-breadcrumbs__separator svg,
.site-breadcrumbs__home-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 700px) {
  .site-breadcrumbs__list {
    gap: 8px;
    padding: 9px 0;
  }
}
@media (max-width: 560px) {
  .site-breadcrumbs__item {
    gap: 8px;
  }
  .site-breadcrumbs__separator,
  .site-breadcrumbs__home-icon {
    width: 14px;
    height: 14px;
  }
}
.ghost-btn,
.primary-chip,
.soft-chip,
.icon-btn,
.primary-link,
.secondary-link,
.report-link,
.newsletter-form button {
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ghost-btn,
.primary-chip,
.soft-chip {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.ghost-btn {
  color: var(--teal);
  background: transparent;
}

.primary-chip {
  color: #eef5ee;
  background: var(--teal);
}

.soft-chip {
  color: var(--ink);
  background: var(--mist);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--ink);
  background: transparent;
  position: relative;
  cursor: pointer;
}

.icon-btn::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 1.7px solid var(--ink);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
}

.icon-btn::after {
  content: "";
  width: 6px;
  height: 1.7px;
  background: var(--ink);
  position: absolute;
  right: 7px;
  bottom: 9px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
  order: 10;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger-btn[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 480px) {
  .hamburger-btn {
    display: flex;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    gap: 4px;
    background: transparent;
  }
  .hamburger-btn span {
    height: 2px;
    background: var(--mist);
    border-radius: 999px;
  }
  .mobile-nav-open .hamburger-btn span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .mobile-nav-open .hamburger-btn span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-open .hamburger-btn span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
.site-footer {
  background: linear-gradient(98deg, #2c989d 2%, #187d82 61%, #33b6bd 104%);
  color: var(--mist);
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  gap: 48px;
}

.footer-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(238, 251, 250, 0.14);
}

.footer-stat-block {
  padding: 16px 18px 20px;
  text-align: center;
  border-radius: 14px;
  background: rgba(238, 251, 250, 0.1);
  border: 1px solid rgba(238, 251, 250, 0.2);
}

.footer-stat-icon {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
}

.footer-stat-big {
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 8px;
  color: white;
}

.footer-stat-block strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
}

.footer-stat-block span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.9;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-logo {
  width: 118px;
  margin-bottom: 24px;
}

.contact-list,
.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 8px;
}

.footer-columns ul li {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.contact-no-icon {
  padding-left: 28px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-col-title {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 500;
}

.footer-columns a,
.footer-brand-col p,
.contact-list li,
.footer-columns li {
  color: rgba(238, 251, 250, 0.9);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.footer-brand-col p {
  font-size: 16px;
  font-weight: 300;
}

.contact-list li {
  font-size: 16px;
  font-weight: 400;
}

.footer-social {
  margin-top: 28px;
}

.footer-social p {
  margin: 0 0 12px;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(238, 251, 250, 0.9);
  transition: transform 0.2s;
}

.social-icon img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(238, 251, 250, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(238, 251, 250, 0.78);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.footer-bottom p {
  margin: 0;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

@media (max-width: 820px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
  .footer-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 780px) {
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }
  .legal-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-highlights {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .site-footer {
    padding: 40px 0 20px;
  }
  .footer-top {
    gap: 32px;
  }
  .footer-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    padding-bottom: 20px;
  }
  .footer-stat-block {
    height: 117px;
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer-stat-icon {
    margin-bottom: 6px;
  }
  .footer-stat-block strong {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .footer-stat-block span {
    font-size: 14px;
  }
  .footer-stat-big {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 4px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-brand-col {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(238, 251, 250, 0.1);
  }
  .footer-logo {
    width: 118px;
    margin-bottom: 20px;
  }
  .footer-brand-col p {
    font-size: 16px;
    line-height: 24px;
    max-width: 311px;
    margin: 0 0 20px;
  }
  .contact-list {
    margin-top: 0;
    gap: 6px;
  }
  .contact-list li {
    font-size: 16px;
    line-height: 24px;
  }
  .footer-columns > div:not(.footer-brand-col) {
    padding-top: 24px;
  }
  .footer-col-title {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
  }
  .footer-columns ul {
    margin: 0;
    gap: 0;
  }
  .footer-columns ul li {
    min-height: 44px;
  }
  .footer-columns a {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
  }
  .footer-social {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(238, 251, 250, 0.1);
  }
  .footer-social p {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 500;
  }
  .social-links {
    gap: 8px;
  }
  .social-icon {
    width: 44px;
    height: 44px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 32px;
  }
  .footer-bottom p {
    font-size: 14px;
  }
  .legal-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }
}
.stat-tab:hover,
.primary-link:hover,
.secondary-link:hover,
.report-link:hover,
.newsletter-form button:hover,
.ghost-btn:hover,
.primary-chip:hover,
.soft-chip:hover,
.guide-card:hover,
.story-card:hover,
.explore-card:hover,
.social-icon:hover,
.icon-btn:hover {
  transform: translateY(-1px);
}

.stat-tab:focus-visible,
.main-nav a:focus-visible,
.primary-link:focus-visible,
.secondary-link:focus-visible,
.report-link:focus-visible,
.newsletter-form button:focus-visible,
.newsletter-form input:focus-visible,
.search-shell input:focus-visible,
.search-shell button:focus-visible,
.header-actions button:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 3px;
}

.hero {
  padding: 26px 0 74px;
  background: var(--hero-surface);
}

.hero .shell {
  width: min(1276px, 100% - 32px);
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: 610px 648px;
  gap: 18px;
  align-items: start;
  min-height: 665px;
  overflow: visible;
}

.hero-frame {
  position: absolute;
  inset: 0;
  background: url("/assets/images/hero-frame.svg") center/100% 100% no-repeat;
  pointer-events: none;
  z-index: 2;
}

.hero-copy {
  padding: 36px 0 0;
  position: relative;
  z-index: 1;
}

.hero-copy-frame {
  position: relative;
  width: 610px;
  min-height: 404px;
  padding: 100px 56px 52px 72px;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Arno Pro", "Arno Pro Display", var(--serif);
  font-weight: 700;
  line-height: 75px;
  letter-spacing: -0.02em;
  max-width: 445px;
  color: var(--teal);
  font-size: 70px;
}

.hero-image-wrap {
  position: relative;
  width: 648px;
  height: 665px;
  overflow: hidden;
  padding-top: 0;
  z-index: 1;
}

.hero-photo {
  position: absolute;
  width: 192.28%;
  height: 151.08%;
  max-width: none;
  left: -31.17%;
  top: -38.44%;
  object-fit: fill;
}

.hero-photo--desktop {
  display: block;
}

.hero-photo--mobile {
  display: none;
}

.hero-stats {
  width: 558px;
  margin-top: -220px;
  position: relative;
  z-index: 2;
}

.hero-stats-left {
  width: 558px;
  flex-shrink: 0;
}

.stat-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.stat-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(54, 51, 51, 0.7);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.stat-tab.is-active {
  padding-left: 14px;
  padding-right: 14px;
  border: 2px solid var(--teal);
  background: transparent;
}

.stat-value {
  margin: 0;
  color: var(--teal);
  font-family: "Arno Pro Display", "Arno Pro", var(--serif);
  font-weight: 600;
  font-style: normal;
  font-size: 107px;
  line-height: 80px;
  letter-spacing: -0.03em;
}

.stat-label {
  margin: 0;
  font-size: 25px;
  line-height: 36px;
  color: var(--ink);
}

.collection-card {
  position: absolute;
  right: 54px;
  bottom: 39px;
  width: 328px;
  min-height: 164px;
  padding: 26px 34px 15px 27px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--mist);
  border-radius: 15px;
  box-shadow: 0 4px 11.3px rgba(0, 0, 0, 0.15);
  background: linear-gradient(1.584deg, rgba(0, 0, 0, 0.45) 11.486%, rgba(92, 92, 92, 0.294) 124.4%);
  flex-shrink: 0;
  z-index: 3;
}

.collection-title {
  margin: 0 0 18px;
  width: 267px;
  font-size: 24px;
  line-height: 20px;
  font-weight: 700;
  text-align: left;
}

.collection-meta {
  display: flex;
  width: 182px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.collection-meta span {
  font-size: 10px;
  line-height: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.collection-values {
  display: flex;
  width: 267px;
  gap: 39px;
  align-items: center;
}

.collection-values strong {
  display: block;
  min-width: 114px;
  font-family: "Arno Pro", "Arno Pro Display", var(--serif);
  font-size: 65px;
  line-height: 65px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1320px) and (min-width: 821px) {
  .hero .shell {
    width: min(100% - 32px, 1180px);
  }
  .hero-stage {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
    gap: clamp(18px, 2.4vw, 30px);
    min-height: clamp(470px, 52vw, 665px);
  }
  .hero-copy {
    padding-top: clamp(18px, 2.8vw, 36px);
  }
  .hero-copy-frame {
    width: 100%;
    min-height: clamp(300px, 31vw, 404px);
    padding: clamp(88px, 9vw, 122px) clamp(32px, 4vw, 56px) clamp(40px, 4vw, 52px) clamp(42px, 5vw, 72px);
  }
  .hero-copy h1 {
    max-width: min(100%, 445px);
    font-size: clamp(52px, 5.7vw, 70px);
    line-height: 0.98;
  }
  .hero-image-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 648/665;
  }
  .hero-photo--desktop {
    inset: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
  }
  .hero-stats {
    width: clamp(390px, 58vw, 558px);
    margin-top: clamp(-220px, -18vw, -132px);
  }
  .hero-stats-left {
    width: 100%;
    max-width: 100%;
  }
  .stat-tabs {
    gap: 8px;
    margin-bottom: clamp(18px, 2vw, 25px);
  }
  .stat-tab {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 13px;
  }
  .stat-value {
    font-size: clamp(72px, 9.2vw, 107px);
    line-height: 0.9;
  }
  .stat-label {
    margin-top: clamp(16px, 1.8vw, 25px);
    font-size: clamp(20px, 2.2vw, 25px);
    line-height: 1.3;
  }
  .collection-card {
    right: clamp(32px, 4.2vw, 54px);
    bottom: clamp(20px, 5.9%, 39px);
    width: clamp(230px, 29vw, 328px);
    min-height: clamp(138px, 15vw, 164px);
    padding: clamp(20px, 2vw, 26px) clamp(22px, 2.5vw, 34px) clamp(12px, 1.5vw, 15px) clamp(20px, 2vw, 27px);
  }
  .collection-title {
    width: 100%;
    margin-bottom: clamp(12px, 1.5vw, 18px);
    font-size: clamp(20px, 2vw, 24px);
  }
  .collection-meta {
    width: min(100%, 182px);
  }
  .collection-values {
    width: 100%;
    gap: clamp(20px, 2.4vw, 39px);
    justify-content: space-between;
  }
  .collection-values strong {
    min-width: auto;
    font-size: clamp(48px, 5vw, 65px);
    line-height: 1;
  }
}
@media (max-width: 820px) {
  .hero-stage {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: unset;
  }
  .hero-frame {
    display: none;
  }
  .hero-stats {
    width: 100%;
    margin-top: 28px;
  }
  .collection-card {
    position: absolute;
    right: 18px;
    bottom: 22px;
  }
}
@media (max-width: 780px) {
  .hero-copy {
    padding-top: 12px;
  }
  .hero-copy-frame {
    width: 100%;
    min-height: 248px;
    padding: 78px 24px 30px 34px;
  }
  .hero-image-wrap {
    width: 100%;
    height: 340px;
    min-height: 340px;
    padding-top: 0;
  }
  .hero-photo {
    width: 192.28%;
    height: 151.08%;
  }
  .hero-photo--desktop {
    display: none;
  }
  .hero-photo--mobile {
    display: block;
  }
  .collection-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -80px 16px 0 auto;
  }
  .hero-copy h1 {
    font-size: clamp(3.2rem, 11vw, 4.5rem);
    line-height: 0.95;
  }
  .stat-value {
    font-size: clamp(4rem, 12vw, 6rem);
    line-height: 0.9;
  }
  .stat-label {
    font-size: clamp(1.15rem, 4vw, 1.55rem);
    line-height: 1.35;
  }
  .stat-tabs {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 0;
    background: black;
  }
  .hero .shell {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .hero-stage {
    position: relative;
    grid-template-columns: 1fr;
    min-height: 374px;
    gap: 0;
  }
  .hero-frame {
    display: none;
  }
  .hero-image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 1;
    overflow: hidden;
  }
  .hero-photo {
    width: 172%;
    height: 146%;
    left: -11%;
    top: -9%;
    object-fit: cover;
  }
  .hero-photo--desktop {
    display: none;
  }
  .hero-photo--mobile {
    display: block;
  }
  .hero-copy {
    position: relative;
    z-index: 2;
    padding: 27px 16px 116px;
  }
  .hero-copy-frame {
    width: 100%;
    min-height: auto;
    padding: 0 78px 0 29px;
    background: none;
  }
  .hero-copy h1 {
    font-size: 40px;
    line-height: 40px;
    color: var(--mist);
    max-width: 253px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 18px;
    margin-top: 0;
    padding: 36px 0 0;
    align-items: center;
    text-align: center;
    background: transparent;
  }
  .hero-stats-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .stat-tabs {
    display: none;
  }
  .stat-value {
    font-size: 65px;
    line-height: 53px;
    text-align: center;
    width: 100%;
  }
  .stat-label {
    font-size: 17px;
    line-height: 17px;
    text-align: center;
    margin-top: 20px;
    max-width: 374px;
  }
  .collection-card {
    width: 328px;
    max-width: 100%;
    background: var(--teal);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 11.3px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    padding: 20px 28px 16px;
    margin: 0 auto;
    position: static;
  }
  .collection-title {
    font-size: 24px;
    line-height: 20px;
    margin-bottom: 14px;
    text-align: left;
  }
  .collection-values {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
  .collection-values strong {
    font-size: 65px;
    line-height: 65px;
    min-width: auto;
  }
  .collection-meta {
    width: 100%;
    justify-content: space-between;
    padding: 0 1px;
  }
}
.guide-band {
  background: linear-gradient(180deg, #10a9b2 0%, #0d9da6 100%);
  padding: 42px 0 46px;
  position: relative;
  z-index: 1;
}

.guide-inner {
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.eyebrow img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.eyebrow.light {
  color: var(--mist);
}

.search-shell {
  position: relative;
  margin-bottom: 12px;
}

.search-shell input {
  width: 100%;
  height: 60px;
  padding: 0 76px 0 24px;
  border-radius: var(--radius-pill);
  border: 0;
  background: rgba(6, 6, 6, 0.3);
  color: var(--mist);
  font-size: 18px;
}

.search-shell input::placeholder {
  color: rgba(238, 251, 250, 0.85);
}

.search-shell button {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(238, 251, 250, 0.2);
  color: var(--mist);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.search-shell button img {
  width: 20px;
  height: 20px;
}

.guide-tip {
  margin: 0;
  font-size: 16px;
  color: rgba(238, 251, 250, 0.88);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.guide-tip img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.guide-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.guide-card {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 24px;
  border-radius: 15px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.2s;
}

.guide-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.guide-card-top img:first-child {
  width: 40px;
  height: 40px;
}

.guide-card-top .guide-arrow-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.7;
}

.guide-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.guide-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 780px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .guide-band {
    padding: 29px 0 60px;
    background: var(--teal);
  }
  .guide-inner {
    width: min(100% - 32px, 362px);
  }
  .guide-head {
    width: 100%;
  }
  .eyebrow.light {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
  }
  .eyebrow img {
    width: 20px;
    height: 20px;
  }
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 16px;
  }
  .guide-card {
    min-height: 149px;
    padding: 12px 13px 16px;
    border-radius: 15px;
    background: rgba(238, 251, 250, 0.7);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  }
  .guide-card-top {
    margin-bottom: 8px;
  }
  .guide-card-top img:first-child {
    width: 31px;
    height: 31px;
  }
  .guide-card-top .guide-arrow-icon {
    width: 16px;
    height: 16px;
    opacity: 1;
  }
  .guide-card h2 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 28px;
  }
  .guide-card p {
    font-size: 12px;
    line-height: 19px;
    max-width: 130px;
  }
  .search-shell {
    margin-bottom: 16px;
  }
  .search-shell input {
    height: 63px;
    font-size: 18px;
    padding: 0 74px 0 24px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--mist);
  }
  .search-shell button {
    right: 11px;
    top: 10px;
    width: 44px;
    height: 44px;
    background: rgba(238, 251, 250, 0.3);
  }
  .guide-tip {
    max-width: 280px;
    font-size: 16px;
    line-height: 24px;
  }
}
.news-section {
  background: var(--mist);
  padding: 80px 0 74px;
  position: relative;
  z-index: 1;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}

.section-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.section-link img {
  width: 20px;
  height: 20px;
}

.section-head h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
}

.section-head a {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.section-head.no-link {
  margin-bottom: 22px;
}

.story-card {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s;
}

.story-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.feature-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #c9eaed;
}

.story-media {
  overflow: hidden;
}

.story-media img,
.story-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-highlight {
  padding: 120px 48px 48px;
  background: rgba(200, 234, 237, 0.6);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}

.pill img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pill.solid {
  background: var(--teal);
  color: var(--mist);
}

.pill.outline {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.pill.pale {
  background: var(--mist);
  color: var(--ink);
}

.story-body {
  padding: 22px 24px 20px;
  background: rgba(0, 157, 165, 0.14);
}

.story-body h3 {
  margin: 14px 0 10px;
  font-size: 19px;
  line-height: 1.25;
}

.story-highlight h3 {
  margin: 18px 0 20px;
  font-size: 36px;
  line-height: 40px;
  font-family: var(--sans);
  font-weight: 700;
}

.story-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

.story-highlight p {
  max-width: 480px;
  font-size: 18px;
  line-height: 1.55;
}

.story-highlight a,
.story-meta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
}

.story-meta {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
}

.news-grid {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

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

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

.news-mobile-grid,
.news-mobile-cta {
  display: none;
}

.compact,
.small {
  background: #c9eaed;
}

.compact > img,
.small > img {
  height: 194px;
  object-fit: cover;
}

@media (max-width: 820px) {
  .feature-story,
  .news-grid.two-up,
  .news-grid.three-up {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 780px) {
  .story-highlight {
    padding: 28px 24px;
  }
  .story-highlight h3 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .news-section {
    padding: 32px 0 40px;
  }
  .news-section .shell {
    width: min(100% - 38px, 354px);
  }
  .news-section .section-head {
    margin-bottom: 18px;
  }
  .news-section .section-title-row {
    gap: 8px;
    align-items: center;
  }
  .news-section .section-icon {
    width: 24px;
    height: 24px;
  }
  .news-section .section-head h2 {
    font-size: 24px;
  }
  .section-link {
    display: none;
  }
  .feature-story {
    grid-template-columns: 1fr;
    border-radius: 16px;
    background: transparent;
  }
  .story-media img {
    height: 160px;
  }
  .feature-story .story-media {
    border-radius: 15px 15px 0 0;
  }
  .story-highlight {
    padding: 20px 20px 24px;
    background: rgba(0, 157, 165, 0.2);
  }
  .story-highlight h3 {
    font-size: 20px;
    line-height: 25px;
    margin: 12px 0 10px;
  }
  .story-highlight p {
    font-size: 16px;
    line-height: 26px;
    max-width: 308px;
  }
  .story-highlight a {
    font-size: 16px;
    color: var(--teal);
    margin-top: 12px;
  }
  .news-grid.two-up,
  .news-grid.three-up {
    display: none;
  }
  .news-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 15px;
  }
  .news-mobile-card {
    border-radius: 15px;
    background: rgba(0, 157, 165, 0.2);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .news-mobile-card img {
    width: 100%;
    height: 156px;
    object-fit: cover;
    display: block;
  }
  .news-mobile-card .story-body {
    min-height: 122px;
    padding: 14px 16px 16px;
    background: rgba(0, 157, 165, 0.2);
  }
  .news-mobile-card .pill {
    min-height: 30px;
    padding: 0 12px;
    font-size: 12px;
  }
  .news-mobile-card h3 {
    font-size: 15px;
    line-height: 20px;
    margin: 14px 0 0;
  }
  .news-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    margin-top: 24px;
    border-radius: var(--radius-pill);
    background: var(--teal);
    color: var(--mist);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: 600;
  }
  .news-mobile-cta .link-arrow {
    filter: brightness(0) invert(1);
  }
  .story-card {
    border-radius: 16px;
  }
  .story-card.compact,
  .story-card.small {
    border-radius: 15px;
  }
  .compact > img,
  .small > img {
    height: 120px;
  }
  .story-body {
    padding: 14px 16px 16px;
  }
  .story-body h3 {
    font-size: 15px;
    line-height: 20px;
    margin: 8px 0 0;
  }
  .story-body p,
  .story-meta {
    display: none;
  }
}
.action-stack {
  padding: 70px 0;
  display: grid;
  gap: 28px;
}

.surface-card {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.pickup-card {
  background: rgba(238, 251, 250, 0.9);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 504px;
  gap: 38px;
  padding: 48px 80px;
}

.pickup-main h2 {
  margin: 20px 0 0;
  font-family: "Arno Pro", "Arno Pro Display", var(--serif);
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-size: 55px;
}

.pickup-main p {
  max-width: 480px;
  margin: 16px 0 0;
  font-size: 20px;
  line-height: 1.4;
}

.pickup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.primary-link,
.secondary-link,
.report-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.primary-link,
.report-link {
  background: var(--teal);
  color: var(--mist);
  gap: 8px;
}

.primary-link img,
.report-link img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.secondary-link {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.pickup-benefits {
  display: grid;
  gap: 16px;
  align-content: start;
}

.benefit-item {
  background: rgba(0, 157, 165, 0.2);
  border-radius: 15px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: var(--mist);
  display: grid;
  place-items: center;
  color: var(--ink);
}

.benefit-text h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.benefit-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.report-card {
  background: rgba(238, 251, 250, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 48px;
  border-radius: 30px;
}

.report-card h2 {
  font-family: "Arno Pro", "Arno Pro Display", var(--serif);
  font-size: 55px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 20px 0 0;
}

.report-card .pill {
  margin-bottom: 8px;
}

.report-card p {
  max-width: 843px;
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .pickup-card {
    grid-template-columns: 1fr;
  }
  .report-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 780px) {
  .pickup-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .pickup-card,
  .report-card {
    padding: 28px 24px;
  }
  .pickup-main h2,
  .report-card h2 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  .report-link,
  .primary-link,
  .secondary-link {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .action-stack {
    padding: 40px 0;
    gap: 20px;
  }
  .surface-card {
    border-radius: 15px;
  }
  .pickup-card {
    padding: 24px 16px;
    gap: 24px;
  }
  .pickup-main .pill {
    background: var(--mist);
    color: var(--teal);
    border: none;
    font-size: 14px;
  }
  .pickup-main h2 {
    font-size: 30px;
    line-height: 36px;
    margin-top: 16px;
  }
  .pickup-main p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 15px;
  }
  .pickup-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }
  .primary-link,
  .secondary-link {
    width: 100%;
    min-height: 56px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    justify-content: center;
  }
  .primary-link {
    background: var(--mist);
    color: var(--teal);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  }
  .secondary-link {
    background: var(--mist);
    color: var(--teal);
    border-color: transparent;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  }
  .benefit-item {
    padding: 17px;
    border-radius: 15px;
    gap: 16px;
  }
  .benefit-text h3 {
    font-size: 18px;
  }
  .benefit-text p {
    font-size: 16px;
    line-height: 26px;
  }
  .report-card {
    padding: 24px 17px;
    border-radius: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
  .report-card h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .report-card p {
    font-size: 16px;
    line-height: 24px;
  }
  .report-link {
    width: 100%;
    min-height: 47px;
    font-size: 16px;
    border-radius: var(--radius-pill);
  }
}
.explore-section {
  background: var(--mist);
  padding: 0 0 68px;
  position: relative;
  z-index: 1;
}

.explore-section .section-head,
.explore-section-head {
  padding-top: 60px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.explore-card {
  min-height: 264px;
  background: rgba(0, 157, 165, 0.2);
  color: var(--ink);
  padding: 34px;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s;
}

.explore-card--mobile-only {
  display: none;
}

.explore-card h3 {
  margin: 16px 0 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.explore-card p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.5;
}

.explore-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 700;
  font-size: 16px;
}

.link-arrow {
  width: 20px;
  height: 20px;
}

.explore-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.explore-icon img {
  width: 48px;
  height: 48px;
}

@media (max-width: 820px) {
  .explore-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 780px) {
  .explore-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .explore-section {
    padding: 12px 0 45px;
  }
  .explore-section .section-head,
  .explore-section-head {
    padding-top: 0;
    margin-bottom: 10px;
  }
  .explore-section-head .section-title-row {
    gap: 8px;
    align-items: flex-start;
  }
  .explore-section .shell {
    width: min(100% - 46px, 349px);
  }
  .explore-section .section-icon {
    width: 24px;
    height: 24px;
    margin-top: 4px;
  }
  .explore-section-head h2 {
    font-size: 24px;
    line-height: 32px;
    max-width: 318px;
  }
  .explore-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    justify-content: center;
  }
  .explore-card {
    min-height: 219px;
    padding: 19px;
    border-radius: 15px;
    background: rgba(0, 157, 165, 0.15);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .explore-card h3 {
    font-size: 15px;
    line-height: 20px;
    margin: 12px 0 8px;
  }
  .explore-card p {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 14px;
    max-width: 135px;
  }
  .explore-card a {
    margin-top: auto;
    font-size: 14px;
  }
  .explore-icon,
  .explore-icon img {
    width: 40px;
    height: 40px;
  }
  .explore-card--mobile-only {
    display: flex;
  }
}
.newsletter-band {
  position: relative;
  min-height: 580px;
  color: var(--mist);
}

.newsletter-backdrop {
  position: absolute;
  inset: 0;
}

.newsletter-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 20, 20, 0.58), rgba(28, 20, 20, 0.18));
}

.newsletter-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-shell {
  position: relative;
  padding: 80px 0;
}

.newsletter-card {
  min-height: 418px;
  padding: 50px 70px;
  border: 6px solid var(--mist);
  width: min(1268px, 100%);
}

.newsletter-card h2 {
  margin: 18px 0 0;
  font-family: "Arno Pro Display", "Arno Pro", var(--serif);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--warm);
  font-size: 70px;
}

.newsletter-card p {
  max-width: 479px;
  font-size: 20px;
  margin: 24px 0 0;
  line-height: 1.4;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 38px;
  max-width: 660px;
}

.newsletter-form input {
  flex: 1;
  min-height: 56px;
  padding: 0 30px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--mist);
  background: var(--mist);
  color: var(--ink);
  font-size: 18px;
}

.newsletter-form button {
  min-width: 185px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--mist);
  background: transparent;
  color: var(--mist);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.newsletter-form button img {
  width: 16px;
  height: 16px;
}

@media (max-width: 820px) {
  .newsletter-card {
    padding-right: 48px;
  }
}
@media (max-width: 780px) {
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter-card {
    padding: 28px 24px;
  }
  .newsletter-card h2 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  .newsletter-form button {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .newsletter-band {
    min-height: 581px;
  }
  .newsletter-shell {
    padding: 27px 0 26px;
  }
  .newsletter-card {
    width: min(354px, 100%);
    margin: 0 auto;
    padding: 28px 24px 27px;
    border-width: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 528px;
    justify-content: flex-start;
    background: transparent;
  }
  .newsletter-card .pill {
    align-self: center;
    min-height: 36px;
    padding: 0 16px;
  }
  .newsletter-card h2 {
    font-size: 45px;
    line-height: 36px;
    margin-top: 30px;
    max-width: 100%;
  }
  .newsletter-card p {
    font-size: 20px;
    line-height: 25px;
    margin-top: 15px;
    max-width: 304px;
  }
  .newsletter-form {
    flex-direction: column;
    width: 100%;
    max-width: 292px;
    margin-top: auto;
  }
  .newsletter-form input {
    min-height: 56px;
    padding: 0 30px;
    font-size: 18px;
    text-align: left;
    border-width: 1.736px;
    border-color: rgba(238, 251, 250, 0.4);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
  .newsletter-form button {
    min-height: 56px;
    min-width: unset;
    width: 100%;
    border: 2px solid var(--mist);
    font-size: 18px;
    font-weight: 600;
    gap: 10px;
  }
  .newsletter-form button img {
    width: 16px;
    height: 16px;
  }
}
.deposit-system-page {
  padding: 26px 0 72px;
}

.deposit-system-page__hero {
  margin: 46px auto 42px;
}

.deposit-system-page__hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 530px);
  column-gap: 72px;
  align-items: start;
  min-height: 430px;
  padding: 76px 52px 52px 74px;
}

.deposit-system-page__frame {
  position: absolute;
  top: 36px;
  left: 6px;
  right: 0;
  bottom: 0;
  background: url("/assets/images/deposit-system/hero-frame.svg") center/100% 100% no-repeat;
  pointer-events: none;
  z-index: 3;
}

.deposit-system-page__hero-stage--single-column {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
}

.deposit-system-page__intro {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 608px;
}

.deposit-system-page__intro h1 {
  margin: 0;
  max-width: none;
  color: var(--teal);
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(46px, 4.4vw, 55px);
  font-weight: 700;
  line-height: 1.1;
}

.deposit-system-page__intro p {
  max-width: 608px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
}

.deposit-system-page__media {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 530px;
  height: 416px;
  margin-top: -82px;
  justify-self: end;
  overflow: hidden;
}

.deposit-system-page__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.deposit-system-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 25px;
}

.deposit-system-card {
  min-height: 180px;
  padding: 26px;
  border-radius: 15px;
  background: #009da5;
  color: #fff;
}

.deposit-system-card--link {
  display: block;
}

.deposit-system-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
  margin-bottom: 16px;
}

.deposit-system-card__icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.deposit-system-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.deposit-system-card__arrow img {
  width: 20px;
  height: 20px;
}

.deposit-system-card h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.deposit-system-card p {
  max-width: 278px;
  margin: 12px 0 0;
  color: rgba(238, 251, 250, 0.94);
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .deposit-system-page__hero {
    margin: 36px auto 32px;
  }
  .deposit-system-page__hero-stage {
    width: auto;
    min-height: 0;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 0.92fr);
    gap: 22px;
    padding: 68px 24px 22px;
  }
  .deposit-system-page__frame {
    top: 18px;
    left: 0;
    right: 0;
    height: calc(100% - 52px);
  }
  .deposit-system-page__intro {
    width: 100%;
  }
  .deposit-system-page__media {
    width: min(100%, 460px);
    height: 340px;
    margin-top: -28px;
    justify-self: end;
  }
  .deposit-system-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .deposit-system-page {
    padding: 18px 0 72px;
  }
  .deposit-system-page__hero {
    margin-bottom: 24px;
  }
  .deposit-system-page__hero-stage {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 56px 16px 28px;
  }
  .deposit-system-page__frame {
    top: 14px;
    left: 0;
    right: 0;
    bottom: 18px;
  }
  .deposit-system-page__intro {
    max-width: none;
    padding: 0;
  }
  .deposit-system-page__intro h1 {
    max-width: none;
    font-size: clamp(40px, 12vw, 52px);
  }
  .deposit-system-page__intro p {
    font-size: 18px;
  }
  .deposit-system-page__media {
    width: 100%;
    justify-self: start;
    height: auto;
    margin-top: 0;
  }
  .deposit-system-page__media img {
    aspect-ratio: 1.35/1;
  }
  .deposit-system-page__grid {
    gap: 18px;
  }
}
@media (max-width: 560px) {
  .deposit-system-page__grid {
    grid-template-columns: 1fr;
  }
  .deposit-system-card {
    min-height: 0;
  }
}
.news-overview-page {
  padding: 26px 0 80px;
}

.news-overview-page__hero {
  position: relative;
  margin: 46px auto 52px;
  padding: 64px 74px 56px;
  min-height: 240px;
}

.news-overview-page__frame {
  position: absolute;
  top: 36px;
  left: 6px;
  right: 0;
  bottom: 0;
  background: url("/assets/images/deposit-system/hero-frame.svg") center/100% 100% no-repeat;
  pointer-events: none;
  z-index: 0;
}

.news-overview-page__intro {
  position: relative;
  z-index: 1;
  max-width: 540px;
}
.news-overview-page__intro h1 {
  margin: 0;
  color: var(--teal);
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(42px, 4vw, 55px);
  font-weight: 700;
  line-height: 1.1;
}
.news-overview-page__intro p {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
  max-width: 440px;
}

.news-overview-page__featured-wrap {
  margin-bottom: 64px;
}

.news-overview-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-radius: 30px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-card);
}
.news-overview-featured:hover .news-overview-readmore {
  gap: 10px;
}

.news-overview-featured__media {
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.news-overview-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-overview-featured__body {
  background: var(--teal);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-overview-featured__body .pill.solid-inverted {
  align-self: flex-start;
  background: rgba(238, 251, 250, 0.2);
  color: var(--mist);
  border: none;
  margin-bottom: 20px;
}
.news-overview-featured__body h2 {
  margin: 0 0 16px;
  color: var(--mist);
  font-family: var(--sans);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
}
.news-overview-featured__body > p {
  margin: 0 0 24px;
  color: var(--mist);
  font-size: 18px;
  line-height: 1.55;
  flex: 1;
}

.news-overview-featured__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}
.news-overview-featured__meta .news-overview-date {
  color: var(--mist);
  font-size: 16px;
  font-weight: 500;
}
.news-overview-featured__meta .news-overview-readmore {
  color: var(--mist);
  font-size: 16px;
  font-weight: 600;
}

.news-overview-date {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal);
  white-space: nowrap;
}

.news-overview-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
  transition: gap 0.15s ease;
}
.news-overview-readmore svg {
  flex-shrink: 0;
}

.news-overview-page__spotlight-wrap {
  margin-bottom: 64px;
}

.news-overview-section-title {
  margin: 0 0 28px;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
}

.news-overview-spotlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: rgba(0, 157, 165, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.news-card:hover .news-overview-readmore {
  gap: 10px;
}

.news-card__media {
  background: var(--mist);
  height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.news-card__body h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}

.news-card--grid .news-card__body {
  gap: 0;
}
.news-card--grid .news-card__body .pill {
  align-self: flex-start;
  margin-bottom: 12px;
}
.news-card--grid .news-card__body h3 {
  margin-bottom: 8px;
}

.news-card__ingress {
  margin: 0 0 auto;
  font-size: 16px;
  line-height: 1.625;
  color: var(--ink);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-bottom: 12px;
}

.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 157, 165, 0.15);
  margin-top: auto;
}

.news-overview-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.news-filter-btn {
  appearance: none;
  border: 2px solid var(--mist);
  background: var(--mist);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  padding: 0 20px;
  height: 44px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.news-filter-btn:hover {
  border-color: var(--teal);
}
.news-filter-btn.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--mist);
}

.news-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news-overview-grid .news-card.is-hidden {
  display: none;
}

.news-overview-load-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.secondary-btn {
  appearance: none;
  background: none;
  border: 2px solid var(--teal);
  color: var(--teal);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  padding: 0 32px;
  height: 48px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.secondary-btn:hover {
  background: var(--teal);
  color: var(--mist);
}

@media (max-width: 900px) {
  .news-overview-featured {
    grid-template-columns: 1fr;
  }
  .news-overview-featured__media {
    height: 260px;
  }
  .news-overview-spotlight,
  .news-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .news-overview-page__hero {
    padding: 40px 24px 36px;
  }
  .news-overview-spotlight,
  .news-overview-grid {
    grid-template-columns: 1fr;
  }
  .news-overview-filters {
    gap: 8px;
  }
}
.news-article-page {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, rgba(238, 251, 250, 0.9) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.news-article-shell {
  max-width: 960px;
}

.news-article-backlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 700;
}

.news-article-header {
  margin-bottom: 28px;
}

.news-article-date {
  margin: 18px 0 10px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.news-article-header h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.news-article-ingress {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 21px;
  line-height: 1.55;
}

.news-article-media {
  background: #c9eaed;
}

.news-article-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.news-article-body {
  max-width: 720px;
  margin-top: 42px;
  font-size: 18px;
  line-height: 1.8;
}

.news-article-body > *:first-child {
  margin-top: 0;
}

.news-article-body > *:last-child {
  margin-bottom: 0;
}

.news-article-body h2,
.news-article-body h3,
.news-article-body h4 {
  margin: 2em 0 0.6em;
  line-height: 1.15;
}

.news-article-body p,
.news-article-body ul,
.news-article-body ol,
.news-article-body blockquote {
  margin: 0 0 1.2em;
}

.news-article-body a {
  color: var(--teal);
  text-decoration: underline;
}

.news-article-body img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

@media (max-width: 480px) {
  .news-article-page {
    padding: 48px 0 72px;
  }
  .news-article-header h1 {
    max-width: none;
  }
  .news-article-ingress,
  .news-article-body {
    font-size: 17px;
  }
}
