/* ============================================
   ARICA — Modern Corporate Homepage
   Inspired by premium pharma/corporate design
   ============================================ */

:root {
  /* Brand palette — extracted from logo.jpg */
  --brand-blue: #1378f3;
  --brand-blue-dark: #0d5fc4;
  --brand-blue-light: #4c93e4;
  --brand-blue-hero: #056cf3;
  --brand-red: #e3676c;
  --brand-red-dark: #d94853;
  --brand-red-light: #f4a0a4;
  --brand-navy: #010728;

  /* Semantic aliases (used across site) */
  --teal: var(--brand-blue);
  --teal-dark: var(--brand-blue-dark);
  --teal-light: var(--brand-blue-light);
  --green: var(--brand-red);
  --green-dark: var(--brand-red-dark);
  --green-bright: var(--brand-red-light);
  --green-lime: #e8f3ff;
  --blue: #0a2560;
  --blue-dark: var(--brand-navy);
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f7f8fa;
  --gray-400: #8b95a8;
  --gray-600: #5c6578;
  --gray-800: #1a1f2e;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 80px;
  --topbar-h: 40px;
}

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

html {
  scroll-behavior: smooth;
  font-size: clamp(15px, 0.9vw + 14px, 17px);
  scroll-padding-top: calc(var(--header-h) + var(--topbar-h));
}

[id],
.section-anchor {
  scroll-margin-top: calc(var(--header-h) + var(--topbar-h));
}

.section-anchor {
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.011em;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: min(1280px, 92vw);
  margin: 0 auto;
}

/* Shared section layout — brands-section & products-section */
.listing-section {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 6rem);
  background: var(--white);
  overflow: hidden;
}

.section .container,
.hero-bridge > .container {
  position: relative;
  z-index: 2;
}

/* ---- Top Bar ---- */

/* ---- Cursor Glow ---- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 120, 243, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body.loaded .cursor-glow { opacity: 1; }

/* ---- Header ---- */
.header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 10050;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(19, 120, 243, 0.08);
  box-shadow: 0 4px 24px rgba(1, 7, 40, 0.04);
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), top 0.3s var(--ease), border-color 0.45s;
}

.header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-blue-light) 45%, var(--brand-red) 100%);
  opacity: 0.55;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: transform 0.5s var(--ease-out), opacity 0.45s;
}

.header--hero:not(.scrolled) {
  background: rgba(255, 255, 255, 0.9);
}

.header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 32px rgba(1, 7, 40, 0.08);
  border-bottom-color: rgba(19, 120, 243, 0.12);
}

.header.scrolled::after {
  transform: scaleX(1);
  opacity: 0.85;
}

.header.scrolled .nav-links a {
  color: var(--brand-navy);
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
  color: var(--brand-blue);
}

.header.scrolled .nav-menu-btn {
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--gray-800);
  background: rgba(255, 255, 255, 0.9);
}

.header.scrolled .nav-menu-btn__bars span { background: var(--gray-800); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  position: relative;
}

.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  z-index: 2;
}

.logo-img {
  height: clamp(40px, 4.8vw, 54px);
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-drawer {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.nav-drawer__close {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.6875rem, 0.72vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(1, 7, 40, 0.82);
  transition: color 0.25s, background 0.25s, box-shadow 0.25s;
  position: relative;
  padding: 0.5rem 0.7rem;
  white-space: nowrap;
  border-radius: 999px;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-blue);
  background: rgba(19, 120, 243, 0.08);
}

.nav-links a.active {
  box-shadow: inset 0 0 0 1px rgba(19, 120, 243, 0.14);
}

/* ---- About Us dropdown (desktop / tablet) ---- */
.nav-item--dropdown {
  position: relative;
}

.nav-item__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-item__trigger > a {
  padding-right: 0.35rem;
}

.nav-submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.nav-submenu-toggle svg {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform 0.25s var(--ease);
}

.nav-submenu-toggle:hover {
  background: rgba(19, 120, 243, 0.08);
  color: var(--brand-blue);
}

.nav-submenu {
  list-style: none;
  margin: 0;
  padding: 0.45rem;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 11.5rem;
  background: #fff;
  border: 1px solid rgba(19, 120, 243, 0.1);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(1, 7, 40, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 10060;
}

.nav-submenu a {
  display: block;
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
  border-radius: 10px;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--brand-navy);
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a.active {
  background: rgba(19, 120, 243, 0.08);
  color: var(--brand-blue);
  box-shadow: none;
}

.nav-item--dropdown:hover > .nav-submenu,
.nav-item--dropdown:focus-within > .nav-submenu,
.nav-item--dropdown.is-open > .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-item--dropdown:hover .nav-submenu-toggle svg,
.nav-item--dropdown:focus-within .nav-submenu-toggle svg,
.nav-item--dropdown.is-open .nav-submenu-toggle svg {
  transform: rotate(180deg);
}

.header.scrolled .nav-submenu-toggle {
  color: var(--brand-navy);
}

.nav-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.nav-menu-btn {
  display: none;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.9rem 0.5rem 1rem;
  border: 1px solid rgba(1, 7, 40, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-navy);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.nav-menu-btn:hover {
  border-color: rgba(19, 120, 243, 0.25);
  box-shadow: 0 4px 14px rgba(19, 120, 243, 0.12);
}

.nav-menu-btn__bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.nav-menu-btn__bars span {
  display: block;
  height: 2px;
  background: var(--brand-navy);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s, background 0.4s;
}

.nav-menu-btn.active .nav-menu-btn__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-menu-btn.active .nav-menu-btn__bars span:nth-child(2) { opacity: 0; }
.nav-menu-btn.active .nav-menu-btn__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 769px) and (max-width: 1180px) {
  .nav-links a {
    padding: 0.45rem 0.5rem;
    font-size: 0.625rem;
    letter-spacing: 0.03em;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.625rem;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, background 0.35s, color 0.35s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(227, 103, 108, 0.35);
}

.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 24px rgba(227, 103, 108, 0.45);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--teal-dark);
}

.btn-white:hover {
  box-shadow: 0 8px 30px rgba(255,255,255,0.3);
}

/* ---- Hero (Arica.com copy) ---- */
.hero {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 500px;
  padding-top: 0;
  overflow: hidden;
  background-color: var(--brand-blue-hero);
  transition: opacity 0.15s linear;
}

.hero__bg {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}

.hero__swiper {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
  will-change: transform;
}

.hero__bg-base {
  z-index: 0;
  background: var(--brand-blue-hero);
  width: 100%;
  height: 100%;
  transition: background 1.2s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.hero__bg-glow {
  z-index: 3;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  background: transparent;
  transition: background 1.2s ease;
  mix-blend-mode: screen;
}

.hero__bg-texture {
  mix-blend-mode: color-dodge;
  z-index: 1;
  width: 99.69%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
}

.hero__bg-texture img {
  object-fit: cover;
  width: 100.11%;
  height: 191.85%;
  position: absolute;
  top: -0.1%;
  left: 0;
}

.hero__bg-gradient-diagonal {
  z-index: 2;
  background: linear-gradient(88.9751deg, rgba(1, 7, 40, 0.72) 5.5424%, rgba(19, 120, 243, 0) 66.8%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1.2s ease;
}

.hero--glow-slide .hero__bg-gradient-diagonal {
  opacity: 0;
}

.hero__bg-gradient-top {
  mix-blend-mode: multiply;
  z-index: 3;
  background: linear-gradient(rgba(1, 7, 40, 0.78) 0%, rgba(19, 120, 243, 0) 37.537%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero__bg-petals {
  z-index: 4;
  width: min(36.9107vw, 709px);
  height: min(37.8167vw, 726px);
  animation: icu-monitor-glow 5s ease-in-out infinite;
  position: absolute;
  top: 7.42396vw;
  left: 41.9839vw;
  pointer-events: none;
}

.hero__bg-petals img {
  width: 100%;
  height: 100%;
}


@keyframes icu-monitor-glow {
  0%, 100% { opacity: 0.82; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.015); }
}

/* Slide 1 — diabetic care image placement */
.hero__slide--story:first-child .hero__image {
  width: clamp(240px, 42vw, 880px);
  height: auto;
  bottom: 0;
  right: 15%;
}

/* Slide 2 — DNA graphic, right side like other slides */
.hero__slide--story:nth-child(2) .hero__image {
  right: 0;
  bottom: 0;
  width: clamp(210px, 35vw, 740px);
  height: auto;
  max-height: 85%;
  left: auto;
  transform: none;
  object-fit: contain;
  object-position: 100% bottom;
}

.hero__bg-petals--static {
  display: none;
}

.hero__bg-petals--static img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero__slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s var(--ease-out), visibility 1s, transform 1.2s var(--ease-out);
  transform: scale(1.04);
}

.hero__slide--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
  transform: scale(1);
}


.hero__image-wrapper {
  z-index: 5;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.hero__image {
  object-fit: contain;
  object-position: center;
  bottom: -80px;
  width: 49.12%;
  height: auto;
  position: absolute;
  top: auto;
  left: 30.92%;
}

.hero__content {
  z-index: 10;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: calc(var(--topbar-h) + var(--header-h));
  bottom: 0;
  left: 5.20833vw;
  right: 5.20833vw;
}

.hero__main {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.9375vw;
  max-width: 34.4624vw;
}

.hero__slide--active .hero__main {
  animation: heroContentIn 0.75s var(--ease-out) forwards;
}

@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__text {
  text-align: left;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.9375vw;
}

.hero__heading {
  color: #fff;
  margin: 0;
  font-family: var(--font);
  font-size: clamp(2rem, 3.90625vw, 4.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero__heading-line {
  text-align: left;
  display: block;
}

.hero__subheading {
  letter-spacing: 0.03125vw;
  color: #fff;
  text-shadow: 0 4px 9px rgba(0, 0, 0, 0.42);
  text-align: left;
  max-width: 24.4792vw;
  margin: 0;
  font-family: var(--font);
  font-size: clamp(0.9rem, 1.04167vw, 1.125rem);
  font-weight: 300;
  line-height: 1.5;
}

.hero__subheading-line {
  display: block;
}

.hero__cta {
  background: linear-gradient(90deg, var(--brand-red-dark), var(--brand-red));
  border-radius: 1.5625vw;
  display: flex;
  flex-flow: column;
  flex-shrink: 0;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.0520833vw;
  padding: 0.625vw 2.08333vw;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero__cta-text {
  font-family: var(--font);
  color: #fff;
  z-index: 1;
  font-size: clamp(0.875rem, 1.04167vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.6;
  position: relative;
}

/* Story slide variant */
.hero__slide--story .hero__image {
  left: auto;
  right: 10%;
  transform: none;
  width: clamp(260px, 43vw, 900px);
  height: 100%;
  bottom: 10%;
  object-fit: contain;
  object-position: right bottom;
  z-index: 6;
}

/* Slide 1 — diabetic-care-1.png: auto height so bottom gap works */
.hero__slide[data-index="0"] .hero__image {
  width: clamp(240px, 42vw, 880px);
  height: auto;
  right: 15%;
  bottom: 10%;
}

/* Slides 6–8 — diabetic-new-2 / diabetic-care-3 / diabetic-new-4: large, bottom-anchored */
.hero__slide[data-index="5"] .hero__image,
.hero__slide[data-index="6"] .hero__image,
.hero__slide[data-index="7"] .hero__image {
  width: clamp(340px, 60vw, 1200px);
  height: auto;
  right: 5%;
  bottom: 0;
}

/* Slide 9 — diabetic-care-2.png: 40% smaller */
.hero__slide[data-index="8"] .hero__image {
  width: clamp(214px, 38vw, 756px);
  height: auto;
  right: 5%;
  bottom: 0;
}

/* Slide 2 — sized, spaced from bottom-right */
.hero__slide[data-index="1"] .hero__image {
  width: clamp(230px, 40vw, 840px);
  height: auto;
  right: 5%;
  bottom: 5%;
  object-position: right bottom;
}

/* Hepatic slide — liver care, white-bg image blended onto dark green */
.hero__slide--hepatic .hero__image {
  width: clamp(230px, 41vw, 860px);
  height: auto;
  bottom: 10%;
  right: 8%;
  mix-blend-mode: multiply;
}

/* Cardio slide — smaller image */
.hero__slide--cardio .hero__image {
  width: clamp(210px, 35vw, 760px);
  height: auto;
  bottom: 5%;
  right: 8%;
}

.hero__slide--story .hero__heading-line:not(:last-child) {
  font-size: clamp(0.95rem, 1.25vw, 1.25rem);
  font-weight: 400;
  line-height: 1.4;
}

.hero__slide--story .hero__heading-line:last-child {
  font-size: clamp(2rem, 3.90625vw, 4.5rem);
  font-weight: 700;
}

.hero__slide--story .hero__cta {
  background: linear-gradient(var(--brand-red) 0%, var(--brand-red-dark) 100%);
}

/* Pagination & arrows */
.hero__controls {
  z-index: 25;
  position: absolute;
  bottom: 2.08333vw;
  left: 50%;
  transform: translateX(-50%);
}

.hero__pagination {
  display: flex;
  justify-content: center;
  gap: 0.625vw;
}

.hero__pagination-bullet {
  cursor: pointer;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  width: clamp(8px, 0.625vw, 12px);
  height: clamp(8px, 0.625vw, 12px);
  padding: 0;
}

.hero__pagination-bullet:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.8);
}

.hero__pagination-bullet--active {
  transform: scale(1.3);
  background: #fff;
}

.hero__arrow {
  z-index: 25;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(44px, 3.2vw, 56px);
  height: clamp(44px, 3.2vw, 56px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

.hero__arrow svg {
  width: 22px;
  height: 22px;
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-50%) scale(1.06);
}

.hero__arrow--prev { left: 0.6vw; }
.hero__arrow--next { right: 0.6vw; }

.hero__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: translateY(-50%);
}

/* ---- Home atmosphere (below banner → footer, home only) ---- */
.home-canvas {
  position: relative;
}

.home-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}

.page-home.atm-visible .home-atmosphere {
  opacity: 1;
  visibility: visible;
}

.home-atmosphere__sticky {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home-atmosphere__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 78% 42%, rgba(19, 120, 243, 0.26) 0%, transparent 62%),
    radial-gradient(ellipse 48% 40% at 12% 70%, rgba(6, 182, 212, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(76, 147, 228, 0.12) 0%, transparent 55%),
    linear-gradient(165deg, #010818 0%, #061a38 38%, #0a2f52 68%, #071828 100%);
}

.home-atmosphere__aurora {
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(from 180deg at 70% 40%,
      transparent 0deg,
      rgba(19, 120, 243, 0.12) 60deg,
      transparent 120deg,
      rgba(103, 232, 249, 0.1) 200deg,
      transparent 280deg,
      rgba(76, 147, 228, 0.08) 320deg,
      transparent 360deg);
  filter: blur(40px);
  opacity: 0.7;
  animation: atmAuroraSpin 48s linear infinite;
  will-change: transform;
}

@keyframes atmAuroraSpin {
  from { transform: rotate(0deg) scale(1.05); }
  to { transform: rotate(360deg) scale(1.05); }
}

.home-atmosphere__beams {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 38%, rgba(125, 211, 252, 0.06) 46%, transparent 54%),
    linear-gradient(155deg, transparent 52%, rgba(19, 120, 243, 0.07) 58%, transparent 66%);
  mix-blend-mode: screen;
  animation: atmBeamDrift 18s ease-in-out infinite alternate;
  opacity: 0.85;
}

@keyframes atmBeamDrift {
  0% { transform: translateX(-2%) translateY(1%) skewX(-2deg); opacity: 0.55; }
  100% { transform: translateX(3%) translateY(-2%) skewX(2deg); opacity: 0.95; }
}

.home-atmosphere__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  will-change: transform;
}

.home-atmosphere__glow--a {
  width: min(52vw, 560px);
  height: min(52vw, 560px);
  top: 8%;
  right: -8%;
  background: radial-gradient(circle, rgba(76, 147, 228, 0.65) 0%, transparent 70%);
  animation: atmGlowDrift 28s ease-in-out infinite;
}

.home-atmosphere__glow--b {
  width: min(40vw, 420px);
  height: min(40vw, 420px);
  bottom: 12%;
  left: -6%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.42) 0%, transparent 70%);
  animation: atmGlowDrift 34s ease-in-out infinite reverse;
}

.home-atmosphere__glow--c {
  width: min(28vw, 300px);
  height: min(28vw, 300px);
  top: 48%;
  left: 42%;
  background: radial-gradient(circle, rgba(103, 232, 249, 0.28) 0%, transparent 70%);
  animation: atmGlowDrift 22s ease-in-out infinite 4s;
}

.home-atmosphere__glow--d {
  width: min(36vw, 380px);
  height: min(36vw, 380px);
  top: -8%;
  left: 18%;
  background: radial-gradient(circle, rgba(232, 243, 255, 0.18) 0%, transparent 70%);
  animation: atmGlowDrift 26s ease-in-out infinite 2s;
  filter: blur(100px);
}

@keyframes atmGlowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(28px, -22px) scale(1.08); }
  70% { transform: translate(-18px, 16px) scale(0.94); }
}

.home-atmosphere__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 75% at 50% 45%, transparent 35%, rgba(1, 8, 24, 0.55) 100%);
}

.home-atmosphere__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 75% at 65% 45%, black 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 65% 45%, black 0%, transparent 78%);
  animation: atmMeshPulse 12s ease-in-out infinite;
}

@keyframes atmMeshPulse {
  0%, 100% { opacity: 0.32; }
  50% { opacity: 0.52; }
}

.home-atmosphere__rings {
  position: absolute;
  top: 42%;
  right: 18%;
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  transform: translate(50%, -50%);
  opacity: 0.35;
}

.home-atmosphere__rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.22);
  animation: atmRingPulse 10s ease-out infinite;
}

.home-atmosphere__rings span:nth-child(2) {
  inset: 12%;
  animation-delay: -3.2s;
  border-color: rgba(76, 147, 228, 0.2);
}

.home-atmosphere__rings span:nth-child(3) {
  inset: 24%;
  animation-delay: -6.4s;
  border-color: rgba(232, 243, 255, 0.16);
}

@keyframes atmRingPulse {
  0% { transform: scale(0.72); opacity: 0.55; }
  70% { opacity: 0.15; }
  100% { transform: scale(1.28); opacity: 0; }
}

.home-atmosphere__dust {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-atmosphere__dust-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(232, 243, 255, 0.75);
  box-shadow: 0 0 8px rgba(125, 211, 252, 0.55);
  animation: atmDustRise linear infinite;
  opacity: 0;
}

@keyframes atmDustRise {
  0% { transform: translate3d(0, 20px, 0) scale(0.6); opacity: 0; }
  15% { opacity: 0.7; }
  85% { opacity: 0.35; }
  100% { transform: translate3d(12px, -110vh, 0) scale(1); opacity: 0; }
}

.home-atmosphere__art {
  position: absolute;
  top: 50%;
  right: -2%;
  width: min(58vw, 680px);
  height: min(92vh, 920px);
  transform: translate3d(0, -50%, 0);
  opacity: 0.9;
  will-change: transform;
  mask-image: linear-gradient(90deg, transparent 0%, black 14%, black 82%, transparent 100%),
               linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 14%, black 82%, transparent 100%),
                      linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-composite: source-in;
}

.home-atmosphere__art--far {
  right: 8%;
  width: min(48vw, 560px);
  height: min(80vh, 780px);
  opacity: 0.28;
  filter: blur(6px);
  mask-image: linear-gradient(90deg, transparent 0%, black 20%, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 20%, black 75%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.home-atmosphere__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.home-atmosphere__flow {
  stroke-dasharray: 28 220;
  animation: atmFlowMove 7.5s linear infinite;
}

.home-atmosphere__flow--delay {
  stroke-dasharray: 18 260;
  animation-duration: 9.5s;
  animation-delay: -2.5s;
  opacity: 0.7;
}

@keyframes atmFlowMove {
  to { stroke-dashoffset: -500; }
}

.home-atmosphere__node {
  transform-box: fill-box;
  transform-origin: center;
  animation: atmNodePulse 4.8s ease-in-out infinite;
}

.home-atmosphere__node:nth-child(odd) { animation-delay: -1.2s; }
.home-atmosphere__node:nth-child(3n) { animation-delay: -2.4s; animation-duration: 5.6s; }
.home-atmosphere__node:nth-child(4n) { animation-delay: -0.6s; animation-duration: 4.2s; }

@keyframes atmNodePulse {
  0%, 100% { opacity: 0.4; transform: scale(0.92); }
  50% { opacity: 0.95; transform: scale(1.12); }
}

.home-atmosphere__hex {
  animation: atmHexFloat 14s ease-in-out infinite;
  transform-origin: 180px 520px;
}

@keyframes atmHexFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
  50% { transform: translate(8px, -14px) rotate(4deg); opacity: 0.55; }
}

.home-atmosphere__particle {
  animation: atmParticleFloat 9s ease-in-out infinite;
}

.home-atmosphere__particle:nth-child(2) { animation-delay: -1.5s; animation-duration: 11s; }
.home-atmosphere__particle:nth-child(3) { animation-delay: -3s; animation-duration: 8s; }
.home-atmosphere__particle:nth-child(4) { animation-delay: -4.5s; animation-duration: 12s; }
.home-atmosphere__particle:nth-child(5) { animation-delay: -2s; animation-duration: 10s; }
.home-atmosphere__particle:nth-child(6) { animation-delay: -5s; animation-duration: 9.5s; }
.home-atmosphere__particle:nth-child(7) { animation-delay: -6s; animation-duration: 13s; }
.home-atmosphere__particle:nth-child(8) { animation-delay: -2.8s; animation-duration: 8.5s; }
.home-atmosphere__particle:nth-child(9) { animation-delay: -4.2s; animation-duration: 11.5s; }
.home-atmosphere__particle:nth-child(10) { animation-delay: -1.1s; animation-duration: 9.8s; }

@keyframes atmParticleFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  50% { transform: translate(8px, -16px); opacity: 0.85; }
}

.home-canvas__content {
  position: relative;
  z-index: 1;
}

/* Sections stay translucent so fixed molecule shows through every section */
.page-home .home-canvas .hero-bridge,
.page-home .home-canvas .section-about,
.page-home .home-canvas .section-green,
.page-home .home-canvas .section-impact,
.page-home .home-canvas .section-gradient,
.page-home .home-canvas .section-cta {
  background: transparent !important;
}

.page-home .home-canvas .hero-bridge::before,
.page-home .home-canvas .section-about::before,
.page-home .home-canvas .section-green::before,
.page-home .home-canvas .section-impact::before,
.page-home .home-canvas .section-gradient::before,
.page-home .home-canvas .section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-home .home-canvas .hero-bridge::before {
  background:
    radial-gradient(ellipse 75% 55% at 72% 95%, rgba(6, 182, 212, 0.08) 0%, transparent 58%),
    linear-gradient(168deg, rgba(2, 15, 20, 0.22) 0%, rgba(10, 53, 69, 0.12) 100%);
}

.page-home .home-canvas .section-about::before {
  background:
    radial-gradient(ellipse 58% 48% at 82% 12%, rgba(16, 185, 129, 0.08) 0%, transparent 58%),
    linear-gradient(162deg, rgba(4, 21, 16, 0.2) 0%, rgba(10, 61, 40, 0.1) 100%);
}

.page-home .home-canvas .section-green::before {
  background:
    radial-gradient(ellipse 52% 44% at 22% 72%, rgba(103, 232, 249, 0.07) 0%, transparent 58%),
    linear-gradient(172deg, rgba(2, 26, 24, 0.2) 0%, rgba(12, 74, 94, 0.1) 100%);
}

.page-home .home-canvas .section-impact::before {
  background:
    radial-gradient(ellipse 68% 46% at 50% -5%, rgba(76, 147, 228, 0.08) 0%, transparent 58%),
    linear-gradient(168deg, rgba(1, 12, 58, 0.22) 0%, rgba(10, 37, 96, 0.1) 100%);
}

.page-home .home-canvas .section-gradient::before {
  background:
    radial-gradient(ellipse 48% 42% at 78% 48%, rgba(76, 147, 228, 0.06) 0%, transparent 58%),
    linear-gradient(165deg, rgba(1, 7, 40, 0.22) 0%, rgba(10, 26, 62, 0.1) 100%);
}

.page-home .home-canvas .section-cta::before {
  background:
    radial-gradient(ellipse 54% 48% at 18% 88%, rgba(52, 211, 153, 0.08) 0%, transparent 58%),
    linear-gradient(162deg, rgba(4, 21, 16, 0.2) 0%, rgba(10, 74, 46, 0.1) 100%);
}

.page-home .home-canvas .section-cta .cta-gradient {
  background: transparent !important;
}

.page-home .home-canvas .hero-bridge__bg,
.page-home .home-canvas .about-bg,
.page-home .home-canvas .impact-bg,
.page-home .home-canvas .purpose-bg-shapes,
.page-home .home-canvas .cta-bg,
.page-home .home-canvas .hero-bridge__grid-lines,
.page-home .home-canvas .about-bg__mesh,
.page-home .home-canvas .impact-bg__grid {
  opacity: 0.15;
}

.page-home .home-canvas .hero-bridge__orb,
.page-home .home-canvas .about-bg__orb,
.page-home .home-canvas .impact-bg__orb,
.page-home .home-canvas .purpose-circle {
  opacity: 0.08;
}

.page-home .home-canvas .hero-bridge > *:not(.hero-bridge__bg):not(.arica-line),
.page-home .home-canvas .section > *:not(.about-bg):not(.impact-bg):not(.purpose-bg-shapes):not(.cta-bg):not(.arica-line):not(.section-divider) {
  position: relative;
  z-index: 2;
}

.page-home .footer {
  background:
    linear-gradient(180deg, rgba(1, 12, 31, 0.95) 0%, #000000 45%);
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .home-atmosphere__art {
    width: min(92vw, 560px);
    right: -12%;
    opacity: 0.7;
  }

  .home-atmosphere__art--far {
    opacity: 0.18;
    right: 0;
  }

  .home-atmosphere__mesh {
    opacity: 0.28;
  }

  .home-atmosphere__rings {
    opacity: 0.22;
    right: 8%;
  }
}

@media (max-width: 640px) {
  .home-atmosphere__art {
    opacity: 0.55;
    right: -22%;
    width: min(110vw, 480px);
  }

  .home-atmosphere__art--far {
    display: none;
  }

  .home-atmosphere__glow--a,
  .home-atmosphere__glow--b,
  .home-atmosphere__glow--c,
  .home-atmosphere__glow--d {
    filter: blur(70px);
    opacity: 0.38;
  }

  .home-atmosphere__aurora {
    animation-duration: 70s;
    opacity: 0.45;
  }

  .home-atmosphere__dust-dot:nth-child(n+12) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-atmosphere__glow,
  .home-atmosphere__particle,
  .home-atmosphere__aurora,
  .home-atmosphere__beams,
  .home-atmosphere__mesh,
  .home-atmosphere__rings span,
  .home-atmosphere__flow,
  .home-atmosphere__node,
  .home-atmosphere__hex,
  .home-atmosphere__dust-dot {
    animation: none !important;
  }

  .home-atmosphere {
    transition: none;
  }
}

/* ---- Hero Bridge (modern section below banner) ---- */
.hero-bridge {
  position: relative;
  margin-top: -1px;
  padding: 0 0 clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(ellipse 75% 55% at 72% 95%, rgba(6, 182, 212, 0.16) 0%, transparent 58%),
    radial-gradient(ellipse 42% 38% at 8% 25%, rgba(19, 120, 243, 0.1) 0%, transparent 62%),
    linear-gradient(168deg, #020f14 0%, #0a3545 48%, #065a72 100%);
  overflow: hidden;
  z-index: 2;
}

.hero-bridge__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bridge__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: orbFloat 22s ease-in-out infinite;
}

.hero-bridge__orb--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(76, 147, 228, 0.35) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-bridge__orb--2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(227, 103, 108, 0.22) 0%, transparent 70%);
  bottom: 10%;
  left: -8%;
  animation-delay: -4s;
}

.hero-bridge__orb--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(26, 58, 107, 0.5) 0%, transparent 70%);
  top: 40%;
  left: 45%;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-bridge__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 50%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 50%, black 10%, transparent 75%);
}

.hero-bridge__marquee {
  position: relative;
  z-index: 1;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hero-bridge__marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}

.hero-bridge__marquee-track span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.hero-bridge__marquee-track .dot {
  color: var(--teal-light);
  font-size: 0.5rem;
  opacity: 0.6;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-bridge__bento {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1.25rem;
}

.hero-bridge__bento > :nth-child(2) {
  grid-column: 2;
  grid-row: 2;
}

.hero-bridge__bento > :nth-child(3) {
  grid-column: 3;
  grid-row: 2;
}

.bridge-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.45s;
}

.bridge-card.line-fade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.16) 50%,
    transparent 60%
  );
  transform: translateX(-130%);
  pointer-events: none;
  z-index: 4;
}

.bridge-card.line-fade.in-view::after {
  animation: cardShineSweep 1.15s var(--ease-out) 0.2s forwards;
}

@keyframes cardShineSweep {
  to { transform: translateX(130%); }
}

.bridge-card--quote {
  grid-column: 1;
  grid-row: 1 / 4;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  isolation: isolate;
}

.bridge-card--quote::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(76, 147, 228, 0.45) 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(227, 103, 108, 0.35) 70%,
    rgba(76, 147, 228, 0.25) 100%
  );
  background-size: 200% 200%;
  animation: promiseBorderShift 8s ease-in-out infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

@keyframes promiseBorderShift {
  0%, 100% { background-position: 0% 50%; opacity: 0.75; }
  50% { background-position: 100% 50%; opacity: 1; }
}

.bridge-card__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

.bridge-card__mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 95% 85% at 25% 35%, black 8%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 25% 35%, black 8%, transparent 78%);
}

.bridge-card__ring {
  position: absolute;
  top: -18%;
  right: -12%;
  width: min(72%, 300px);
  aspect-ratio: 1;
  border: 1px solid rgba(76, 147, 228, 0.14);
  border-radius: 50%;
  animation: promiseRingPulse 9s ease-in-out infinite;
}

.bridge-card__ring::before,
.bridge-card__ring::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.bridge-card__ring::before {
  inset: 22%;
  border-color: rgba(227, 103, 108, 0.12);
  animation: promiseRingPulse 9s ease-in-out infinite reverse;
}

.bridge-card__ring::after {
  inset: 42%;
  border-color: rgba(76, 147, 228, 0.1);
  animation: promiseRingPulse 7s ease-in-out infinite 0.5s;
}

@keyframes promiseRingPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.55; }
  50% { transform: scale(1.05) rotate(6deg); opacity: 0.95; }
}

.bridge-card__shimmer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 210deg at 50% 50%,
    transparent 0deg,
    rgba(76, 147, 228, 0.07) 55deg,
    transparent 110deg,
    rgba(227, 103, 108, 0.06) 200deg,
    transparent 280deg
  );
  animation: promiseShimmer 14s linear infinite;
  opacity: 0.85;
}

@keyframes promiseShimmer {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.bridge-card--quote:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 40px rgba(76, 147, 228, 0.12);
  border-color: rgba(76, 147, 228, 0.25);
}

.bridge-card__glow {
  position: absolute;
  top: -45%;
  right: -25%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(76, 147, 228, 0.22) 0%, transparent 68%);
  pointer-events: none;
  animation: promiseGlowDrift 10s ease-in-out infinite;
  z-index: 0;
}

.bridge-card__glow::after {
  content: '';
  position: absolute;
  bottom: -120%;
  left: -80%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(227, 103, 108, 0.14) 0%, transparent 70%);
  animation: promiseGlowDrift 12s ease-in-out infinite reverse;
}

@keyframes promiseGlowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-12px, 16px) scale(1.08); }
}

.bridge-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(76, 147, 228, 0.3);
  background: rgba(76, 147, 228, 0.08);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(76, 147, 228, 0.15);
}

.bridge-card__quote {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.95);
  margin: 0;
  position: relative;
  z-index: 1;
}

.bridge-card--quote .line-animate .line-text {
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}

.bridge-card--quote .line-bar {
  background: linear-gradient(90deg, var(--teal-light), var(--green-bright));
}

.bridge-card__accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--teal), var(--green));
  transition: width 1.2s var(--ease);
  z-index: 1;
  box-shadow: 0 0 16px rgba(76, 147, 228, 0.35);
}

.bridge-card--link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--white);
  text-decoration: none;
}

.bridge-card--link:hover {
  transform: translateY(-6px) scale(1.01);
  background: rgba(255,255,255,0.07);
  border-color: rgba(76, 147, 228, 0.35);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.bridge-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 147, 228, 0.12);
  color: var(--teal-light);
  transition: transform 0.4s var(--ease-out), background 0.4s;
}

.bridge-card__icon svg {
  width: 22px;
  height: 22px;
}

.bridge-card__icon--teal {
  background: rgba(227, 103, 108, 0.15);
  color: var(--green-bright);
}

.bridge-card--link:hover .bridge-card__icon {
  transform: rotate(-8deg) scale(1.08);
  background: rgba(19, 120, 243, 0.22);
}

.bridge-card__body {
  flex: 1;
  min-width: 0;
}

.bridge-card__label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.35rem;
}

.bridge-card__body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.bridge-card__body p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
}

.bridge-card__arrow {
  font-size: 1.25rem;
  color: var(--teal-light);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s, transform 0.35s var(--ease-out);
}

.bridge-card--link:hover .bridge-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.bridge-card--stat {
  grid-column: 2 / 4;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 0;
}

.bridge-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1rem;
  background: rgba(10, 22, 40, 0.85);
  text-align: center;
  transition: background 0.4s;
}

.bridge-card--stat:hover .bridge-stat {
  background: rgba(10, 22, 40, 0.95);
}

.bridge-stat__num {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.bridge-stat__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.bridge-card--cta {
  grid-column: 2 / 4;
  grid-row: 3;
  display: block;
  padding: 2rem 2.25rem;
  background: linear-gradient(135deg, rgba(19, 120, 243, 0.35) 0%, rgba(227, 103, 108, 0.2) 100%);
  border: 1px solid rgba(76, 147, 228, 0.25);
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
}

.bridge-card--cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(19, 120, 243, 0.25);
  border-color: rgba(76, 147, 228, 0.5);
}

.bridge-card__cta-inner {
  position: relative;
  z-index: 2;
}

.bridge-card--cta h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.35rem 0 1rem;
}

.bridge-card__cta-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.35s, transform 0.35s;
}

.bridge-card--cta:hover .bridge-card__cta-btn {
  background: rgba(255,255,255,0.25);
  transform: translateX(4px);
}

.bridge-card__cta-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: ctaShine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaShine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

.hero-bridge.in-view .line-fade {
  opacity: 1;
  transform: translateY(0);
}

.hero-bridge.in-view .bridge-card__quote.line-animate .line-text {
  transform: translateY(0);
  opacity: 1;
}

.hero-bridge.in-view .bridge-card__quote.line-animate .line-bar {
  width: 100%;
}

.hero-bridge.in-view .bridge-card--quote .bridge-card__accent-line {
  width: 100%;
}

.hero-bridge .line-fade:nth-child(1) { transition-delay: 0.1s; }
.hero-bridge .line-fade:nth-child(2) { transition-delay: 0.2s; }
.hero-bridge .line-fade:nth-child(3) { transition-delay: 0.3s; }
.hero-bridge .line-fade:nth-child(4) { transition-delay: 0.4s; }
.hero-bridge .line-fade:nth-child(5) { transition-delay: 0.5s; }

@media (max-width: 1024px) {
  .hero-bridge__bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .hero-bridge__bento > :nth-child(2),
  .hero-bridge__bento > :nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }

  .bridge-card--quote {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .bridge-card--stat {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .bridge-card--cta {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .hero-bridge__bento {
    grid-template-columns: 1fr;
  }

  .bridge-card--stat {
    grid-template-columns: 1fr;
  }

  .bridge-stat {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
  }

  .bridge-stat__num {
    margin-bottom: 0;
  }

  .about-visual__frame {
    transform: none;
  }

  .about-visual:hover .about-visual__frame {
    transform: none;
  }
}

/* ---- Sections Common ---- */
.section {
  padding: clamp(5.5rem, 11vw, 9rem) 0;
  position: relative;
}

.section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  opacity: 0.65;
}

.section-desc {
  font-size: clamp(1rem, 1.2vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.01em;
  max-width: 540px;
  opacity: 0.82;
}

/* ---- Section Dividers ---- */
.section-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  overflow: hidden;
}

.section-divider::after {
  content: '';
  display: block;
  height: 100%;
  width: 0;
  background: rgba(255, 255, 255, 0.25);
  transition: width 1.4s var(--ease);
}

.section-divider.visible::after { width: 100%; }

.section-divider--dark::after {
  background: rgba(0, 0, 0, 0.12);
}

/* ---- Line Text Reveal (Arica-style) ---- */
.line-animate .line-wrap {
  display: block;
  overflow: hidden;
  position: relative;
  padding-bottom: 0.15em;
}

.line-animate .line-text {
  display: block;
  transform: translateY(108%) scale(0.985);
  opacity: 0;
  transition: transform 0.95s var(--ease-out), opacity 0.5s ease;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.line-animate .line-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 14px rgba(76, 147, 228, 0.35);
  transition: width 0.85s var(--ease);
}

.line-bar--teal { background: var(--teal); }

.line-animate.in-view .line-wrap:nth-child(1) .line-text { transition-delay: 0.05s; }
.line-animate.in-view .line-wrap:nth-child(2) .line-text { transition-delay: 0.2s; }
.line-animate.in-view .line-wrap:nth-child(3) .line-text { transition-delay: 0.35s; }
.line-animate.in-view .line-wrap:nth-child(4) .line-text { transition-delay: 0.5s; }

.line-animate.in-view .line-wrap:nth-child(1) .line-bar { transition-delay: 0s; }
.line-animate.in-view .line-wrap:nth-child(2) .line-bar { transition-delay: 0.15s; }
.line-animate.in-view .line-wrap:nth-child(3) .line-bar { transition-delay: 0.3s; }
.line-animate.in-view .line-wrap:nth-child(4) .line-bar { transition-delay: 0.45s; }

.line-animate.in-view .line-text {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.line-animate.in-view .line-bar {
  width: 100%;
}

/* Quote text line animation (legacy) */
/* Bridge quote uses standard line-animate */
.bridge-card__quote.line-animate .line-wrap {
  display: block;
  overflow: hidden;
}

.bridge-card__quote.line-animate .line-text {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  clip-path: none;
}

/* ---- Line Fade (staggered content) ---- */
.line-fade {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out), filter 0.85s var(--ease-out);
}

.line-fade.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ---- About Section (modern split layout) ---- */
.section-about {
  background:
    radial-gradient(ellipse 58% 48% at 82% 12%, rgba(16, 185, 129, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 46% 42% at 6% 78%, rgba(19, 120, 243, 0.09) 0%, transparent 55%),
    linear-gradient(162deg, #041510 0%, #0a3d28 52%, #067a52 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.18;
  animation: orbFloat 24s ease-in-out infinite;
}

.about-bg__orb--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(19, 120, 243, 0.18) 0%, transparent 70%);
}

.about-bg__orb--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(26, 58, 107, 0.35) 0%, transparent 70%);
  animation-delay: -6s;
}

.about-bg__mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 75% 55% at 65% 45%, black 5%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 75% 55% at 65% 45%, black 5%, transparent 72%);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-content .section-label {
  color: var(--teal-light);
  opacity: 1;
}

.about-heading {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}

.about-heading__accent {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--green-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-lead {
  font-size: clamp(1rem, 1.15vw, 1.0625rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 1.75rem;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.about-pill {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.75);
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--ease-out), color 0.35s;
  cursor: default;
}

.about-pill:hover {
  background: rgba(76, 147, 228, 0.12);
  border-color: rgba(76, 147, 228, 0.4);
  color: var(--white);
  transform: translateY(-2px);
}

.about-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.about-meta__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-meta__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 147, 228, 0.1);
  color: var(--teal-light);
  border: 1px solid rgba(76, 147, 228, 0.2);
}

.about-meta__icon svg {
  width: 18px;
  height: 18px;
}

.about-meta__item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.about-meta__item span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.8rem 1.75rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(19, 120, 243, 0.35);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.btn-about svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s var(--ease-out);
}

.btn-about:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(19, 120, 243, 0.5);
}

.btn-about:hover svg {
  transform: translateX(4px);
}

/* About visual */
.about-visual {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.about-visual__frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: clamp(380px, 42vw, 520px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(76, 147, 228, 0.08) inset;
  transform: rotate(1.5deg);
  transition: transform 0.6s var(--ease-out);
}

.about-visual.in-view .about-visual__frame {
  animation: aboutFrameIn 1s var(--ease-out) forwards;
}

@keyframes aboutFrameIn {
  from { opacity: 0; transform: rotate(3deg) translateY(30px) scale(0.96); }
  to { opacity: 1; transform: rotate(1.5deg) translateY(0) scale(1); }
}

.about-visual:hover .about-visual__frame {
  transform: rotate(0deg) scale(1.01);
}

.about-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about-visual:hover .about-visual__frame img {
  transform: scale(1.06);
}

.about-visual__frame--video {
  --video-h: clamp(360px, 78vw, 460px);
  width: calc(var(--video-h) * 9 / 16);
  height: var(--video-h);
  max-width: min(300px, 88vw);
  margin: 0 auto;
  transform: none !important;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.about-visual.in-view .about-visual__frame--video {
  animation: aboutVideoFrameIn 1s var(--ease-out) forwards;
}

@keyframes aboutVideoFrameIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97) !important; }
  to { opacity: 1; transform: none !important; }
}

.about-visual:hover .about-visual__frame--video,
.about-visual__frame--video:hover {
  transform: translateY(-4px) !important;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.about-visual__video {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0a1628;
  cursor: pointer;
}

.about-visual__video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.about-visual__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease);
}

.about-visual__frame--video:hover .about-visual__poster {
  transform: scale(1.03);
}

.about-visual__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0891b2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  z-index: 2;
}

.about-visual__play svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.about-visual__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.about-visual__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-visual__frame.is-playing {
  cursor: default;
}

.about-visual__frame.is-playing .about-visual__video::after {
  display: none;
}


.section-about .line-animate .line-text { color: var(--white); }
.section-about .line-bar { background: rgba(255,255,255,0.5); }

.section-about .about-content .line-fade:nth-child(1) { transition-delay: 0.05s; }
.section-about .about-content .line-fade:nth-child(2) { transition-delay: 0.15s; }
.section-about .about-content .line-fade:nth-child(3) { transition-delay: 0.25s; }
.section-about .about-content .line-fade:nth-child(4) { transition-delay: 0.35s; }
.section-about .about-content .line-fade:nth-child(5) { transition-delay: 0.45s; }
.section-about .about-content .line-fade:nth-child(6) { transition-delay: 0.55s; }

@media (min-width: 1025px) {
  .about-visual {
    min-height: 720px;
  }

  .about-visual__frame--video {
    --video-h: clamp(560px, 68vh, 720px);
    max-width: none;
    width: calc(var(--video-h) * 9 / 16);
  }

  .about-visual__play {
    width: 68px;
    height: 68px;
  }

  .about-visual__play svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    min-height: auto;
    max-width: 340px;
    margin: 0 auto;
  }
}

/* ---- Green Purpose Section ---- */
.section-green {
  position: relative;
  background:
    radial-gradient(ellipse 52% 44% at 22% 72%, rgba(103, 232, 249, 0.11) 0%, transparent 58%),
    radial-gradient(ellipse 38% 34% at 92% 18%, rgba(52, 211, 153, 0.09) 0%, transparent 52%),
    linear-gradient(172deg, #021a18 0%, #0c4a5e 58%, #087896 100%);
  color: var(--white);
  overflow: hidden;
}

.section-gradient .line-bar { background: rgba(255,255,255,0.5); }

.section-cta .line-animate .line-text { color: var(--white); }
.section-cta .line-bar { background: rgba(255,255,255,0.6); }

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10060;
  pointer-events: none;
  background: rgba(1, 7, 40, 0.06);
  transition: top 0.3s var(--ease);
}

.scroll-progress__bar {
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-blue-light) 55%, var(--brand-red) 100%);
  box-shadow: 0 0 14px rgba(19, 120, 243, 0.45);
  border-radius: 0 2px 2px 0;
}

/* ---- Scroll Spine (Arica-style continuous line) ---- */


/* ---- Arica-style per-section scroll lines ---- */
.arica-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
  mask-image: radial-gradient(ellipse 88% 78% at 32% 50%, black 12%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse 88% 78% at 32% 50%, black 12%, transparent 82%);
}

.arica-line svg {
  position: absolute;
  left: clamp(0.75rem, 2.5vw, 2.5rem);
  top: 50%;
  transform: translateY(-50%);
  width: min(28%, 240px);
  height: auto;
  max-height: 68%;
  overflow: visible;
  opacity: 0.9;
}

.arica-line__path {
  stroke-width: 1.15;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 10px rgba(76, 147, 228, 0.1));
}

.arica-line__path--thin {
  stroke-width: 0.85;
  opacity: 0.55;
}

.arica-line--dark .arica-line__path,
.arica-line--white .arica-line__path {
  stroke: rgba(255, 255, 255, 0.26);
}

.arica-line--green .arica-line__path {
  stroke: rgba(255, 255, 255, 0.24);
}

.arica-line--light .arica-line__path {
  stroke: rgba(19, 120, 243, 0.2);
}

.arica-line__dot {
  fill: var(--brand-blue-light);
  filter: drop-shadow(0 0 4px rgba(76, 147, 228, 0.45));
}

.arica-line__dot-glow {
  fill: rgba(76, 147, 228, 0.18);
}

.arica-line--light .arica-line__dot {
  fill: var(--teal);
  filter: drop-shadow(0 0 4px rgba(19, 120, 243, 0.35));
}

.arica-line--light .arica-line__dot-glow {
  fill: rgba(19, 120, 243, 0.14);
}

.purpose-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.purpose-circle {
  display: none;
}

.purpose-circle-1 {
  display: none;
}

.purpose-circle-2 {
  display: none;
}

.purpose-circle-3 {
  display: none;
}

.purpose-heading .line-bar {
  display: none;
}

.purpose-heading {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  max-width: 720px;
}

.purpose-desc {
  font-size: clamp(1rem, 1.2vw, 1.0625rem);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 3rem;
  opacity: 0.78;
  font-weight: 400;
}

.purpose-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.purpose-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.purpose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.purpose-card-featured {
  background: rgba(255,255,255,0.15);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
}

.purpose-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--brand-blue-light);
}

.purpose-card-badge {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.purpose-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.purpose-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.75;
}

/* ---- Overview / Stats ---- */
.section-impact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 68% 46% at 50% -5%, rgba(76, 147, 228, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 38% 36% at 96% 82%, rgba(227, 103, 108, 0.07) 0%, transparent 52%),
    linear-gradient(168deg, #010c3a 0%, #0a2560 58%, #0456c8 100%);
  color: var(--white);
}

.impact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.impact-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.16;
  animation: orbFloat 26s ease-in-out infinite;
}

.impact-bg__orb--1 {
  width: 480px;
  height: 480px;
  top: -20%;
  right: -8%;
  background: radial-gradient(circle, rgba(19, 120, 243, 0.12) 0%, transparent 70%);
}

.impact-bg__orb--2 {
  width: 360px;
  height: 360px;
  bottom: -15%;
  left: -6%;
  background: radial-gradient(circle, rgba(227, 103, 108, 0.1) 0%, transparent 70%);
  animation-delay: -5s;
}

.impact-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 65% at 50% 38%, black 8%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 38%, black 8%, transparent 74%);
}

.impact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.impact-intro {
  max-width: 480px;
}

.impact-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}

.impact-title__accent {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.impact-desc {
  font-size: clamp(1rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.75rem;
}

.impact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.impact-tags li {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  color: rgba(255,255,255,0.85);
  background: rgba(76, 147, 228, 0.15);
  border: 1px solid rgba(76, 147, 228, 0.25);
}

.impact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.impact-stat__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(19, 120, 243, 0.1);
  color: var(--brand-blue);
}

.impact-stat__icon svg {
  width: 20px;
  height: 20px;
}

.impact-stat__icon--blue {
  background: rgba(76, 147, 228, 0.2);
  color: var(--brand-blue-light);
}

.impact-stat__icon--red {
  background: rgba(227, 103, 108, 0.12);
  color: var(--brand-red);
}

.impact-stat__note {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  max-width: 220px;
}

.impact-stat__sub {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.impact-stat__ring {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(76, 147, 228, 0.25);
  animation: impactRingSpin 12s linear infinite;
}

.impact-stat__ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

@keyframes impactRingSpin {
  to { transform: rotate(360deg); }
}

.stat-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.stat-number {
  font-size: clamp(2.75rem, 4vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number::after { content: none; }

.stat-number.has-plus::after {
  content: '+';
  font-size: 0.6em;
  vertical-align: super;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-800);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.stat-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--teal), var(--green));
  transition: width 1.5s var(--ease);
}

.stat-card.visible .stat-bar { width: 100%; }

.stat-card.impact-stat {
  text-align: left;
  padding: 1.75rem 1.5rem;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(10, 45, 110, 0.7) 0%, rgba(14, 165, 233, 0.25) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(76, 147, 228, 0.18);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.stat-card.impact-stat--featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.25rem 1.75rem;
  background: linear-gradient(145deg, var(--brand-navy) 0%, #0a2560 55%, #0d3a8a 100%);
  border-color: rgba(76, 147, 228, 0.2);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(1, 7, 40, 0.18);
}

.stat-card.impact-stat .stat-label {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.stat-card.impact-stat--featured .stat-number {
  font-size: clamp(3rem, 5vw, 4rem);
  color: var(--white);
}

.stat-card.impact-stat--featured .stat-label {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.stat-card.impact-stat--featured .impact-stat__note {
  color: rgba(255, 255, 255, 0.62);
}

.stat-card.impact-stat--featured .impact-stat__icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--brand-blue-light);
}

.stat-card.impact-stat--featured .stat-bar {
  background: linear-gradient(90deg, var(--brand-blue-light), var(--brand-red));
}

.stat-card.impact-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(19, 120, 243, 0.12);
}

.stat-card.impact-stat--featured:hover {
  box-shadow: 0 24px 56px rgba(1, 7, 40, 0.28);
}

.section-impact .line-animate .line-text { color: var(--white); }

/* ---- Business ---- */
.section-gradient {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 48% 42% at 78% 48%, rgba(76, 147, 228, 0.1) 0%, transparent 58%),
    radial-gradient(ellipse 36% 32% at 12% 85%, rgba(227, 103, 108, 0.06) 0%, transparent 50%),
    linear-gradient(165deg, #010728 0%, #0a1a3e 58%, #0f2560 100%);
  color: var(--white);
}

.business-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.business-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}

.section-gradient .section-desc {
  margin-bottom: 2rem;
  opacity: 0.85;
}

.business-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.biz-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.75rem;
  transition: background 0.4s, transform 0.4s var(--ease);
}

.biz-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.biz-card-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-bright);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.biz-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.biz-card p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.5;
}

/* ---- CTA ---- */
.section-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 54% 48% at 18% 88%, rgba(52, 211, 153, 0.15) 0%, transparent 58%),
    radial-gradient(ellipse 40% 36% at 84% 14%, rgba(19, 120, 243, 0.07) 0%, transparent 52%),
    linear-gradient(162deg, #041510 0%, #0a4a2e 52%, #059669 100%);
}

.section-cta .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.25rem;
}

.contact-item a {
  font-size: 1.1rem;
  font-weight: 500;
  transition: opacity 0.3s;
}

.contact-item a:hover { opacity: 0.8; }

.contact-item span:last-child {
  font-size: 1.1rem;
  font-weight: 500;
}

/* ---- Footer ---- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-about {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--white); }

.footer-contact li {
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo__img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 6px;
  background: var(--white);
  padding: 6px 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--white); }

/* ---- Scroll to Top ---- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease), background 0.3s;
  box-shadow: 0 4px 20px rgba(19, 120, 243, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover { background: var(--teal-dark); }
.scroll-top svg { width: 20px; height: 20px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {

  .arica-line svg {
    width: min(38%, 240px);
    left: 0.75rem;
  }

  .purpose-cards { grid-template-columns: 1fr; }
  .impact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .impact-intro { max-width: none; }
  .business-layout { grid-template-columns: 1fr; }
  .section-cta .container { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {

  .arica-line svg {
    width: min(34%, 165px);
    max-height: 62%;
    left: 0.35rem;
  }

  .arica-line__path {
    stroke-width: 1.35;
  }

  /* ---- Mobile header ---- */
  .header,
  .header.header--hero:not(.scrolled) {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(1, 7, 40, 0.06);
  }

  .header.header--hero:not(.scrolled) .nav-menu-btn,
  .header.scrolled .nav-menu-btn {
    border-color: rgba(0, 0, 0, 0.12);
    background: var(--white);
    color: var(--gray-800);
  }

  .header.header--hero:not(.scrolled) .nav-menu-btn__bars span,
  .header.scrolled .nav-menu-btn__bars span {
    background: var(--gray-800);
  }

  body.nav-open .nav-menu-btn {
    visibility: hidden;
    pointer-events: none;
  }

  /* Drawer lives inside header (z-index 10050); backdrop is 10080 — raise header when open */
  body.nav-open .header {
    z-index: 10100;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(1, 7, 40, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
    z-index: 10040;
  }

  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .nav-logo {
    flex: 0 1 auto;
    min-width: 0;
    z-index: 10070;
  }

  .logo-img {
    height: clamp(34px, 9vw, 42px);
  }

  .nav-actions {
    flex: 0 0 auto;
    z-index: 10070;
  }

  .nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(82vw, 340px);
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #010728 0%, #0a2560 52%, #0d3a8a 100%);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.38s var(--ease), visibility 0.38s;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.35);
    z-index: 10110;
    overflow: hidden;
    padding: calc(var(--topbar-h) + 1.25rem) 0 1.5rem;
  }

  .nav-drawer.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 0 1.75rem 1.25rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    opacity: 0.92;
    transition: opacity 0.2s, transform 0.2s;
  }

  .nav-drawer__close svg {
    width: 28px;
    height: 28px;
  }

  .nav-drawer__close:hover,
  .nav-drawer__close:focus-visible {
    opacity: 1;
    transform: scale(1.05);
  }

  .nav-links {
    position: static;
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    list-style: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open {
    transform: none;
  }

  .nav-links li {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    color: var(--white) !important;
    font-size: 0.8125rem !important;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase !important;
    line-height: 1.35;
    padding: 0.9rem 1.5rem;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: background 0.2s, padding-left 0.2s;
  }

  .nav-links a::after {
    display: none !important;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    transform: none;
    padding-left: 1.75rem;
  }

  .nav-links a.active {
    background: rgba(76, 147, 228, 0.18);
    box-shadow: inset 3px 0 0 var(--brand-blue-light);
  }

  .nav-item--dropdown {
    width: 100%;
  }

  .nav-item__trigger {
    display: flex;
    align-items: stretch;
    width: 100%;
  }

  .nav-item__trigger > a {
    flex: 1;
    padding-right: 0.5rem;
  }

  .nav-submenu-toggle {
    width: 3.25rem;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    align-self: stretch;
  }

  .nav-submenu-toggle svg {
    width: 1.1rem;
    height: 1.1rem;
  }

  .nav-item--dropdown.is-open .nav-submenu-toggle {
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-submenu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .nav-submenu {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease), visibility 0.3s;
  }

  .nav-item--dropdown.is-open > .nav-submenu {
    max-height: 20rem;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    padding: 0.15rem 0 0.5rem;
    opacity: 1;
  }

  /* Disable desktop hover open inside drawer — click/tap only */
  .nav-item--dropdown:hover > .nav-submenu,
  .nav-item--dropdown:focus-within > .nav-submenu {
    transform: none;
    opacity: 1;
  }

  .nav-item--dropdown:not(.is-open):hover > .nav-submenu,
  .nav-item--dropdown:not(.is-open):focus-within > .nav-submenu {
    max-height: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 0;
  }

  .nav-submenu a {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 0.75rem !important;
    font-weight: 600;
    text-transform: none !important;
    letter-spacing: 0.04em;
    padding: 0.7rem 1.5rem 0.7rem 2.35rem;
    border-radius: 0;
  }

  .nav-submenu a:hover,
  .nav-submenu a.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
    padding-left: 2.55rem;
  }

  .nav-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: var(--white);
    color: var(--gray-800);
    box-shadow: none;
  }

  .nav-menu-btn__bars {
    width: 20px;
    gap: 5px;
  }

  .nav-menu-btn__bars span {
    background: var(--brand-navy);
  }

  .nav-menu-btn.active {
    background: var(--white);
    border-color: rgba(0, 0, 0, 0.12);
  }

  .nav-menu-btn.active .nav-menu-btn__bars span {
    background: var(--brand-navy);
  }

  .business-cards { grid-template-columns: 1fr; }
  .stat-card { padding: 1.5rem 1rem; }
  .impact-stats { gap: 1rem; }
  .impact-stat { padding: 1.5rem 1.25rem; }
  .impact-stat--featured { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {

  .arica-line svg {
    width: min(32%, 130px);
    max-height: 55%;
  }

  .impact-stats { grid-template-columns: 1fr; }
  .impact-stat--featured { grid-row: auto; }
  .impact-stat__ring { width: 56px; height: 56px; }
}

/* ========== Hero banner — responsive (desktop / tablet / mobile) ========== */

/* Tablet & small laptop */
@media (max-width: 1024px) {
  .hero__content {
    bottom: 10%;
    left: 4%;
    right: 4%;
  }

  .hero__main {
    max-width: 46%;
    gap: 0.75rem;
  }

  .hero__subheading {
    max-width: 100%;
  }

  .hero__slide--story .hero__image {
    right: 4%;
    bottom: 0;
    height: auto;
    max-height: 86%;
  }

  .hero__slide--story:first-child .hero__image {
    right: 6%;
  }

  .hero__slide--story:nth-child(2) .hero__image {
    right: 0;
    object-position: 100% bottom;
  }

  .hero__slide--cardio .hero__image {
    right: 3%;
    max-height: 82%;
  }

  .hero__bg-petals {
    width: min(40vw, 460px);
    height: min(40vw, 460px);
    top: 10%;
    left: auto;
    right: 6%;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .hero__content {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    top: calc(var(--topbar-h) + var(--header-h));
    bottom: 48%;
    left: 1.25rem;
    right: 1.25rem;
    gap: 0.875rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .hero__main {
    max-width: 70%;
    gap: 0.75rem;
  }

  .hero__heading {
    font-size: clamp(1.75rem, 5.5vw, 2.75rem);
  }

  .hero__slide--story .hero__heading-line:not(:last-child) {
    font-size: clamp(0.875rem, 3.2vw, 1.05rem);
  }

  .hero__slide--story .hero__heading-line:last-child {
    font-size: clamp(1.75rem, 5.5vw, 2.75rem);
  }

  .hero__slide--hepatic .hero__heading-line:last-child {
    font-size: clamp(1.25rem, 4.2vw, 2rem);
    white-space: nowrap;
  }

  .hero__subheading {
    max-width: 100%;
    font-size: clamp(0.8125rem, 3.2vw, 0.9375rem);
  }

  .hero__cta {
    padding: 0.625rem 1.375rem;
    border-radius: 999px;
  }

  .hero__slide--story .hero__image {
    width: 50%;
    height: auto;
    max-height: 52%;
    right: 0;
    left: auto;
    bottom: 0;
    opacity: 1;
    object-position: right bottom;
  }

  .hero__slide--story:first-child .hero__image {
    width: 48%;
    right: 0;
  }

  .hero__slide--story:nth-child(2) .hero__image {
    width: 52%;
    right: 0;
    left: auto;
    transform: none;
    max-height: 50%;
    object-position: 100% bottom;
  }

  .hero__slide--cardio .hero__image {
    width: 44%;
    max-height: 50%;
    bottom: 0;
  }

  .hero__arrow {
    top: auto;
    bottom: 34%;
    transform: none;
    width: 36px;
    height: 36px;
  }

  .hero__arrow:disabled {
    transform: none;
  }

  .hero__arrow--prev { left: 0.5rem; }
  .hero__arrow--next { right: 0.5rem; }
  .hero__controls { bottom: 1.25rem; }

  .hero__slide[data-index="0"] .hero__image {
    width: 58%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 0;
    max-height: 52%;
    object-position: center bottom;
  }

  .hero__bg-petals {
    width: clamp(260px, 68vw, 460px);
    height: clamp(260px, 68vw, 460px);
    top: 40%;
    bottom: auto;
    left: auto;
    right: 2%;
    transform: translateY(-50%);
    opacity: 0.55;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero__content {
    top: calc(var(--topbar-h) + var(--header-h));
    bottom: 46%;
  }

  .hero__main {
    max-width: 76%;
  }

  .hero__slide--story .hero__image {
    width: min(62%, 280px);
    max-height: 50%;
  }

  .hero__slide--story:first-child .hero__image {
    width: min(58%, 260px);
  }

  .hero__slide--story:nth-child(2) .hero__image {
    width: min(55%, 240px);
    right: 0;
    left: auto;
    transform: none;
    max-height: 48%;
    object-position: 100% bottom;
  }

  .hero__slide--cardio .hero__image {
    width: min(56%, 250px);
    max-height: 48%;
  }

  .hero__arrow {
    bottom: 30%;
  }
}

/* Small mobile */
@media (max-width: 425px) {
  .hero {
    height: 100svh;
    min-height: 560px;
  }

  .hero__content {
    top: calc(var(--topbar-h) + var(--header-h));
    bottom: 44%;
    left: 1rem;
    right: 1rem;
    gap: 0.625rem;
  }

  .hero__main {
    max-width: 86%;
    gap: 0.625rem;
  }

  .hero__heading {
    font-size: clamp(1.45rem, 7.5vw, 1.875rem);
    line-height: 1.15;
  }

  .hero__slide--story .hero__heading-line:last-child {
    font-size: clamp(1.45rem, 7.5vw, 1.875rem);
  }

  .hero__subheading {
    font-size: clamp(0.8125rem, 3.6vw, 0.875rem);
    line-height: 1.45;
  }

  .hero__slide--story .hero__image {
    width: min(72%, 300px);
    max-height: 46%;
    opacity: 1;
  }

  .hero__slide--story:first-child .hero__image {
    width: min(68%, 280px);
  }

  .hero__slide--story:nth-child(2) .hero__image {
    width: min(62%, 260px);
    right: 0;
    left: auto;
    transform: none;
    max-height: 44%;
    object-position: 100% bottom;
  }

  .hero__slide--cardio .hero__image {
    width: min(64%, 260px);
    max-height: 44%;
  }

  .hero__bg-petals {
    width: clamp(240px, 72vw, 380px);
    height: clamp(240px, 72vw, 380px);
    top: 40%;
    bottom: auto;
    left: auto;
    right: 2%;
    transform: translateY(-50%);
    opacity: 0.6;
  }

  .hero__cta {
    padding: 0.5rem 1.125rem;
    border-radius: 999px;
  }

  .hero__arrow {
    width: 34px;
    height: 34px;
    bottom: 28%;
  }

  .hero__controls {
    bottom: 0.75rem;
  }

  .hero__slide[data-index="0"] .hero__image {
    width: min(82%, 336px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 0;
    object-position: center bottom;
    max-height: 46%;
  }
}

/* ---- Mobile / tablet: keep section ambient effects visible ---- */
@media (max-width: 1024px) {

  .arica-line svg {
    width: min(42%, 220px);
    left: 0.65rem;
  }
}

@media (max-width: 768px) {


  .arica-line {
    mask-image: radial-gradient(ellipse 92% 82% at 30% 50%, black 16%, transparent 86%);
    -webkit-mask-image: radial-gradient(ellipse 92% 82% at 30% 50%, black 16%, transparent 86%);
  }

  .arica-line svg {
    width: min(46%, 210px);
    max-height: 70%;
    left: 0.5rem;
    opacity: 1;
  }

  .arica-line__path {
    stroke-width: 1.7;
  }

  .arica-line--dark .arica-line__path,
  .arica-line--white .arica-line__path {
    stroke: rgba(255, 255, 255, 0.36);
  }

  .arica-line--green .arica-line__path {
    stroke: rgba(255, 255, 255, 0.34);
  }

  .arica-line--light .arica-line__path {
    stroke: rgba(19, 120, 243, 0.3);
  }

  .hero-bridge {
    background:
      radial-gradient(ellipse 80% 60% at 70% 95%, rgba(6, 182, 212, 0.22) 0%, transparent 58%),
      radial-gradient(ellipse 50% 42% at 10% 22%, rgba(19, 120, 243, 0.14) 0%, transparent 62%),
      linear-gradient(168deg, #020f14 0%, #0a3545 48%, #065a72 100%);
  }

  .hero-bridge__orb {
    filter: blur(72px);
    opacity: 0.3;
    transform: translateZ(0);
  }

  .hero-bridge__orb--1 {
    width: 300px;
    height: 300px;
    top: 0;
    right: -12%;
  }

  .hero-bridge__orb--2 {
    width: 260px;
    height: 260px;
    bottom: 12%;
    left: -18%;
  }

  .hero-bridge__orb--3 {
    width: 170px;
    height: 170px;
    top: 42%;
    left: 42%;
  }

  .hero-bridge__grid-lines {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
    background-size: 56px 56px;
  }

  .section-about {
    background:
      radial-gradient(ellipse 70% 55% at 75% 15%, rgba(16, 185, 129, 0.2) 0%, transparent 58%),
      radial-gradient(ellipse 55% 48% at 8% 80%, rgba(19, 120, 243, 0.14) 0%, transparent 55%),
      linear-gradient(162deg, #041510 0%, #0a3d28 52%, #067a52 100%);
  }

  .about-bg__orb {
    filter: blur(75px);
    opacity: 0.3;
    transform: translateZ(0);
  }

  .about-bg__orb--1 {
    width: 340px;
    height: 340px;
    top: -5%;
    left: -22%;
  }

  .about-bg__orb--2 {
    width: 300px;
    height: 300px;
    bottom: 8%;
    right: -18%;
  }

  .about-bg__mesh {
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  }

  .section-green {
    background:
      radial-gradient(ellipse 58% 48% at 22% 72%, rgba(103, 232, 249, 0.16) 0%, transparent 58%),
      radial-gradient(ellipse 42% 38% at 92% 18%, rgba(52, 211, 153, 0.12) 0%, transparent 52%),
      linear-gradient(172deg, #021a18 0%, #0c4a5e 58%, #087896 100%);
  }

  .section-impact {
    background:
      radial-gradient(ellipse 75% 50% at 50% -5%, rgba(76, 147, 228, 0.2) 0%, transparent 58%),
      radial-gradient(ellipse 45% 40% at 96% 82%, rgba(227, 103, 108, 0.1) 0%, transparent 52%),
      linear-gradient(168deg, #010c3a 0%, #0a2560 58%, #0456c8 100%);
  }

  .impact-bg__orb {
    filter: blur(75px);
    opacity: 0.28;
    transform: translateZ(0);
  }

  .impact-bg__orb--1 {
    width: 320px;
    height: 320px;
    top: -8%;
    right: -12%;
  }

  .impact-bg__orb--2 {
    width: 280px;
    height: 280px;
    bottom: 0;
    left: -12%;
  }

  .impact-bg__grid {
    background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  }

  .section-gradient {
    background:
      radial-gradient(ellipse 55% 46% at 78% 48%, rgba(76, 147, 228, 0.14) 0%, transparent 58%),
      radial-gradient(ellipse 42% 36% at 12% 85%, rgba(227, 103, 108, 0.09) 0%, transparent 50%),
      linear-gradient(165deg, #010728 0%, #0a1a3e 58%, #0f2560 100%);
  }

  .cta-gradient {
    background:
      radial-gradient(ellipse 60% 52% at 18% 88%, rgba(52, 211, 153, 0.2) 0%, transparent 58%),
      radial-gradient(ellipse 46% 40% at 84% 14%, rgba(19, 120, 243, 0.1) 0%, transparent 52%),
      linear-gradient(162deg, #041510 0%, #0a4a2e 52%, #059669 100%);
  }

  .bridge-card__ring {
    width: min(88%, 260px);
  }

  .bridge-card__shimmer {
    opacity: 0.95;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 480px) {


  .arica-line svg {
    width: min(44%, 185px);
    max-height: 68%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .scroll-progress__bar {
    transition: none;
  }

  .hero__bg,
  .hero__swiper {
    will-change: auto;
    transform: none !important;
  }

  #hero {
    opacity: 1 !important;
  }  .bridge-card.line-fade::after {
    display: none;
  }

  .bridge-card--quote::before,
  .bridge-card__ring,
  .bridge-card__ring::before,
  .bridge-card__ring::after,
  .bridge-card__shimmer,
  .bridge-card__glow,
  .bridge-card__glow::after {
    animation: none;
  }

  .line-animate .line-text,
  .line-fade {
    transform: none;
    filter: none;
    opacity: 1;
    transition: none;
  }

  .line-animate .line-bar {
    width: 100%;
    transition: none;
  }
}

/* === Mobile hero height — fixed px (no jump with browser chrome) === */
@media (max-width: 768px) {
  .hero { height: 590px !important; min-height: 590px !important; max-height: 590px !important; }
}
@media (max-width: 425px) {
  .hero { height: 550px !important; min-height: 550px !important; max-height: 550px !important; }
}
@media (max-width: 375px) {
  .hero { height: 510px !important; min-height: 510px !important; max-height: 510px !important; }
}

/* === Force center + fluid size for ALL hero images on mobile === */
@media (max-width: 768px) {
  .hero__slide .hero__image {
    width: clamp(240px, 76vw, 580px) !important;
    max-height: 54% !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    bottom: 0 !important;
    height: auto !important;
    object-position: center bottom !important;
  }
}
