.nav {
  padding: 0 2.5vw;
}

.mono {
  font-family: var(--font-mono)
}

.container {
  max-width: 79.166vw;
  margin: 0 auto;
  padding: 0 3.125vw
}

.anchor-target {
  position: relative;
  top: -5.208vw;
  height: 0;
  overflow: hidden
}


.hero {
  position: relative;
  height: 100vh;
  min-height: 39.583vw;
  overflow: hidden;
  color: var(--c-text);
  background: #effefb;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(39.583vw 27.083vw at 18% 26%, rgba(28, 171, 163, 0.72), rgba(28, 171, 163, 0) 64%),
    radial-gradient(44.791vw 32.291vw at 85% 28%, rgba(28, 171, 163, 0.58), rgba(28, 171, 163, 0) 68%),
    radial-gradient(57.291vw 42.708vw at 50% 80%, rgba(28, 171, 163, 0.34), rgba(28, 171, 163, 0) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.96));
  filter: saturate(1.08) blur(0.625vw);
  z-index: 0;
}

.hero::after {
  content: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, .52) 68%, rgba(255, 255, 255, .72) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 75vw;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
  padding: 8.854vw 4.479vw 6.25vw 2.5vw;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.916vw;
  align-items: center;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.hero-visual {
  position: relative;
  min-height: 27.083vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  filter: saturate(1.12) contrast(1.15);
  mix-blend-mode: normal;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.52vw;
  padding: 0.416vw 0.833vw;
  border-radius: 52.031vw;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(0.52vw);
  font-family: var(--font-mono-legacy);
  font-size: 0.625vw;
  letter-spacing: 0.104vw;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--c-text) 80%, transparent);
  width: fit-content;
  margin-bottom: 1.458vw;
  border: 0.052vw solid var(--c-line);
}

.hero-tag .dot {
  width: 0.416vw;
  height: 0.416vw;
  border-radius: 50%;
  background: var(--c-accent-2);
  box-shadow: 0 0 0.625vw var(--c-accent-2);
  animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .35
  }
}

.hero-title {
  font-family: var(--font-serif-legacy);
  font-weight: 500;
  font-size: clamp(2.395vw, 6vw, 5vw);
  line-height: 1.02;
  letter-spacing: -0.078vw;
  color: var(--c-text);
  max-width: 64.583vw;
}

.hero-title .line {
  display: block
}

.hero-title .line.nowrap {
  white-space: nowrap
}

.hero-title .ch {
  display: inline-block;
  animation: blurIn .9s ease-out both
}

@keyframes blurIn {
  from {
    filter: blur(0.729vw);
    opacity: 0;
    transform: translateY(0.52vw)
  }

  to {
    filter: none;
    opacity: 1;
    transform: none
  }
}

.hero-sub {
  margin-top: 1.041vw;
  max-width: 39.583vw;
  font-size: 0.807vw;
  line-height: 1.75;
  color: var(--c-text-muted);
}

.hero-cta {
  margin-top: 1.77vw;
  display: flex;
  align-items: center;
  gap: 0.729vw;
  flex-wrap: wrap;
  justify-content: flex-start;
}


.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.52vw;
  padding: 0.729vw 2.083vw 0.729vw 1.354vw;
  min-height: 2.5vw;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.729vw;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--home-cta-grad);
  isolation: isolate;
  overflow: hidden;
  -webkit-clip-path: url(#homeCtaArrowShape);
  clip-path: url(#homeCtaArrowShape);
  box-shadow: none;
  transition: filter .25s, transform .2s;
  filter: drop-shadow(0 0.52vw 1.145vw rgba(15, 118, 110, .28));
}

.btn-primary:hover {
  filter: drop-shadow(0 0.625vw 1.354vw rgba(15, 118, 110, .34)) brightness(1.06);
  transform: translateY(-0.104vw);
}

.btn-primary:active {
  filter: drop-shadow(0 0.416vw 0.937vw rgba(15, 118, 110, .26)) brightness(.98)
}

.btn-primary:focus-visible {
  outline: 0.104vw solid #0f766e;
  outline-offset: 0.156vw;
}

.btn-primary .arr {
  width: 1.145vw;
  height: 1.145vw;
  border-radius: 50%;
  background: #fff;
  color: var(--home-cta-teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .2s;
}

.btn-primary:hover .arr {
  transform: translateX(0.208vw)
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.52vw;
  padding: 0.729vw 1.25vw;
  border-radius: 52.031vw;
  cursor: pointer;
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(0.52vw);
  border: 0.052vw solid var(--c-line);
  color: var(--c-text);
  font-size: 0.729vw;
  transition: background .25s, transform .2s;
}

.btn-ghost:hover {
  background: #fff;
  transform: translateY(-0.104vw)
}

.play-ico {
  width: 1.041vw;
  height: 1.041vw;
  border-radius: 50%;
  background: #fff;
  color: var(--c-accent);
  display: grid;
  place-items: center;
  font-size: 0.52vw
}


.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.562vw;
  z-index: 3;
  transform: translateX(-50%);
  color: color-mix(in srgb, var(--c-text) 55%, transparent);
  font-family: var(--font-mono);
  font-size: 0.572vw;
  letter-spacing: 0.156vw;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625vw;
  pointer-events: none;
}

.scroll-hint .mouse {
  width: 1.145vw;
  height: 1.875vw;
  border: 0.104vw solid color-mix(in srgb, var(--c-text) 28%, transparent);
  border-radius: 0.625vw;
  position: relative;
}

.scroll-hint .mouse::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.312vw;
  width: 0.156vw;
  height: 0.416vw;
  background: linear-gradient(180deg, var(--c-accent), var(--c-accent-2));
  border-radius: 0.104vw;
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translate(-50%, 0)
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 0.52vw)
  }
}


.home-content-canvas {
  background:
    radial-gradient(46.875vw 33.333vw at 12% 38%, rgba(0, 199, 209, 0.11), rgba(0, 199, 209, 0) 62%),
    radial-gradient(39.583vw 27.083vw at 18% 72%, rgba(0, 199, 209, 0.07), rgba(0, 199, 209, 0) 62%),
    radial-gradient(35.416vw 25vw at 85% 18%, rgba(0, 199, 209, 0.05), rgba(0, 199, 209, 0) 58%),
    linear-gradient(180deg, var(--c-bg) 0%, color-mix(in srgb, var(--c-accent) 4%, var(--c-bg)) 42%, var(--c-bg) 100%);
}


.brand-section {

  min-height: calc(100vh - 4.687vw);
  display: flex;
  align-items: center;
  padding: clamp(10.416vw, 18vh, 14.583vw) 0 clamp(9.375vw, 14vh, 13.541vw);
  background: transparent;
}

.brand-section .container {
  max-width: 87.5vw;
  padding-left: 1.458vw;
  padding-right: 1.458vw;
}

.brand-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 2.916vw;
  align-items: start;
}

.brand-copy {
  max-width: 33.333vw
}

.brand-head {
  margin: 0
}

.brand-kicker {
  font-family: var(--font-mono);
  font-size: 0.625vw;
  letter-spacing: 0.156vw;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.937vw;
  display: flex;
  align-items: center;
  gap: 0.625vw
}

.brand-kicker::before {
  content: "";
  width: 2.083vw;
  height: 0.078vw;
  background: var(--c-accent)
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.979vw;
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: 0.937vw;
  color: var(--c-text);
  letter-spacing: -.0.312vw;
}

.brand-title em {
  color: var(--c-accent);
  font-style: normal
}

.brand-lead {
  color: color-mix(in srgb, var(--c-text) 74%, transparent);
  font-size: 0.781vw;
  line-height: 1.7;
  max-width: 29.166vw;
}

.brand-cta {
  margin-top: 1.458vw
}

.brand-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(14.583vw, 1fr));
  gap: 1.041vw;
  align-items: stretch;
}

.b-card {
  position: relative;
  padding: 1.354vw 1.354vw;
  aspect-ratio: 1/1;
  min-height: auto;
  border-radius: 1.041vw;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s;
  box-shadow: 0 1.041vw 2.604vw -1.041vw color-mix(in srgb, var(--c-accent) 36%, transparent);
  cursor: pointer;
}

.b-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity .35s ease, transform .55s cubic-bezier(.2, .9, .2, 1);
  filter: saturate(1.05) contrast(1.02);
}

.b-card.c1::before {
  background-image: var(--img-bcard-1)
}

.b-card.c2::before {
  background-image: var(--img-bcard-2)
}

.b-card.c3::before {
  background-image: var(--img-bcard-3)
}

.b-card:hover {
  transform: translateY(-0.312vw);
  box-shadow: 0 1.562vw 3.645vw -1.041vw color-mix(in srgb, var(--c-accent) 45%, transparent)
}

.b-card:hover::before {
  opacity: .82;
  transform: scale(1.0)
}

.b-card.c1 {
  background: linear-gradient(135deg, var(--c-bgreen-1) 0%, color-mix(in srgb, var(--c-bgreen-1) 70%, #000) 100%)
}

.b-card.c2 {
  background: linear-gradient(135deg, var(--c-bgreen-2) 0%, color-mix(in srgb, var(--c-bgreen-2) 60%, #000) 100%)
}

.b-card.c3 {
  background: linear-gradient(135deg, var(--c-bgreen-3) 0%, color-mix(in srgb, var(--c-bgreen-3) 55%, #000) 100%)
}

.b-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 30, 40, .00), rgba(10, 30, 40, .28)),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, .22), transparent 60%);
}

.b-card>div {
  display: flex;
  flex-direction: column;
  height: 100%
}

.b-card .bc-title {
  font-family: var(--font-serif);
  font-size: 1.562vw;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.625vw;

  min-height: 2.4em;
}

.b-card .bc-desc {
  font-size: 0.833vw;
  line-height: 1.6;
  color: rgba(255, 255, 255, .86);
  margin: 0;
}

.b-card .bc-arrow {
  margin-top: auto;
  margin-bottom: 0.312vw;
  width: 2.291vw;
  height: 2.291vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background .25s, transform .25s;
}

.b-card:hover .bc-arrow {
  background: #fff;
  color: var(--c-accent);
  transform: translateX(0.312vw)
}


.products-section {
  padding: 6.25vw 0 7.291vw;
  background: transparent
}


.products-section .container {
  max-width: 87.5vw;
  padding-left: 1.458vw;
  padding-right: 1.458vw;
}

.products-section.portfolio-figma {
  background: transparent
}

.products-head {
  text-align: left;
  margin: 0 0 2.083vw 0;
  padding: 0
}

.products-head>* {
  margin-left: 0
}

.products-head h2 {
  font-family: var(--font-serif);
  font-size: 1.979vw;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.052vw;
  color: var(--c-text);
}

.products-head p {
  color: var(--c-text-muted);
  margin-top: 0.729vw;
  max-width: 37.5vw;
  font-size: 0.833vw
}

.portfolio-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.75vw;
  align-items: start;
  margin-top: 2.291vw;
}



.cat-list-outer {
  align-self: start;
  width: 100%;
  min-height: clamp(44.791vw, 70vh, 54.166vw);
}

.portfolio-visual {
  position: relative;
  aspect-ratio: 1/1;
  width: min(29.166vw, 42vw);
  border-radius: 520.781vw;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, rgba(0, 199, 209, 0.18), rgba(0, 199, 209, 0) 58%), rgba(10, 30, 40, 0.06);
  box-shadow: 0 2.083vw 5.208vw rgba(10, 30, 40, .14);
  outline: 0.052vw solid color-mix(in srgb, var(--c-accent-2) 85%, transparent);
  outline-offset: 0.729vw;
}

.portfolio-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  opacity: .92;
  transform-origin: 50% 50%;
}

.portfolio-visual.is-spinning img {
  animation: portfolioSpin 700ms cubic-bezier(.2, .9, .2, 1) both;
}

@keyframes portfolioSpin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.portfolio-visual.swap-out img {
  opacity: 0.12;
  transition: opacity 160ms ease
}

.portfolio-visual.swap-in img {
  opacity: 0.92;
  transition: opacity 220ms ease
}

.portfolio-visual .vignette {
  position: absolute;
  inset: -0.104vw;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.0) 48%, rgba(255, 255, 255, 0.78) 100%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.cat-list {
  border-top: 0.052vw solid rgba(0, 199, 209, 0.20)
}

.cat-row {
  display: grid;
  grid-template-columns: 1fr 2.291vw;
  gap: 0.937vw;
  align-items: center;
  padding: 1.354vw 0;
  border-bottom: 0.052vw solid rgba(0, 199, 209, 0.20);
  cursor: pointer;
  position: relative;
}

.cat-num {
  display: none
}

.cat-name {
  font-family: var(--font-sans);
  font-size: 1.145vw;
  font-weight: 500;
  color: #006469;
  letter-spacing: -0.01vw;
}

.cat-desc {
  display: none
}

.cat-toggle {
  width: 1.979vw;
  height: 1.979vw;
  border-radius: 52.031vw;
  border: 0.052vw solid rgba(0, 199, 209, 0.28);
  display: grid;
  place-items: center;
  color: #006469;
  transition: background .18s, border-color .18s, transform .18s, color .18s;
  margin-left: auto;
}

.cat-row:hover .cat-toggle {
  background: rgba(0, 199, 209, 0.10);
  border-color: rgba(0, 199, 209, 0.45);
  transform: translateY(-0.052vw)
}

.cat-row.open .cat-toggle {
  background: rgba(0, 199, 209, 0.14);
  border-color: rgba(0, 199, 209, 0.55)
}

.cat-row.open .cat-toggle svg {
  transform: rotate(45deg)
}


.cat-expand {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s ease, opacity .25s ease, margin-top .25s ease;
}

.cat-row.open .cat-expand {
  max-height: 33.333vw;
  opacity: 1;
  margin-top: 0.729vw
}

.cat-expand .cat-desc-in {
  color: #006469;
  font-size: 0.781vw;
  line-height: 1.7;
  max-width: 37.5vw;
}

.cat-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.52vw;
  padding: 0.729vw 0 0.208vw;
}

.cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.52vw 0.729vw;
  border-radius: 0.52vw;
  background: rgba(0, 199, 209, 0.06);
  font-size: 0.729vw;
  color: #006469;
}

.cat-item .add {
  width: 1.145vw;
  height: 1.145vw;
  border-radius: 50%;
  background: #006469;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.729vw;
  flex-shrink: 0;
}

.cat-row.highlight {
  background: transparent
}


.map-section {
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--c-map-bg) 86%, #0d2f28) 0%,
      color-mix(in srgb, var(--c-map-bg) 70%, #08241f) 58%,
      color-mix(in srgb, var(--c-map-bg) 58%, #051a16) 100%);
  color: rgba(236, 255, 249, .92);
  padding: 7.291vw 0;
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 21.875vw 11.979vw at 67% 50%, rgba(255, 255, 255, .11), rgba(255, 255, 255, 0) 74%);
  pointer-events: none;
}

.map-inner {
  max-width: 79.166vw;
  margin: 0 auto;
  padding: 0 1.458vw;
  display: grid;
  grid-template-columns: 16.666vw 1fr;
  gap: 3.125vw;
  align-items: center;
}

.map-head-kicker {
  font-family: var(--font-mono);
  font-size: 0.625vw;
  letter-spacing: 0.156vw;
  text-transform: uppercase;
  color: rgba(236, 255, 249, .66);
  margin-bottom: 1.145vw
}

.map-head-title {
  font-family: var(--font-serif);
  font-size: 1.979vw;
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: 0.937vw;
  color: rgba(255, 255, 255, .96);
  text-shadow: 0 0.052vw 0 rgba(0, 0, 0, .25);
}

.map-head-desc {
  color: rgba(236, 255, 249, .72);
  font-size: 0.781vw;
  margin-bottom: 1.666vw;
  line-height: 1.7
}

.map-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
  margin-top: 1.666vw
}

.map-stat {
  position: relative;
  padding-left: 0.937vw;
  cursor: pointer;
  --em: 0
}

.map-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.208vw;
  bottom: 0.729vw;
  width: 0.156vw;
  background: rgba(20, 184, 166, .52);
  border-radius: 0.104vw;
  opacity: .22;
  transition: opacity .18s ease, background .25s;
}

.map-stat.active::before,
.map-stat:hover::before {
  opacity: 1;
  background: var(--c-accent-2)
}

.map-stat .num {
  font-family: var(--font-serif-legacy);
  font-size: 2.708vw;
  line-height: 1;
  color: rgba(255, 255, 255, .62);
  transition: color .18s ease, filter .18s ease;
  filter: none;
}

.map-stat.active .num,
.map-stat:hover .num {
  color: rgba(255, 255, 255, .96);
  filter: drop-shadow(0 0 0.625vw rgba(20, 184, 166, .25));
}

.map-stat .lbl {
  font-family: var(--font-mono-legacy);
  font-size: 0.625vw;
  letter-spacing: 0.104vw;
  font-weight: 700;
  color: rgba(236, 255, 249, .62);
  margin-top: 0.312vw;
  text-transform: uppercase;
  transition: color .18s ease;
}

.map-stat.active .lbl,
.map-stat:hover .lbl {
  color: rgba(236, 255, 249, .8)
}

.map-canvas-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1052/524;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

#mapCanvas {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1052 / 524;
  min-height: 11.458vw;
  background: transparent;
  touch-action: none;
  cursor: crosshair;
}


.map-hotspots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.map-hotspot {
  position: absolute;
  left: var(--pin-x, 50%);
  top: var(--pin-y, 50%);
  transform: translate(calc(-50% + var(--pin-offset-x, 0vw)), calc(-50% + var(--pin-offset-y, 0vw)));
  pointer-events: auto;
  z-index: 1;
}

.map-hotspot:hover,
.map-hotspot:focus-within {
  z-index: 30
}

.map-pin {
  position: relative;
  z-index: 1;
  display: block;
  width: 2.291vw;
  height: 2.291vw;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform .22s ease;
}


.map-pin::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.979vw;
  height: 1.979vw;
  margin: 0;
  border-radius: 50%;
  border: 0.104vw solid rgba(255, 255, 255, .72);
  box-shadow:
    0 0 0.937vw rgba(255, 255, 255, .55),
    0 0 1.875vw rgba(255, 255, 255, .28);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.52);
  opacity: .88;
  animation: mapPinRipple 2.4s ease-out infinite;
}

.map-hotspot:nth-child(1) .map-pin::before {
  animation-delay: 0s
}

.map-hotspot:nth-child(2) .map-pin::before {
  animation-delay: .55s
}

.map-hotspot:nth-child(3) .map-pin::before {
  animation-delay: 1.1s
}

.map-hotspot:nth-child(4) .map-pin::before {
  animation-delay: 1.65s
}


.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.677vw;
  height: 0.677vw;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0.729vw rgba(255, 255, 255, .95),
    0 0 1.458vw rgba(255, 255, 255, .55),
    0 0 2.5vw rgba(255, 255, 255, .22);
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: mapPinCore 2s ease-in-out infinite;
  transition: transform .22s ease, box-shadow .22s ease;
}

.map-hotspot:nth-child(1) .map-pin::after {
  animation-delay: 0s
}

.map-hotspot:nth-child(2) .map-pin::after {
  animation-delay: .2s
}

.map-hotspot:nth-child(3) .map-pin::after {
  animation-delay: .4s
}

.map-hotspot:nth-child(4) .map-pin::after {
  animation-delay: .6s
}

@keyframes mapPinRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.52);
    opacity: .88
  }

  55% {
    opacity: .12
  }

  100% {
    transform: translate(-50%, -50%) scale(2.65);
    opacity: 0
  }
}

@keyframes mapPinCore {

  0%,
  100% {
    opacity: 1;
    filter: brightness(1)
  }

  50% {
    opacity: .48;
    filter: brightness(1.08)
  }
}

.map-pin:hover,
.map-hotspot:hover .map-pin,
.map-hotspot:focus-within .map-pin {
  transform: scale(1.12);
}

.map-pin:hover::after,
.map-hotspot:hover .map-pin::after,
.map-hotspot:focus-within .map-pin::after {
  box-shadow:
    0 0 0.937vw rgba(255, 255, 255, 1),
    0 0 1.875vw rgba(255, 255, 255, .65),
    0 0 2.916vw rgba(255, 255, 255, .35);
}

.map-pin:focus-visible {
  outline: 0.104vw solid rgba(255, 255, 255, .85);
  outline-offset: 0.208vw;
}

.map-spot-card {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.729vw);
  z-index: 3;

  transform: translate3d(-50%, 0.729vw, 0) scale(0.94);
  min-width: min(16.666vw, 72vw);
  max-width: min(21.875vw, 85vw);
  padding: 0.729vw 0.937vw;
  border-radius: 0.625vw;
  background: #fff;
  color: #0f1720;
  font-size: 0.729vw;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  border: 0.052vw solid rgba(255, 255, 255, .5);
  box-shadow:
    0 0.729vw 2.083vw rgba(0, 0, 0, .18),
    0 0.104vw 0.416vw rgba(0, 0, 0, .06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: transform, opacity;

  transition:
    transform .52s cubic-bezier(0.22, 1.45, 0.32, 1.05),
    opacity .48s ease,
    visibility 0s linear .5s;
}

.map-spot-card-text {
  position: relative;
  z-index: 1
}

.map-hotspot:hover .map-spot-card,
.map-hotspot:focus-within .map-spot-card {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0) scale(1);
  transition:
    transform .48s cubic-bezier(0.22, 1.35, 0.28, 1.12),
    opacity .22s ease,
    visibility 0s linear 0s;
}


.news-section {
  padding: 6.77vw 0;
  background:
    radial-gradient(ellipse 52% 42% at 12% 88%, color-mix(in srgb, var(--home-cta-teal) 9%, transparent), transparent 72%),
    radial-gradient(ellipse 48% 38% at 88% 12%, color-mix(in srgb, var(--home-cta-teal) 7%, transparent), transparent 70%),
    var(--c-bg);
}

.news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5vw;
  gap: 1.25vw;
  flex-wrap: wrap
}

.news-head h2 {
  font-family: var(--font-serif);
  font-size: 1.979vw;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.052vw;
  line-height: 1.18;
}

.news-head h2 .accent {
  color: var(--c-accent);
  font-style: normal
}

.news-head .more {
  color: var(--c-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.416vw;
  cursor: pointer
}

.news-head .more svg {
  transition: transform .2s
}

.news-head .more:hover svg {
  transform: translateX(0.208vw)
}

.news-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.25vw;
  min-height: 37.5vw
}

.news-main {
  position: relative;
  border-radius: 1.145vw;
  overflow: hidden;
  overflow: clip;
  background: #fff;
  color: #1caba3;
  min-height: 37.5vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5vw;
  cursor: pointer;
  transition: transform .5s;
  contain: paint;
  box-shadow: 0 0.52vw 1.666vw rgba(15, 118, 110, .08);
  outline: 0.052vw solid #fff;
  outline-offset: -0.052vw;
}

.news-main::before,
.news-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.news-main::before {
  background-size: cover;
  background-position: 68% 62%;
  background-image: var(--img-news-main);
  transform: none;
  transition: transform .6s;
  transform-origin: 78% 50%;
}

.news-main::after {
  background:
    radial-gradient(ellipse 168% 142% at -4% 104%,
      #fff 0%,
      #fff 26%,
      rgba(255, 255, 255, .97) 34%,
      rgba(255, 255, 255, .9) 42%,
      rgba(255, 255, 255, .81) 50%,
      rgba(255, 255, 255, .7) 58%,
      rgba(255, 255, 255, .57) 66%,
      rgba(255, 255, 255, .43) 74%,
      rgba(255, 255, 255, .28) 82%,
      rgba(255, 255, 255, .14) 90%,
      rgba(255, 255, 255, .04) 96%,
      rgba(255, 255, 255, 0) 100%),
    radial-gradient(ellipse 110% 88% at 6% 96%, color-mix(in srgb, var(--home-cta-teal) 24%, transparent) 0%, color-mix(in srgb, var(--home-cta-teal) 11%, transparent) 44%, transparent 72%),
    radial-gradient(ellipse 78% 62% at 78% 82%, color-mix(in srgb, var(--home-cta-teal) 16%, transparent) 0%, color-mix(in srgb, var(--home-cta-teal) 6%, transparent) 50%, transparent 78%),
    radial-gradient(ellipse 52% 44% at 94% 8%, color-mix(in srgb, var(--home-cta-teal) 12%, transparent) 0%, transparent 68%);
}

.news-main>* {
  position: relative;
  z-index: 1
}

.news-main:hover {
  transform: translateY(-0.208vw)
}

.news-main:hover::before {
  transform: translateZ(0) scale(1.05)
}

.news-main .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.416vw;
  padding: 0.312vw 0.729vw;
  background: color-mix(in srgb, #1caba3 10%, transparent);
  border: 0.052vw solid color-mix(in srgb, #1caba3 22%, transparent);
  backdrop-filter: blur(0.52vw);
  border-radius: 52.031vw;
  font-size: 0.572vw;
  letter-spacing: 0.104vw;
  text-transform: uppercase;
  font-weight: 600;
  color: #1caba3;
  width: fit-content;
  margin-bottom: 0.937vw;
}

.news-main h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.458vw, 2.4vw, 2.083vw);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -.0.26vw;
  max-width: 33.333vw;
  margin-bottom: 0.937vw;
  color: #1caba3;
}

.news-main .meta {
  display: flex;
  align-items: center;
  gap: 0.833vw;
  font-size: 0.677vw;
  color: color-mix(in srgb, #1caba3 72%, transparent);
  margin-bottom: 1.354vw
}

.news-main .read {
  display: inline-flex;
  align-items: center;
  gap: 0.52vw;
  font-weight: 600;
  font-size: 0.729vw;
  padding: 0.625vw 1.041vw;
  border: 0.052vw solid color-mix(in srgb, #1caba3 35%, transparent);
  border-radius: 52.031vw;
  background: transparent;
  color: #1caba3;
  width: fit-content;
  transition: background .2s, transform .2s, border-color .2s;
}

.news-main:hover .read {
  background: #1caba3;
  color: #fff;
  border-color: #1caba3
}

.news-side {
  display: flex;
  flex-direction: column;
  gap: 1.25vw
}

.news-card {
  position: relative;
  flex: 1;
  border-radius: 0.937vw;
  overflow: hidden;
  overflow: clip;
  background: #fff;
  color: #1caba3;
  cursor: pointer;
  padding: 1.458vw 1.666vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  contain: paint;
  transition: transform .4s;
  box-shadow: 0 0.52vw 1.666vw rgba(15, 118, 110, .08);
  outline: 0.052vw solid #fff;
  outline-offset: -0.052vw;
}

.news-card::before,
.news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.news-card::before {
  background-size: cover;
  background-position: center right;
  transition: transform .5s;
  transform: none;
  transform-origin: right center;
}

.news-card::after {
  background:
    radial-gradient(ellipse 132% 168% at -10% 50%,
      #fff 0%,
      #fff 30%,
      rgba(255, 255, 255, .97) 38%,
      rgba(255, 255, 255, .9) 46%,
      rgba(255, 255, 255, .81) 54%,
      rgba(255, 255, 255, .7) 62%,
      rgba(255, 255, 255, .57) 70%,
      rgba(255, 255, 255, .43) 78%,
      rgba(255, 255, 255, .28) 86%,
      rgba(255, 255, 255, .14) 92%,
      rgba(255, 255, 255, .04) 97%,
      rgba(255, 255, 255, 0) 100%),
    radial-gradient(ellipse 105% 130% at -14% 50%, color-mix(in srgb, var(--home-cta-teal) 22%, transparent) 0%, color-mix(in srgb, var(--home-cta-teal) 10%, transparent) 42%, transparent 74%),
    radial-gradient(ellipse 72% 95% at 90% 58%, color-mix(in srgb, var(--home-cta-teal) 14%, transparent) 0%, color-mix(in srgb, var(--home-cta-teal) 5%, transparent) 48%, transparent 76%);
}

.news-card>* {
  position: relative;
  z-index: 1
}

.news-card:hover {
  transform: translateY(-0.156vw)
}

.news-card:hover::before {
  transform: translateZ(0) scale(1.05)
}

.news-card.nc1::before {
  background-image: var(--img-news-nc1);
  background-position: 88% 42%
}

.news-card.nc2::before {
  background-image: var(--img-news-nc2)
}

.news-card.nc3::before {
  background-image: var(--img-news-nc3)
}

.news-card h4 {
  font-family: var(--font-serif);
  font-size: 1.145vw;
  font-weight: 500;
  line-height: 1.3;
  max-width: 21.875vw;
  color: #1caba3;
}

.news-card.nc1 h4 {
  max-width: 100%;
  font-size: 1.145vw
}

.nc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.041vw
}

.nc-date {
  font-size: 0.677vw;
  color: color-mix(in srgb, #1caba3 72%, transparent);
  font-family: var(--font-mono)
}

.nc-arr {
  width: 1.875vw;
  height: 1.875vw;
  border-radius: 50%;
  background: color-mix(in srgb, #1caba3 12%, transparent);
  border: 0.052vw solid color-mix(in srgb, #1caba3 28%, transparent);
  display: grid;
  place-items: center;
  color: #1caba3;
  transition: background .2s, transform .25s, border-color .2s;
}

.news-card:hover .nc-arr {
  background: #1caba3;
  color: #fff;
  border-color: #1caba3;
  transform: translateX(0.208vw)
}






.adlm-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}

.adlm-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

body.adlm-modal-open {
  overflow: hidden
}

.adlm-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(8, 24, 28, .52);
  backdrop-filter: blur(0.312vw);
  -webkit-backdrop-filter: blur(0.312vw);
  cursor: pointer;
}

.adlm-modal__panel {
  position: relative;
  z-index: 1;
  width: min(50vw, calc(100vw - 2.5vw));
  aspect-ratio: 959 / 570;
  border-radius: 2.5vw;
  overflow: hidden;
  box-shadow: 0 1.666vw 4.166vw rgba(0, 0, 0, .28);
  transform: translateY(0.937vw) scale(.98);
  transition: transform .4s cubic-bezier(.2, .9, .2, 1);
}

.adlm-modal.is-open .adlm-modal__panel {
  transform: none
}

.adlm-modal__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 2.5vw;
  overflow: hidden
}


.adlm-modal__photo {
  position: absolute;
  width: 87.64%;
  height: 204.99%;
  max-width: none;
  left: 16.5%;
  top: -46.84%;
  object-fit: cover;
  object-position: 68% 62%;
}

.adlm-modal__gradient {
  position: absolute;
  inset: 0;
  border-radius: 2.5vw;
  background: linear-gradient(110.24deg, #fff 32.43%, rgba(255, 255, 255, .591) 48.84%, rgba(255, 255, 255, 0) 82.05%);
}

.adlm-modal__body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.666vw;
  padding: 2.604vw 2.552vw 1.666vw 2.604vw;
  min-height: 0;
  height: 100%;
  box-sizing: border-box;
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

.adlm-modal__content {
  flex: 1;
  min-width: 0;
  max-width: 22.395vw;
  display: flex;
  flex-direction: column;
  color: #1caba3;
  position: relative;
  z-index: 2;
}

.adlm-modal__title {
  margin: 0 0 1.197vw;
  font-size: 1.875vw;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  text-transform: capitalize;
  color: #1caba3;
}

.adlm-modal__rule {
  display: block;
  width: 100%;
  max-width: 20.729vw;
  height: 0.104vw;
  margin: 0 0 0;
  border: 0;
  background: #1caba3;
  opacity: .85;
}

.adlm-modal__meta {
  margin: 1.197vw 0 0;
  font-size: 0.833vw;
  font-weight: 500;
  line-height: 1.562vw;
  text-transform: capitalize;
  color: #1caba3;
}

.adlm-modal__meta p {
  margin: 0
}

.adlm-modal__features {
  list-style: none;
  margin: 1.25vw 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.52vw;
}

.adlm-modal__features li {
  display: flex;
  align-items: center;
  gap: 0.52vw;
  font-size: 0.729vw;
  font-weight: 500;
  line-height: 1.562vw;
  text-transform: uppercase;
  color: #1caba3;
}

.adlm-modal__features li:nth-child(2) {
  gap: 0.625vw
}

.adlm-modal__features li:nth-child(3) {
  gap: 0.625vw
}

.adlm-modal__icon {
  flex-shrink: 0;
  width: 1.041vw;
  height: 1.041vw;
  display: block;
  object-fit: contain;
}


.adlm-modal__cta {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25vw;
  width: 7.135vw;
  height: 2.239vw;
  padding: 0 0.729vw 0 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(159.08deg, #19d2c7 3.9%, #1b5b58 134.32%);
  color: #fff;
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 0.729vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  -webkit-clip-path: url(#adlmCtaArrowShape);
  clip-path: url(#adlmCtaArrowShape);
  box-shadow: 0 0.416vw 1.145vw rgba(27, 91, 88, .28);
  transition: filter .25s ease, transform .2s ease, box-shadow .25s ease;
}

.adlm-modal__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-0.052vw);
  box-shadow: 0 0.52vw 1.354vw rgba(27, 91, 88, .34);
}

.adlm-modal__cta:focus-visible {
  outline: 0.104vw solid #1caba3;
  outline-offset: 0.156vw;
}

.adlm-modal__close {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 2.239vw;
  height: 2.239vw;
  padding: 0;
  border: 0;
  border-radius: 0.52vw;
  background: rgba(255, 255, 255, .8);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #1caba3;
  transition: background .2s ease, transform .2s ease;
}

.adlm-modal__close:hover {
  background: #fff;
  transform: scale(1.04)
}

.adlm-modal__close svg {
  display: block
}


/* ===== Home · Responsive ===== */

@media (max-width:1100px) {
  .brand-layout {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .brand-cards {
    grid-template-columns: repeat(3, 1fr)
  }

  .map-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .news-grid {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .news-main {
    min-height: 480px
  }
}

@media (max-width:980px) {
  .portfolio-layout {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .portfolio-visual {
    width: min(320px, 72vw);
    margin: 0 auto
  }

  .cat-list-outer {
    min-height: clamp(480px, 75vh, 720px)
  }
}

@media (max-width:900px) {
  .map-spot-card {
    min-width: min(240px, 78vw);
    font-size: 13px;
    padding: 10px 12px
  }
}

@media (max-width:768px) {

  .container,
  .brand-section .container,
  .products-section .container {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px
  }

  .anchor-target {
    top: -72px
  }

  .nav {
    padding: 0 20px;
  }

  .nav-right .stock-code,
  .nav-right .btn-outline {
    display: none
  }

  .hero {
    min-height: 100svh;
    height: auto
  }

  .hero-layout {
    grid-template-columns: 1fr;
    max-width: none;
    padding: calc(72px + 40px) 20px 72px;
    gap: 0;
    align-items: start
  }

  .hero-visual {
    display: none
  }

  .hero-tag {
    font-size: 11px;
    letter-spacing: .08em;
    padding: 6px 10px;
    margin-bottom: 16px
  }

  .hero-tag .dot {
    display: none;
  }

  .hero-title {
    font-size: clamp(34px, 9vw, 52px);
    letter-spacing: -.02em;
    max-width: none
  }

  .hero-title .line.nowrap {
    white-space: normal
  }

  .hero-sub {
    margin-top: 16px;
    max-width: none;
    font-size: 14px;
    line-height: 1.65
  }

  .hero-cta {
    margin-top: 24px
  }

  .btn-primary {
    padding: 12px 28px 12px 18px;
    min-height: 44px;
    font-size: 13px
  }

  .btn-primary .arr {
    width: 18px;
    height: 18px
  }

  .scroll-hint {
    bottom: 20px;
    font-size: 10px;
    display: none;
  }

  .brand-section {
    min-height: auto;
    padding: 80px 0
  }

  .brand-copy {
    max-width: none
  }

  .brand-kicker {
    font-size: 11px;
    letter-spacing: .12em
  }

  .brand-kicker::before {
    width: 24px
  }

  .brand-title {
    font-size: clamp(26px, 6.5vw, 34px)
  }

  .brand-lead {
    max-width: none;
    font-size: 14px
  }

  .brand-cards {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .b-card {
    aspect-ratio: auto;
    min-height: 200px;
    padding: 20px;
    border-radius: 14px
  }

  .b-card .bc-title {
    font-size: clamp(20px, 5vw, 26px);
    min-height: 0
  }

  .b-card .bc-desc {
    font-size: 13px
  }

  .products-section {
    padding: 72px 0 80px
  }

  .products-head h2 {
    font-size: clamp(26px, 6.5vw, 34px)
  }

  .products-head p {
    max-width: none;
    font-size: 14px
  }

  .portfolio-layout {
    margin-top: 28px;
    gap: 28px
  }

  .portfolio-visual {
    width: min(220px, 58vw)
  }

  .cat-list-outer {
    min-height: auto
  }

  .cat-row {
    grid-template-columns: 36px 1fr 32px;
    gap: 8px 12px;
    padding: 18px 0
  }

  .cat-num {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #006469;
    opacity: .55;
    align-self: center
  }

  .cat-name {
    font-size: clamp(16px, 4.2vw, 20px)
  }

  .cat-toggle {
    width: 32px;
    height: 32px
  }

  .cat-row.open .cat-expand {
    max-height: 480px;
    margin-top: 12px
  }

  .cat-expand .cat-desc-in {
    max-width: none;
    font-size: 13px
  }

  .cat-item {
    font-size: 13px;
    padding: 10px 12px
  }

  .cat-item .add {
    width: 18px;
    height: 18px;
    font-size: 14px
  }

  .map-section {
    padding: 72px 0 80px
  }

  .map-inner {
    padding-left: 20px;
    padding-right: 20px;
    gap: 32px;
    max-width: 100%;
  }

  .map-head-kicker {
    font-size: 11px;
    letter-spacing: .12em
  }

  .map-head-title {
    font-size: clamp(24px, 6vw, 32px)
  }

  .map-head-desc {
    font-size: 14px
  }

  .map-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 32px
  }

  .map-stat .num {
    font-size: clamp(36px, 10vw, 48px)
  }

  .map-stat .lbl {
    font-size: 11px
  }

  #mapCanvas {
    min-height: 160px
  }

  .map-pin {
    width: 28px;
    height: 28px
  }

  .map-pin::before {
    width: 24px;
    height: 24px
  }

  .map-pin::after {
    width: 9px;
    height: 9px
  }

  .news-section {
    padding: 72px 0 88px
  }

  .news-head {
    margin-bottom: 28px;
    align-items: flex-start
  }

  .news-head h2 {
    font-size: clamp(26px, 6.5vw, 34px)
  }

  .news-grid {
    gap: 12px;
    min-height: 360px
  }

  .news-main {
    border-radius: 11px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    box-shadow: 0 5px 16px rgba(15, 118, 110, .08);
    outline: 1px solid #fff;
    outline-offset: -1px;
  }

  .news-main::before {
    background-position: 68% 62%;
    transform-origin: 78% 50%;
  }

  .news-main:hover {
    transform: translateY(-2px)
  }

  .news-main .tag {
    display: inline-flex;
    gap: 4px;
    padding: 3px 7px;
    background: color-mix(in srgb, #1caba3 10%, transparent);
    border: 1px solid color-mix(in srgb, #1caba3 22%, transparent);
    backdrop-filter: blur(5px);
    border-radius: 500px;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 9px;
  }

  .news-main h3 {
    font-size: clamp(21px, 2.4vw, 30px);
    letter-spacing: -.3px;
    max-width: 320px;
    margin-bottom: 9px;
  }

  .news-main .meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: color-mix(in srgb, #1caba3 72%, transparent);
    margin-bottom: 13px
  }

  .news-main .read {
    display: inline-flex;
    gap: 5px;
    font-size: 12px;
    padding: 6px 10px;
    border: 1px solid color-mix(in srgb, #1caba3 35%, transparent);
    border-radius: 500px;
  }

  .news-side {
    display: flex;
    flex-direction: column;
    gap: 12px
  }

  .news-card {
    flex: 1;
    min-height: 150px;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 16px rgba(15, 118, 110, .08);
    outline: 1px solid #fff;
    outline-offset: -1px;
  }

  .news-card:hover {
    transform: translateY(-2px)
  }

  .news-card.nc1::before {
    background-position: 88% 42%
  }

  .news-card h4 {
    font-size: 17px;
    max-width: 210px;
  }

  .news-card.nc1 h4 {
    max-width: 100%;
    font-size: 17px
  }

  .nc-bottom {
    display: flex;
    margin-top: 10px
  }

  .nc-date {
    font-size: 12px;
    color: color-mix(in srgb, #1caba3 72%, transparent);
  }

  .nc-arr {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: color-mix(in srgb, #1caba3 12%, transparent);
    border: 1px solid color-mix(in srgb, #1caba3 28%, transparent);
  }

  .news-card:hover .nc-arr {
    transform: translateX(2px)
  }

  .reveal {
    transform: translateY(14px);
  }

  .adlm-modal {
    display: flex;
    padding: 12px;
  }

  .adlm-modal__backdrop {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  .adlm-modal__panel {
    width: min(480px, calc(100vw - 24px));
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
    transform: translateY(9px) scale(.98);
    aspect-ratio: auto;
  }

  .adlm-modal__media {
    border-radius: 24px;
  }

  .adlm-modal__photo {
    width: 87.64%;
    height: 204.99%;
    left: 16.5%;
    top: -46.84%;
    object-position: 68% 62%;
  }

  .adlm-modal__gradient {
    border-radius: 24px;
    background: linear-gradient(110.24deg, #fff 32.43%, rgba(255, 255, 255, .591) 48.84%, rgba(255, 255, 255, 0) 82.05%);
  }

  .adlm-modal__body {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 45px 25px;
    height: 100%;
  }

  .adlm-modal__content {
    flex: 1;
    max-width: 215px;
    display: flex;
    flex-direction: column;
  }

  .adlm-modal__title {
    margin: 0 0 12px;
    font-size: 27px;
  }

  .adlm-modal__rule {
    width: 100%;
    max-width: 199px;
    height: 1px;
  }

  .adlm-modal__meta {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 15px;
  }

  .adlm-modal__features {
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .adlm-modal__features li {
    display: flex;
    gap: 5px;
    font-size: 12px;
    line-height: 15px;
  }

  .adlm-modal__features li:nth-child(2) {
    gap: 6px
  }

  .adlm-modal__features li:nth-child(3) {
    gap: 6px
  }

  .adlm-modal__icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }

  .adlm-modal__cta {
    display: inline-flex;
    margin-top: 12px;
    width: 122px;
    height: 32px;
    padding: 0 7px 0 0;
    background: linear-gradient(159.08deg, #19d2c7 3.9%, #1b5b58 134.32%);
    font-size: 12px;
    box-shadow: 0 5px 11px rgba(27, 91, 88, .28);
  }

  .adlm-modal__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 13px rgba(27, 91, 88, .34);
  }

  .adlm-modal__cta:focus-visible {
    outline: 1px solid #1caba3;
    outline-offset: 2px;
  }

  .adlm-modal__close {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 10px;
  }

  .consent-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .consent-inner {
    max-width: 660px;
    border-radius: 10px;
    padding: 11px 14px 11px 12px;
    box-shadow: 0 5px 20px rgba(15, 23, 32, .12), 0 2px 5px rgba(15, 23, 32, .06);
    display: flex;
    gap: 12px;
  }

  .consent-brand {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
  }

  .consent-brand img {
    width: 22px;
    height: 22px;
  }

  .consent-copy {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .consent-text {
    font-size: 12px;
  }

  .consent-sub {
    font-size: 12px;
  }

  .consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
  }

  .consent-privacy-link {
    font-size: 12px;
    text-underline-offset: 2px;
    flex: 0 0 auto;
  }

  .consent-privacy-link:focus-visible {
    outline: 1px solid color-mix(in srgb, var(--home-cta-teal) 45%, transparent);
    outline-offset: 2px;
    border-radius: 2px;
  }

  .consent-btn {
    border-radius: 10px;
    padding: 6px 11px;
    flex: 0 0 auto;
    font-size: 12px;
  }

  .consent-btn:active {
    transform: translateY(1px)
  }

  .consent-btn.accept {
    box-shadow: 0 5px 7px rgba(28, 171, 163, .18);
  }

  .consent-btn.reject {
    border: 1.5px solid var(--home-cta-teal);
  }

  .consent-btn.reject:hover {
    background: color-mix(in srgb, var(--home-cta-teal) 6%, #fff)
  }
}